more text fixes

This commit is contained in:
Evan Kranzler 2021-04-21 07:27:26 -04:00
parent 2496012006
commit 28524ce2ed
24 changed files with 33 additions and 29 deletions

View file

@ -28,7 +28,7 @@ public class EpicEffect extends OneShotEffect {
private static final String rule = "Epic <i>(For the rest of the game, you can't cast spells. " +
"At the beginning of each of your upkeeps for the rest of the game, copy this spell " +
"except for its epic ability. If the spell has targets, you may choose new targets for the copy)";
"except for its epic ability. If the spell has targets, you may choose new targets for the copy)</i>";
public EpicEffect() {
super(Outcome.Benefit);

View file

@ -52,7 +52,7 @@ public class UnearthAbility extends ActivatedAbilityImpl {
public String getRule() {
StringBuilder sb = new StringBuilder("Unearth ").append(this.getManaCosts().getText());
sb.append(" <i>(").append(this.getManaCosts().getText());
sb.append(": Return this card from your graveyard to the battlefield. It gains haste. Exile it at the beginning of the next end step or if it would leave the battlefield. Unearth only as a sorcery.)");
sb.append(": Return this card from your graveyard to the battlefield. It gains haste. Exile it at the beginning of the next end step or if it would leave the battlefield. Unearth only as a sorcery.)</i>");
return sb.toString();
}