[KHC] text fixes

This commit is contained in:
Evan Kranzler 2021-01-31 15:01:02 -05:00
parent ebbff82f82
commit df38d7213e
6 changed files with 13 additions and 11 deletions

View file

@ -71,6 +71,13 @@ public class ForetellAbility extends SpecialAction {
}
return super.canActivate(playerId, game);
}
@Override
public String getRule() {
return "Foretell " + foretellCost + " <i>(During your turn, " +
"you may pay {2} and exile this card from your hand face down. " +
"Cast it on a later turn for its foretell cost.)</i>";
}
}
class ForetellExileEffect extends OneShotEffect {
@ -82,11 +89,6 @@ class ForetellExileEffect extends OneShotEffect {
super(Outcome.Neutral);
this.card = card;
this.foretellCost = foretellCost;
StringBuilder sbRule = new StringBuilder("Foretell");
sbRule.append("&mdash;");
sbRule.append(foretellCost);
sbRule.append(" <i>(During your turn, you may pay {2} and exile this card from your hand face down. Cast it on a later turn for its foretell cost.)</i>");
staticText = sbRule.toString();
}
public ForetellExileEffect(final ForetellExileEffect effect) {