1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-05 01:09:06 -09:00

fixed verify failures

This commit is contained in:
Evan Kranzler 2022-05-20 21:22:06 -04:00
parent be8bbf1dee
commit 6663a409ef
2 changed files with 3 additions and 2 deletions

View file

@ -40,7 +40,8 @@ public final class CriminalPast extends CardImpl {
new SimpleStaticAbility(new BoostSourceEffect(
xValue, StaticValue.get(0), Duration.WhileOnBattlefield, false, "this creature"
)), Duration.WhileOnBattlefield, StaticFilters.FILTER_CREATURES_OWNED_COMMANDER
).setText("and \"This creature gets +X/+0, where X is the number of creature cards in your graveyard.\""));
).setText("and \"This creature gets +X/+0, where X is the number of creature cards in your graveyard.\" " +
"<i>(A creature with menace can't be blocked except by two or more creatures.)</i>"));
this.addAbility(ability);
}

View file

@ -43,7 +43,7 @@ public final class WilsonRefinedGrizzly extends CardImpl {
this.addAbility(TrampleAbility.getInstance());
// Ward {2}
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}")));
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}"), false));
// Choose a Background
this.addAbility(ChooseABackgroundAbility.getInstance());