mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Fix failing tests (was passing locally but failing on Travis due to an old local version of AllPrintings)
This commit is contained in:
parent
56948864ff
commit
ab7d06ad89
4 changed files with 6 additions and 5 deletions
|
@ -58,7 +58,8 @@ public final class GavelOfTheRighteous extends CardImpl {
|
||||||
new OrCost(
|
new OrCost(
|
||||||
"Pay {3} or remove a counter from {this}",
|
"Pay {3} or remove a counter from {this}",
|
||||||
new GenericManaCost(3), new RemoveCountersSourceCost()
|
new GenericManaCost(3), new RemoveCountersSourceCost()
|
||||||
)
|
),
|
||||||
|
false
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -43,10 +43,10 @@ public final class LuxiorGiadasGift extends CardImpl {
|
||||||
this.addAbility(new SimpleStaticAbility(new LuxiorGiadasGiftEffect()));
|
this.addAbility(new SimpleStaticAbility(new LuxiorGiadasGiftEffect()));
|
||||||
|
|
||||||
// Equip planeswalker {1}
|
// Equip planeswalker {1}
|
||||||
this.addAbility(new EquipAbility(Outcome.BoostCreature, new GenericManaCost(1), new TargetPermanent(filter)));
|
this.addAbility(new EquipAbility(Outcome.BoostCreature, new GenericManaCost(1), new TargetPermanent(filter), false));
|
||||||
|
|
||||||
// Equip {3}
|
// Equip {3}
|
||||||
this.addAbility(new EquipAbility(3));
|
this.addAbility(new EquipAbility(3, false));
|
||||||
}
|
}
|
||||||
|
|
||||||
private LuxiorGiadasGift(final LuxiorGiadasGift card) {
|
private LuxiorGiadasGift(final LuxiorGiadasGift card) {
|
||||||
|
|
|
@ -31,7 +31,7 @@ public final class MaskOfTheSchemer extends CardImpl {
|
||||||
));
|
));
|
||||||
|
|
||||||
// Equip {2}
|
// Equip {2}
|
||||||
this.addAbility(new EquipAbility(2));
|
this.addAbility(new EquipAbility(2, false));
|
||||||
}
|
}
|
||||||
|
|
||||||
private MaskOfTheSchemer(final MaskOfTheSchemer card) {
|
private MaskOfTheSchemer(final MaskOfTheSchemer card) {
|
||||||
|
|
|
@ -41,7 +41,7 @@ public final class ScepterOfCelebration extends CardImpl {
|
||||||
), "equipped", false));
|
), "equipped", false));
|
||||||
|
|
||||||
// Equip {3}
|
// Equip {3}
|
||||||
this.addAbility(new EquipAbility(3));
|
this.addAbility(new EquipAbility(3, false));
|
||||||
}
|
}
|
||||||
|
|
||||||
private ScepterOfCelebration(final ScepterOfCelebration card) {
|
private ScepterOfCelebration(final ScepterOfCelebration card) {
|
||||||
|
|
Loading…
Reference in a new issue