- Improved Card Detail description of Buyback and Entwine

This commit is contained in:
Sol
2014-02-03 04:43:37 +00:00
parent 3f349d0eb3
commit 1da213b157

View File

@@ -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");