mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 21:42:07 -08:00
[KHC] text fixes
This commit is contained in:
parent
ebbff82f82
commit
df38d7213e
6 changed files with 13 additions and 11 deletions
|
|
@ -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("—");
|
||||
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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue