mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Fixed two NEO cards which passed on my computer but failed on travis...
This commit is contained in:
parent
24ff47c803
commit
999ea8150c
2 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ public final class ColossalSkyturtle extends CardImpl {
|
|||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// Ward {2}
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}")));
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}"), false));
|
||||
|
||||
// Channel — {2}{G}, Discard Colossal Skyturtle: Return target card from your graveyard to your hand.
|
||||
Ability ability = new ChannelAbility("{2}{G}", new ReturnFromGraveyardToHandTargetEffect());
|
||||
|
|
|
@ -45,7 +45,7 @@ public final class KairiTheSwirlingSky extends CardImpl {
|
|||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// Ward {3}
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{3}")));
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{3}"), false));
|
||||
|
||||
// When Kairi, the Swirling Sky dies, choose one —
|
||||
// • Return any number of target nonland permanents with total mana value 6 or less to their owners' hands.
|
||||
|
|
Loading…
Reference in a new issue