From bf97f24336bf2e22d947eb7755e330fc3262ec7d Mon Sep 17 00:00:00 2001 From: theelk801 Date: Sun, 18 Jan 2026 10:53:04 -0500 Subject: [PATCH] [ECC] a few more text fixes --- Mage.Sets/src/mage/cards/n/NestingGrounds.java | 2 +- Mage.Sets/src/mage/cards/s/SecludedCourtyard.java | 6 +++--- Mage.Sets/src/mage/cards/v/VillagePillagers.java | 4 +++- .../mage/game/permanent/token/VoiceOfResurgenceToken.java | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Mage.Sets/src/mage/cards/n/NestingGrounds.java b/Mage.Sets/src/mage/cards/n/NestingGrounds.java index 7de92d27804..7f172da7f03 100644 --- a/Mage.Sets/src/mage/cards/n/NestingGrounds.java +++ b/Mage.Sets/src/mage/cards/n/NestingGrounds.java @@ -21,7 +21,7 @@ import java.util.UUID; */ public final class NestingGrounds extends CardImpl { - private static final FilterPermanent filter = new FilterPermanent("another target permanent"); + private static final FilterPermanent filter = new FilterPermanent("a second target permanent"); static { filter.add(new AnotherTargetPredicate(2)); diff --git a/Mage.Sets/src/mage/cards/s/SecludedCourtyard.java b/Mage.Sets/src/mage/cards/s/SecludedCourtyard.java index 937796cc086..643339e5dbe 100644 --- a/Mage.Sets/src/mage/cards/s/SecludedCourtyard.java +++ b/Mage.Sets/src/mage/cards/s/SecludedCourtyard.java @@ -65,7 +65,7 @@ class SecludedCourtyardManaBuilder extends ConditionalManaBuilder { && sourceObject != null && mana.getAny() == 0) { game.informPlayers(controller.getLogName() + " produces " + mana.toString() + " with " + sourceObject.getLogName() - + " (can only be spent to cast creatures of type " + creatureType + " and activate an ability of a creature or creature card of the chosen type)"); + + " (can only be spent to cast creatures of type " + creatureType + " and activate an ability of a creature source of the chosen type)"); } return super.setMana(mana, source, game); } @@ -77,7 +77,7 @@ class SecludedCourtyardManaBuilder extends ConditionalManaBuilder { @Override public String getRule() { - return "Spend this mana only to cast a creature spell of the chosen type or activate an ability of a creature or creature card of the chosen type"; + return "Spend this mana only to cast a creature spell of the chosen type or activate an ability of a creature source of the chosen type"; } @Override @@ -99,7 +99,7 @@ class SecludedCourtyardConditionalMana extends ConditionalMana { public SecludedCourtyardConditionalMana(Mana mana, SubType creatureType) { super(mana); - staticText = "Spend this mana only to cast a creature spell of the chosen type or activate an ability of a creature or creature card of the chosen type"; + staticText = "Spend this mana only to cast a creature spell of the chosen type or activate an ability of a creature source of the chosen type"; addCondition(new SecludedCourtyardManaCondition(creatureType)); } } diff --git a/Mage.Sets/src/mage/cards/v/VillagePillagers.java b/Mage.Sets/src/mage/cards/v/VillagePillagers.java index 6bf7cab9496..e1802cba023 100644 --- a/Mage.Sets/src/mage/cards/v/VillagePillagers.java +++ b/Mage.Sets/src/mage/cards/v/VillagePillagers.java @@ -46,7 +46,9 @@ public final class VillagePillagers extends CardImpl { // Whenever a creature an opponent controls with a counter on it dies, you create a tapped Treasure token. this.addAbility(new DiesCreatureTriggeredAbility( - new CreateTokenEffect(new TreasureToken(), 1, true), false, filter + new CreateTokenEffect(new TreasureToken(), 1, true) + .setText("you create a tapped Treasure token"), + false, filter )); } diff --git a/Mage/src/main/java/mage/game/permanent/token/VoiceOfResurgenceToken.java b/Mage/src/main/java/mage/game/permanent/token/VoiceOfResurgenceToken.java index 27022d0b08c..9721494b1f1 100644 --- a/Mage/src/main/java/mage/game/permanent/token/VoiceOfResurgenceToken.java +++ b/Mage/src/main/java/mage/game/permanent/token/VoiceOfResurgenceToken.java @@ -13,7 +13,7 @@ import mage.constants.SubType; public final class VoiceOfResurgenceToken extends TokenImpl { public VoiceOfResurgenceToken() { - super("Elemental Token", "green and white Elemental creature token with \"This creature's power and toughness are each equal to the number of creatures you control.\""); + super("Elemental Token", "green and white Elemental creature token with \"This token's power and toughness are each equal to the number of creatures you control.\""); cardType.add(CardType.CREATURE); color.setGreen(true); color.setWhite(true);