fix verify failures

This commit is contained in:
Evan Kranzler 2022-09-18 13:39:08 -04:00
parent dc573fdff7
commit 5650c41004
2 changed files with 2 additions and 2 deletions

View file

@ -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"));

View file

@ -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(