AF_Token stack description tweaks for drawbacks and readability.

This commit is contained in:
jendave
2011-08-06 15:00:59 +00:00
parent e2f4c655b8
commit 625c2ae50f

View File

@@ -195,8 +195,15 @@ public class AbilityFactory_Token extends AbilityFactory {
StringBuilder sb = new StringBuilder(); StringBuilder sb = new StringBuilder();
sb.append(AF.getHostCard().getName()); if (sa instanceof Ability_Sub)
sb.append(" - Put ").append(finalAmount).append(" ").append(finalPower).append("/").append(finalToughness).append(" ").append(tokenName).append(" tokens onto the battlefield"); sb.append(" ");
else
sb.append(AF.getHostCard().getName()).append(" - ");
sb.append("Put (").append(finalAmount).append(") ").append(finalPower).append("/").append(finalToughness);
sb.append(" ").append(tokenName).append(" token");
if(finalAmount != 1) sb.append("s");
sb.append(" onto the battlefield");
if(tokenOwner.equals("Opponent")) { if(tokenOwner.equals("Opponent")) {
sb.append(" under your opponent's control."); sb.append(" under your opponent's control.");