mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00: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)));
|
||||
|
||||
// Equip {3}
|
||||
this.addAbility(new EquipAbility(3));
|
||||
this.addAbility(new EquipAbility(3, false));
|
||||
|
||||
// Ysgard's Call
|
||||
// Create X 1/1 white Soldier creature tokens.
|
||||
|
|
|
@ -37,7 +37,7 @@ public final class TwoHandedAxe extends AdventureCard {
|
|||
));
|
||||
|
||||
// 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
|
||||
// Target creature you control gains double strike until end of turn.
|
||||
|
|
Loading…
Reference in a new issue