Text display fix and text consistency fix

This commit is contained in:
PurpleCrowbar 2022-10-29 00:34:08 +01:00
parent 5755c3171e
commit 33ac7d7da8
2 changed files with 3 additions and 5 deletions

View file

@ -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);

View file

@ -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);