mirror of
https://github.com/correl/mage.git
synced 2025-04-10 17:00:08 -09:00
fixed verify failures
This commit is contained in:
parent
be8bbf1dee
commit
6663a409ef
2 changed files with 3 additions and 2 deletions
Mage.Sets/src/mage/cards
|
@ -40,7 +40,8 @@ public final class CriminalPast extends CardImpl {
|
||||||
new SimpleStaticAbility(new BoostSourceEffect(
|
new SimpleStaticAbility(new BoostSourceEffect(
|
||||||
xValue, StaticValue.get(0), Duration.WhileOnBattlefield, false, "this creature"
|
xValue, StaticValue.get(0), Duration.WhileOnBattlefield, false, "this creature"
|
||||||
)), Duration.WhileOnBattlefield, StaticFilters.FILTER_CREATURES_OWNED_COMMANDER
|
)), 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);
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,7 @@ public final class WilsonRefinedGrizzly extends CardImpl {
|
||||||
this.addAbility(TrampleAbility.getInstance());
|
this.addAbility(TrampleAbility.getInstance());
|
||||||
|
|
||||||
// Ward {2}
|
// Ward {2}
|
||||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}")));
|
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}"), false));
|
||||||
|
|
||||||
// Choose a Background
|
// Choose a Background
|
||||||
this.addAbility(ChooseABackgroundAbility.getInstance());
|
this.addAbility(ChooseABackgroundAbility.getInstance());
|
||||||
|
|
Loading…
Add table
Reference in a new issue