mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
* Wickerbough Elder - Fixed missing tooltip text of enter battlefield effect.
This commit is contained in:
parent
af014c0cf7
commit
f6eb0b79e5
1 changed files with 1 additions and 1 deletions
|
@ -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)));
|
||||||
|
|
Loading…
Reference in a new issue