mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
AF_Token stack description tweaks for drawbacks and readability.
This commit is contained in:
@@ -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.");
|
||||||
|
|||||||
Reference in New Issue
Block a user