[MH1] various text fixes

This commit is contained in:
Evan Kranzler 2021-06-18 19:13:46 -04:00
parent a1754d3905
commit 1701093d45
24 changed files with 65 additions and 76 deletions

View file

@ -49,7 +49,7 @@ public class EntwineAbility extends StaticAbility implements OptionalAdditionalM
public EntwineAbility(Cost cost, String reminderText) {
super(Zone.STACK, null);
this.additionalCost = new OptionalAdditionalCostImpl(keywordText, "-", reminderText, cost);
this.additionalCost = new OptionalAdditionalCostImpl(keywordText, "—", reminderText, cost);
setRuleAtTheTop(true);
}

View file

@ -46,7 +46,7 @@ public class ExaltedAbility extends TriggeredAbilityImpl {
@Override
public String getRule() {
return "Exalted <i>(Whenever a creature you control attacks alone, that creature gets +1/+1 until end of turn.)</i>";
return "exalted <i>(Whenever a creature you control attacks alone, that creature gets +1/+1 until end of turn.)</i>";
}
}

View file

@ -44,7 +44,7 @@ public class UndyingAbility extends DiesSourceTriggeredAbility {
@Override
public String getRule() {
return "Undying <i>(When this creature dies, if it had no +1/+1 counters on it, return it to the battlefield under its owner's control with a +1/+1 counter on it.)</i>";
return "undying <i>(When this creature dies, if it had no +1/+1 counters on it, return it to the battlefield under its owner's control with a +1/+1 counter on it.)</i>";
}
}