mirror of
https://github.com/correl/mage.git
synced 2024-11-25 11:09:53 +00:00
fix verify failures
This commit is contained in:
parent
dc573fdff7
commit
5650c41004
2 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ public final class LordOfChange extends CardImpl {
|
||||||
this.addAbility(FlyingAbility.getInstance());
|
this.addAbility(FlyingAbility.getInstance());
|
||||||
|
|
||||||
// Ward {3}
|
// Ward {3}
|
||||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{3}")));
|
this.addAbility(new WardAbility(new ManaCostsImpl<>("{3}"), false));
|
||||||
|
|
||||||
// Architect of Deception -- When Lord of Change enters the battlefield, draw three cards.
|
// Architect of Deception -- When Lord of Change enters the battlefield, draw three cards.
|
||||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new DrawCardSourceControllerEffect(3)).withFlavorWord("Architect of Deception"));
|
this.addAbility(new EntersBattlefieldTriggeredAbility(new DrawCardSourceControllerEffect(3)).withFlavorWord("Architect of Deception"));
|
||||||
|
|
|
@ -36,7 +36,7 @@ public final class Zoanthrope extends CardImpl {
|
||||||
this.addAbility(FlyingAbility.getInstance());
|
this.addAbility(FlyingAbility.getInstance());
|
||||||
|
|
||||||
// Ward {2}
|
// Ward {2}
|
||||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}")));
|
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}"), false));
|
||||||
|
|
||||||
// Warp Blast -- When Zoanthrope enters the battlefield, it deals X damage to any target.
|
// Warp Blast -- When Zoanthrope enters the battlefield, it deals X damage to any target.
|
||||||
Ability ability = new EntersBattlefieldTriggeredAbility(
|
Ability ability = new EntersBattlefieldTriggeredAbility(
|
||||||
|
|
Loading…
Reference in a new issue