mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
fixed verify failures
This commit is contained in:
parent
2582f46615
commit
1e61efb90e
2 changed files with 2 additions and 2 deletions
|
|
@ -41,7 +41,7 @@ public final class HornOfValhalla extends AdventureCard {
|
||||||
this.addAbility(new SimpleStaticAbility(new BoostEquippedEffect(xValue, xValue)));
|
this.addAbility(new SimpleStaticAbility(new BoostEquippedEffect(xValue, xValue)));
|
||||||
|
|
||||||
// Equip {3}
|
// Equip {3}
|
||||||
this.addAbility(new EquipAbility(3));
|
this.addAbility(new EquipAbility(3, false));
|
||||||
|
|
||||||
// Ysgard's Call
|
// Ysgard's Call
|
||||||
// Create X 1/1 white Soldier creature tokens.
|
// Create X 1/1 white Soldier creature tokens.
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,7 @@ public final class TwoHandedAxe extends AdventureCard {
|
||||||
));
|
));
|
||||||
|
|
||||||
// Equip {1}{R}
|
// Equip {1}{R}
|
||||||
this.addAbility(new EquipAbility(Outcome.AddAbility, new ManaCostsImpl<>("{1}{R}")));
|
this.addAbility(new EquipAbility(Outcome.AddAbility, new ManaCostsImpl<>("{1}{R}"), false));
|
||||||
|
|
||||||
// Sweeping Cleave
|
// Sweeping Cleave
|
||||||
// Target creature you control gains double strike until end of turn.
|
// Target creature you control gains double strike until end of turn.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue