mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +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);
|
||||
}
|
||||
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();
|
||||
newSA.setBasicSpell(false);
|
||||
ManaCostBeingPaid newCost = new ManaCostBeingPaid(source.getManaCost());
|
||||
|
||||
@@ -1971,7 +1971,7 @@ public class Card extends GameEntity implements Comparable<Card> {
|
||||
sb.append(keyword).append("\r\n");
|
||||
} else if (keyword.equals("Aftermath")) {
|
||||
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");
|
||||
} else if (keyword.startsWith("Flashback")) {
|
||||
sb.append("Flashback");
|
||||
|
||||
Reference in New Issue
Block a user