[AFC] more text fixes

This commit is contained in:
Evan Kranzler 2021-08-23 18:53:35 -04:00
parent 8fe0467893
commit 31a559be23
12 changed files with 27 additions and 26 deletions

View file

@ -43,7 +43,7 @@ public class AddConditionalManaOfAnyColorEffect extends ManaEffect {
this.oneChoice = oneChoice;
//
staticText = "Add "
+ (amount instanceof StaticValue ? (CardUtil.numberToText(amount.toString())) : "")
+ (amount instanceof StaticValue ? (CardUtil.numberToText(amount.toString())) : "X")
+ " mana "
+ (oneChoice || (amount instanceof StaticValue && (amount.toString()).equals("1"))
? "of any" + (amount instanceof StaticValue && (amount.toString()).equals("1") ? "" : " one") + " color"

View file

@ -17,7 +17,7 @@ public class AddManaAnyColorAttachedControllerEffect extends ManaEffect {
public AddManaAnyColorAttachedControllerEffect() {
super();
staticText = "its controller adds one mana of any color";
staticText = "its controller adds an additional one mana of any color";
}
public AddManaAnyColorAttachedControllerEffect(final AddManaAnyColorAttachedControllerEffect effect) {