mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
Changing the mana cost 2 to {2} for the [[Rout]] ability
K:You may cast CARDNAME as though it had flash if you pay 2 more to cast it. -> K:You may cast CARDNAME as though it had flash if you pay {2} more to cast it.
This may break something. If so, whoops
This commit is contained in:
@@ -198,7 +198,7 @@ public final class GameActionUtil {
|
|||||||
}
|
}
|
||||||
alternatives.add(flashback);
|
alternatives.add(flashback);
|
||||||
}
|
}
|
||||||
if (sa.isSpell() && keyword.equals("You may cast CARDNAME as though it had flash if you pay 2 more to cast it.")) {
|
if (sa.isSpell() && keyword.equals("You may cast CARDNAME as though it had flash if you pay {2} more to cast it.")) {
|
||||||
final SpellAbility newSA = sa.copy();
|
final SpellAbility newSA = sa.copy();
|
||||||
newSA.setBasicSpell(false);
|
newSA.setBasicSpell(false);
|
||||||
ManaCostBeingPaid newCost = new ManaCostBeingPaid(source.getManaCost());
|
ManaCostBeingPaid newCost = new ManaCostBeingPaid(source.getManaCost());
|
||||||
|
|||||||
@@ -1971,7 +1971,7 @@ public class Card extends GameEntity implements Comparable<Card> {
|
|||||||
sb.append(keyword).append("\r\n");
|
sb.append(keyword).append("\r\n");
|
||||||
} else if (keyword.equals("Aftermath")) {
|
} else if (keyword.equals("Aftermath")) {
|
||||||
sb.append(Keyword.getInstance(keyword).getReminderText()).append("\r\n");
|
sb.append(Keyword.getInstance(keyword).getReminderText()).append("\r\n");
|
||||||
} else if (keyword.equals("You may cast CARDNAME as though it had flash if you pay 2 more to cast it.")) {
|
} else if (keyword.equals("You may cast CARDNAME as though it had flash if you pay {2} more to cast it.")) {
|
||||||
sb.append(keyword).append("\r\n");
|
sb.append(keyword).append("\r\n");
|
||||||
} else if (keyword.startsWith("Flashback")) {
|
} else if (keyword.startsWith("Flashback")) {
|
||||||
sb.append("Flashback");
|
sb.append("Flashback");
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
Name:Breaking Wave
|
Name:Breaking Wave
|
||||||
ManaCost:2 U U
|
ManaCost:2 U U
|
||||||
Types:Sorcery
|
Types:Sorcery
|
||||||
K:You may cast CARDNAME as though it had flash if you pay 2 more to cast it.
|
K:You may cast CARDNAME as though it had flash if you pay {2} more to cast it.
|
||||||
A:SP$ UntapAll | Cost$ 2 U U | ValidCards$ Creature.tapped | RememberUntapped$ True | SubAbility$ DBTap | SpellDescription$ Simultaneously untap all tapped creatures and tap all untapped creatures.
|
A:SP$ UntapAll | Cost$ 2 U U | ValidCards$ Creature.tapped | RememberUntapped$ True | SubAbility$ DBTap | SpellDescription$ Simultaneously untap all tapped creatures and tap all untapped creatures.
|
||||||
SVar:DBTap:DB$ TapAll | ValidCards$ Creature.untapped+IsNotRemembered | SubAbility$ DBCleanup
|
SVar:DBTap:DB$ TapAll | ValidCards$ Creature.untapped+IsNotRemembered | SubAbility$ DBCleanup
|
||||||
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True
|
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
Name:Ghitu Fire
|
Name:Ghitu Fire
|
||||||
ManaCost:X R
|
ManaCost:X R
|
||||||
Types:Sorcery
|
Types:Sorcery
|
||||||
K:You may cast CARDNAME as though it had flash if you pay 2 more to cast it.
|
K:You may cast CARDNAME as though it had flash if you pay {2} more to cast it.
|
||||||
A:SP$ DealDamage | Cost$ X R | ValidTgts$ Creature,Player | TgtPrompt$ Select target creature or player | NumDmg$ X | References$ X | SpellDescription$ CARDNAME deals X damage to target creature or player.
|
A:SP$ DealDamage | Cost$ X R | ValidTgts$ Creature,Player | TgtPrompt$ Select target creature or player | NumDmg$ X | References$ X | SpellDescription$ CARDNAME deals X damage to target creature or player.
|
||||||
SVar:X:Count$xPaid
|
SVar:X:Count$xPaid
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/ghitu_fire.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/ghitu_fire.jpg
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ Name:Harbinger of the Tides
|
|||||||
ManaCost:U U
|
ManaCost:U U
|
||||||
Types:Creature Merfolk Wizard
|
Types:Creature Merfolk Wizard
|
||||||
PT:2/2
|
PT:2/2
|
||||||
K:You may cast CARDNAME as though it had flash if you pay 2 more to cast it.
|
K:You may cast CARDNAME as though it had flash if you pay {2} more to cast it.
|
||||||
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigChangeZone | OptionalDecider$ You | TriggerDescription$ When CARDNAME enters the battlefield, you may return target tapped creature an opponent controls to its owner's hand.
|
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigChangeZone | OptionalDecider$ You | TriggerDescription$ When CARDNAME enters the battlefield, you may return target tapped creature an opponent controls to its owner's hand.
|
||||||
SVar:TrigChangeZone:DB$ChangeZone | ValidTgts$ Creature.OppCtrl+tapped | TgtPrompt$ Select target tapped creature an opponent controls | Origin$ Battlefield | Destination$ Hand
|
SVar:TrigChangeZone:DB$ChangeZone | ValidTgts$ Creature.OppCtrl+tapped | TgtPrompt$ Select target tapped creature an opponent controls | Origin$ Battlefield | Destination$ Hand
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/harbinger_of_the_tides.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/harbinger_of_the_tides.jpg
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
Name:Rout
|
Name:Rout
|
||||||
ManaCost:3 W W
|
ManaCost:3 W W
|
||||||
Types:Sorcery
|
Types:Sorcery
|
||||||
K:You may cast CARDNAME as though it had flash if you pay 2 more to cast it.
|
K:You may cast CARDNAME as though it had flash if you pay {2} more to cast it.
|
||||||
A:SP$ DestroyAll | Cost$ 3 W W | ValidCards$ Creature | NoRegen$ True | SpellDescription$ Destroy all creatures. They can't be regenerated.
|
A:SP$ DestroyAll | Cost$ 3 W W | ValidCards$ Creature | NoRegen$ True | SpellDescription$ Destroy all creatures. They can't be regenerated.
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/rout.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/rout.jpg
|
||||||
Oracle:You may cast Rout as though it had flash if you pay {2} more to cast it. (You may cast it any time you could cast an instant.)\nDestroy all creatures. They can't be regenerated.
|
Oracle:You may cast Rout as though it had flash if you pay {2} more to cast it. (You may cast it any time you could cast an instant.)\nDestroy all creatures. They can't be regenerated.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
Name:Saproling Symbiosis
|
Name:Saproling Symbiosis
|
||||||
ManaCost:3 G
|
ManaCost:3 G
|
||||||
Types:Sorcery
|
Types:Sorcery
|
||||||
K:You may cast CARDNAME as though it had flash if you pay 2 more to cast it.
|
K:You may cast CARDNAME as though it had flash if you pay {2} more to cast it.
|
||||||
A:SP$ Token | Cost$ 3 G | TokenAmount$ X | References$ X | TokenName$ Saproling | TokenTypes$ Creature,Saproling | TokenOwner$ You | TokenColors$ Green | TokenPower$ 1 | TokenToughness$ 1 | SpellDescription$ Create a 1/1 green Saproling creature token for each creature you control.
|
A:SP$ Token | Cost$ 3 G | TokenAmount$ X | References$ X | TokenName$ Saproling | TokenTypes$ Creature,Saproling | TokenOwner$ You | TokenColors$ Green | TokenPower$ 1 | TokenToughness$ 1 | SpellDescription$ Create a 1/1 green Saproling creature token for each creature you control.
|
||||||
SVar:X:Count$Valid Creature.YouCtrl
|
SVar:X:Count$Valid Creature.YouCtrl
|
||||||
DeckHas:Ability$Token
|
DeckHas:Ability$Token
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
Name:Twilight's Call
|
Name:Twilight's Call
|
||||||
ManaCost:4 B B
|
ManaCost:4 B B
|
||||||
Types:Sorcery
|
Types:Sorcery
|
||||||
K:You may cast CARDNAME as though it had flash if you pay 2 more to cast it.
|
K:You may cast CARDNAME as though it had flash if you pay {2} more to cast it.
|
||||||
A:SP$ ChangeZoneAll | Cost$ 4 B B | Origin$ Graveyard | Destination$ Battlefield | ChangeType$ Creature | SpellDescription$ Each player returns all creature cards from his or her graveyard to the battlefield.
|
A:SP$ ChangeZoneAll | Cost$ 4 B B | Origin$ Graveyard | Destination$ Battlefield | ChangeType$ Creature | SpellDescription$ Each player returns all creature cards from his or her graveyard to the battlefield.
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/twilights_call.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/twilights_call.jpg
|
||||||
Oracle:You may cast Twilight's Call as though it had flash if you pay {2} more to cast it. (You may cast it any time you could cast an instant.)\nEach player returns all creature cards from his or her graveyard to the battlefield.
|
Oracle:You may cast Twilight's Call as though it had flash if you pay {2} more to cast it. (You may cast it any time you could cast an instant.)\nEach player returns all creature cards from his or her graveyard to the battlefield.
|
||||||
|
|||||||
Reference in New Issue
Block a user