From bdeb0b39e1d192a74529ebaa9e4c4445124aa8ed Mon Sep 17 00:00:00 2001 From: theelk801 Date: Fri, 30 May 2025 22:19:47 -0400 Subject: [PATCH] [FCA] a few text fixes --- Mage.Sets/src/mage/cards/a/AkromasWill.java | 2 +- Mage.Sets/src/mage/cards/f/FatalPush.java | 2 +- Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java | 2 +- .../java/mage/game/permanent/token/KarnConstructToken.java | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Mage.Sets/src/mage/cards/a/AkromasWill.java b/Mage.Sets/src/mage/cards/a/AkromasWill.java index afddbde25d3..e6e6de26b4d 100644 --- a/Mage.Sets/src/mage/cards/a/AkromasWill.java +++ b/Mage.Sets/src/mage/cards/a/AkromasWill.java @@ -61,7 +61,7 @@ public final class AkromasWill extends CardImpl { mode.addEffect(new GainAbilityControlledEffect( new ProtectionAbility(filter), Duration.EndOfTurn, StaticFilters.FILTER_CONTROLLED_CREATURE - ).setText(", and protection from all colors until end of turn")); + ).setText(", and protection from each color until end of turn")); this.getSpellAbility().addMode(mode); } diff --git a/Mage.Sets/src/mage/cards/f/FatalPush.java b/Mage.Sets/src/mage/cards/f/FatalPush.java index cf50d901f9b..967dc20c598 100644 --- a/Mage.Sets/src/mage/cards/f/FatalPush.java +++ b/Mage.Sets/src/mage/cards/f/FatalPush.java @@ -47,7 +47,7 @@ class FatalPushEffect extends OneShotEffect { super(Outcome.DestroyPermanent); this.staticText = "Destroy target creature if it has mana value 2 or less.
" + AbilityWord.REVOLT.formatWord() + "Destroy that creature if it has mana value 4 " + - "or less instead if a permanent you controlled left the battlefield this turn"; + "or less instead if a permanent left the battlefield under your control this turn"; } private FatalPushEffect(final FatalPushEffect effect) { diff --git a/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java b/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java index 1dd2eb42a95..090e621d20a 100644 --- a/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java +++ b/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java @@ -71,7 +71,7 @@ public class VerifyCardDataTest { private static final Logger logger = Logger.getLogger(VerifyCardDataTest.class); - private static final String FULL_ABILITIES_CHECK_SET_CODES = "FIC"; // check ability text due mtgjson, can use multiple sets like MAT;CMD or * for all + private static final String FULL_ABILITIES_CHECK_SET_CODES = "FCA"; // check ability text due mtgjson, can use multiple sets like MAT;CMD or * for all private static final boolean CHECK_ONLY_ABILITIES_TEXT = false; // use when checking text locally, suppresses unnecessary checks and output messages private static final boolean CHECK_COPYABLE_FIELDS = true; // disable for better verify test performance diff --git a/Mage/src/main/java/mage/game/permanent/token/KarnConstructToken.java b/Mage/src/main/java/mage/game/permanent/token/KarnConstructToken.java index 6b721307cf9..edae1dc7c4e 100644 --- a/Mage/src/main/java/mage/game/permanent/token/KarnConstructToken.java +++ b/Mage/src/main/java/mage/game/permanent/token/KarnConstructToken.java @@ -15,7 +15,7 @@ import mage.constants.Zone; public final class KarnConstructToken extends TokenImpl { public KarnConstructToken() { - super("Construct Token", "0/0 colorless Construct artifact creature token with \"This creature gets +1/+1 for each artifact you control.\""); + super("Construct Token", "0/0 colorless Construct artifact creature token with \"This token gets +1/+1 for each artifact you control.\""); cardType.add(CardType.ARTIFACT); cardType.add(CardType.CREATURE); subtype.add(SubType.CONSTRUCT); @@ -24,7 +24,7 @@ public final class KarnConstructToken extends TokenImpl { this.addAbility(new SimpleStaticAbility( new BoostSourceEffect(ArtifactYouControlCount.instance, ArtifactYouControlCount.instance, Duration.WhileOnBattlefield) - .setText("This creature gets +1/+1 for each artifact you control") + .setText("This token gets +1/+1 for each artifact you control") )); }