mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
- Adding +2 Mana for Flash Keyword to be displayed in the card detail panel (for cards like Rout)
This commit is contained in:
@@ -2431,6 +2431,7 @@ public class Card extends GameEntity implements Comparable<Card> {
|
||||
sb.append("\r\n");
|
||||
}
|
||||
|
||||
// I think SpellAbilities should be displayed after Keywords
|
||||
// Add SpellAbilities
|
||||
for (final SpellAbility element : this.getSpellAbilities()) {
|
||||
sb.append(element.toString() + "\r\n");
|
||||
@@ -2481,6 +2482,9 @@ public class Card extends GameEntity implements Comparable<Card> {
|
||||
|| (keyword.startsWith("Multikicker") && !sb.toString().contains("Multikicker"))) {
|
||||
sb.append(keyword).append("\r\n");
|
||||
}
|
||||
else if (keyword.equals("You may cast CARDNAME any time you could cast an instant if you pay 2 more to cast it.")) {
|
||||
sb.append(keyword).append("\r\n");
|
||||
}
|
||||
else if (keyword.startsWith("Flashback")) {
|
||||
sb.append("Flashback");
|
||||
if (keyword.contains(" ")) {
|
||||
|
||||
Reference in New Issue
Block a user