mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 02:38:02 +00:00
- Improved Card Detail description of Buyback and Entwine
This commit is contained in:
@@ -2403,10 +2403,14 @@ public class Card extends GameEntity implements Comparable<Card> {
|
||||
sb.append("Splice onto Arcane " + cost.toSimpleString() + "\r\n");
|
||||
} else if (keyword.startsWith("Buyback")) {
|
||||
final Cost cost = new Cost(keyword.substring(8), false);
|
||||
sb.append("Buyback " + cost.toSimpleString() + "\r\n");
|
||||
sb.append("Buyback ").append(cost.toSimpleString());
|
||||
sb.append(" (You may pay an additional cost as you cast CARDNAME. If you do, put CARDNAME back into your hand as it resolves.)");
|
||||
sb.append("\r\n");
|
||||
} else if (keyword.startsWith("Entwine")) {
|
||||
final Cost cost = new Cost(keyword.substring(8), false);
|
||||
sb.append("Entwine " + cost.toSimpleString() + "\r\n");
|
||||
sb.append("Entwine ").append(cost.toSimpleString());
|
||||
sb.append(" (Choose both if you pay the entwine cost.)");
|
||||
sb.append("\r\n");
|
||||
} else if (keyword.startsWith("Kicker")) {
|
||||
final Cost cost = new Cost(keyword.substring(7), false);
|
||||
sb.append("Kicker " + cost.toSimpleString() + "\r\n");
|
||||
|
||||
Reference in New Issue
Block a user