From 33ac7d7da84cf061375127e875ca4d6366b31bfc Mon Sep 17 00:00:00 2001 From: PurpleCrowbar <26198472+PurpleCrowbar@users.noreply.github.com> Date: Sat, 29 Oct 2022 00:34:08 +0100 Subject: [PATCH] Text display fix and text consistency fix --- Mage.Sets/src/mage/cards/d/DargoTheShipwrecker.java | 5 ++--- Mage.Sets/src/mage/cards/g/GorexTheTombshell.java | 3 +-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Mage.Sets/src/mage/cards/d/DargoTheShipwrecker.java b/Mage.Sets/src/mage/cards/d/DargoTheShipwrecker.java index 8e36d815183..9ed2077ea5d 100644 --- a/Mage.Sets/src/mage/cards/d/DargoTheShipwrecker.java +++ b/Mage.Sets/src/mage/cards/d/DargoTheShipwrecker.java @@ -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); diff --git a/Mage.Sets/src/mage/cards/g/GorexTheTombshell.java b/Mage.Sets/src/mage/cards/g/GorexTheTombshell.java index f07ebd687bf..0ad42f8f746 100644 --- a/Mage.Sets/src/mage/cards/g/GorexTheTombshell.java +++ b/Mage.Sets/src/mage/cards/g/GorexTheTombshell.java @@ -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);