* Wall of Roots - Fixed that Wall could not be used after beeing exiled and returned with Momentary Blink.

This commit is contained in:
LevelX2 2014-08-16 19:27:43 +02:00
parent df475d8049
commit f633d35bfd
10 changed files with 180 additions and 22 deletions

View file

@ -62,8 +62,7 @@ public class WallOfRoots extends CardImpl {
// Defender
this.addAbility(DefenderAbility.getInstance());
// Put a -0/-1 counter on Wall of Roots: Add {G} to your mana pool. Activate this ability only once each turn.
Ability ability = new ActivateOncePerTurnManaAbility(Zone.BATTLEFIELD, new BasicManaEffect(Mana.GreenMana), new WallOfRootsCost());
this.addAbility(ability);
this.addAbility(new ActivateOncePerTurnManaAbility(Zone.BATTLEFIELD, new BasicManaEffect(Mana.GreenMana), new WallOfRootsCost()));
}
public WallOfRoots(final WallOfRoots card) {