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:
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(
|
||||
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);
|
||||
}
|
||||
|
||||
|
|
|
@ -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());
|
||||
|
|
Loading…
Add table
Reference in a new issue