some assorted text fixes

This commit is contained in:
Evan Kranzler 2021-02-02 12:41:05 -05:00
parent 0c0333a716
commit fbab9f069e
20 changed files with 62 additions and 55 deletions

View file

@ -112,7 +112,7 @@ class BecomeMonstrousSourceEffect extends OneShotEffect {
private String setText(int monstrosityValue) {
StringBuilder sb = new StringBuilder("Monstrosity ");
sb.append(monstrosityValue == Integer.MAX_VALUE ? "X":monstrosityValue)
.append(". <i>(If this creature isn't monstrous, put ")
.append(". <i>(If this creature isn't monstrous, put ")
.append(monstrosityValue == Integer.MAX_VALUE ? "X":CardUtil.numberToText(monstrosityValue))
.append(" +1/+1 counters on it and it becomes monstrous.)</i>").toString();
return sb.toString();