this.color.setGreen(true);
this.power = new MageInt(3);
this.toughness = new MageInt(3);
// Kicker {2}{G}
this.addAbility(new KickerAbility("{2}{G}"));
// If Pouncing Wurm was kicked, it enters the battlefield with three +1/+1 counters on it and with haste.
Ability ability = new ConditionalTriggeredAbility(
new EntersBattlefieldTriggeredAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance(3))),
KickedCondition.getInstance(),"If Pouncing Wurm was kicked, it enters the battlefield with three +1/+1 counters on it and with haste.");
ability.addEffect(new GainAbilitySourceEffect(HasteAbility.getInstance(), Duration.WhileOnBattlefield));