1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-07 17:00:08 -09:00

fix verify failure

This commit is contained in:
theelk801 2023-04-11 18:54:18 -04:00
parent 676c2cb861
commit 9737526f17

View file

@ -45,10 +45,10 @@ public final class RashmiAndRagavan extends CardImpl {
this.toughness = new MageInt(4); this.toughness = new MageInt(4);
// Whenever you cast your first spell during each of your turns, // Whenever you cast your first spell during each of your turns,
// exile the top card of target opponents library and create a Treasure token. // exile the top card of target opponent's library and create a Treasure token.
// Then you may cast the exiled card without paying its mana cost if its a spell with mana value // Then you may cast the exiled card without paying its mana cost if it's a spell with mana value
// less than the number of artifacts you control. // less than the number of artifacts you control.
// If you dont cast it this way, you may cast it this turn. // If you don't cast it this way, you may cast it this turn.
Ability ability = new RashmiAndRagavanTriggeredAbility(); Ability ability = new RashmiAndRagavanTriggeredAbility();
ability.addTarget(new TargetOpponent()); ability.addTarget(new TargetOpponent());
this.addAbility(ability, new SpellsCastWatcher()); this.addAbility(ability, new SpellsCastWatcher());
@ -98,9 +98,9 @@ class RashmiAndRagavanTriggeredAbility extends SpellCastControllerTriggeredAbili
@Override @Override
public String getRule() { public String getRule() {
return "Whenever you cast your first spell during each of your turns, exile the top card of target " return "Whenever you cast your first spell during each of your turns, exile the top card of target "
+ "opponents library and create a Treasure token. Then you may cast the exiled card without " + "opponent's library and create a Treasure token. Then you may cast the exiled card without "
+ "paying its mana cost if its a spell with mana value less than the number of artifacts you " + "paying its mana cost if it's a spell with mana value less than the number of artifacts you "
+ "control. If you dont cast it this way, you may cast it this turn."; + "control. If you don't cast it this way, you may cast it this turn.";
} }
} }
@ -108,9 +108,9 @@ class RashmiAndRagavanEffect extends OneShotEffect {
RashmiAndRagavanEffect() { RashmiAndRagavanEffect() {
super(Outcome.PlayForFree); super(Outcome.PlayForFree);
this.staticText = "exile the top card of target opponents library and create a Treasure token. " this.staticText = "exile the top card of target opponent's library and create a Treasure token. "
+ "Then you may cast the exiled card without paying its mana cost if its a spell with mana value " + "Then you may cast the exiled card without paying its mana cost if it's a spell with mana value "
+ "less than the number of artifacts you control. If you dont cast it this way, " + "less than the number of artifacts you control. If you don't cast it this way, "
+ "you may cast it this turn"; + "you may cast it this turn";
} }