[ROE] various text fixes

This commit is contained in:
Evan Kranzler 2022-03-09 19:16:33 -05:00
parent 08411b122c
commit f94c79f6b4
42 changed files with 148 additions and 131 deletions

View file

@ -129,7 +129,7 @@ public class CreateTokenEffect extends OneShotEffect {
if (tapped && !attacking) {
sb.append("tapped ");
}
sb.append(token.getDescription());
sb.append(token.getDescription().replace("token. It has", "tokens. They have"));
if (token.getDescription().endsWith("token")) {
sb.append("s");
}

View file

@ -38,7 +38,7 @@ public class TotemArmorAbility extends SimpleStaticAbility {
@Override
public String getRule() {
return "Totem armor <i>(If enchanted creature would be destroyed, instead remove all damage from it and destroy this Aura.)</i>";
return "totem armor <i>(If enchanted creature would be destroyed, instead remove all damage from it and destroy this Aura.)</i>";
}
}

View file

@ -18,7 +18,7 @@ import java.util.Arrays;
public final class EldraziSpawnToken extends TokenImpl {
public EldraziSpawnToken() {
super("Eldrazi Spawn", "0/1 colorless Eldrazi Spawn creature with \"Sacrifice this creature: Add {C}.\"");
super("Eldrazi Spawn", "0/1 colorless Eldrazi Spawn creature token. It has \"Sacrifice this creature: Add {C}.\"");
cardType.add(CardType.CREATURE);
subtype.add(SubType.ELDRAZI);
subtype.add(SubType.SPAWN);