* Wickerbough Elder - Fixed missing tooltip text of enter battlefield effect.

This commit is contained in:
LevelX2 2014-12-31 15:58:49 +01:00
parent af014c0cf7
commit f6eb0b79e5

View file

@ -70,7 +70,7 @@ public class WickerboughElder extends CardImpl {
this.toughness = new MageInt(4); this.toughness = new MageInt(4);
// Wickerbough Elder enters the battlefield with a -1/-1 counter on it. // Wickerbough Elder enters the battlefield with a -1/-1 counter on it.
this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.M1M1.createInstance(1)), false)); this.addAbility(new EntersBattlefieldAbility(new AddCountersSourceEffect(CounterType.M1M1.createInstance(1))));
// {G}, Remove a -1/-1 counter from Wickerbough Elder: Destroy target artifact or enchantment. // {G}, Remove a -1/-1 counter from Wickerbough Elder: Destroy target artifact or enchantment.
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DestroyTargetEffect(), new ColoredManaCost(ColoredManaSymbol.G)); Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DestroyTargetEffect(), new ColoredManaCost(ColoredManaSymbol.G));
ability.addCost(new RemoveCountersSourceCost(CounterType.M1M1.createInstance(1))); ability.addCost(new RemoveCountersSourceCost(CounterType.M1M1.createInstance(1)));