[ECC] a few more text fixes

This commit is contained in:
theelk801 2026-01-18 10:53:04 -05:00
parent 75717bc839
commit bf97f24336
4 changed files with 8 additions and 6 deletions

View file

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

View file

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

View file

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

View file

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