mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Text display fix and text consistency fix
This commit is contained in:
parent
5755c3171e
commit
33ac7d7da8
2 changed files with 3 additions and 5 deletions
|
@ -38,9 +38,8 @@ public final class DargoTheShipwrecker extends CardImpl {
|
|||
this.toughness = new MageInt(5);
|
||||
|
||||
// As an additional cost to cast this spell, you may sacrifice any number of artifacts and/or creatures. This spell costs {2} less to cast for each permanent sacrificed this way and {2} less to cast for each other artifact or creature you've sacrificed this turn.
|
||||
Cost cost = new SacrificeXTargetCost(StaticFilters.FILTER_CONTROLLED_PERMANENT_ARTIFACT_OR_CREATURE);
|
||||
cost.setText("As an additional cost to cast this spell, " +
|
||||
"you may sacrifice any number of artifacts and/or creatures. " +
|
||||
Cost cost = new SacrificeXTargetCost(StaticFilters.FILTER_CONTROLLED_PERMANENT_ARTIFACT_OR_CREATURE, true);
|
||||
cost.setText("you may sacrifice any number of artifacts and/or creatures. " +
|
||||
"This spell costs {2} less to cast for each permanent sacrificed this way " +
|
||||
"and {2} less to cast for each other artifact or creature you've sacrificed this turn");
|
||||
this.getSpellAbility().addCost(cost);
|
||||
|
|
|
@ -39,8 +39,7 @@ public final class GorexTheTombshell extends CardImpl {
|
|||
|
||||
// As an additional cost to cast this spell, you may exile any number of creature cards from your graveyard. This spell costs {2} less to cast for each card exiled this way.
|
||||
Cost cost = new ExileXFromYourGraveCost(StaticFilters.FILTER_CARD_CREATURES, true);
|
||||
cost.setText("as an additional cost to cast this spell, you may exile any number of creature cards " +
|
||||
"from your graveyard. This spell costs {2} less to cast for each card exiled this way");
|
||||
cost.setText("you may exile any number of creature cards from your graveyard. This spell costs {2} less to cast for each card exiled this way");
|
||||
this.getSpellAbility().addCost(cost);
|
||||
Ability ability = new SimpleStaticAbility(Zone.ALL, new GorexTheTombshellCostReductionEffect());
|
||||
ability.setRuleVisible(false);
|
||||
|
|
Loading…
Reference in a new issue