From d8137e7e05140f2e1a1c65973c5f87cf1fe6eeb3 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Thu, 3 Mar 2022 09:19:17 -0500 Subject: [PATCH] [M21] a few text fixes --- Mage.Sets/src/mage/cards/w/WardenOfTheWoods.java | 3 +-- Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java | 2 +- .../mage/abilities/effects/common/ChooseACardNameEffect.java | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Mage.Sets/src/mage/cards/w/WardenOfTheWoods.java b/Mage.Sets/src/mage/cards/w/WardenOfTheWoods.java index 4091621422b..001903736c0 100644 --- a/Mage.Sets/src/mage/cards/w/WardenOfTheWoods.java +++ b/Mage.Sets/src/mage/cards/w/WardenOfTheWoods.java @@ -33,8 +33,7 @@ public final class WardenOfTheWoods extends CardImpl { new DrawCardSourceControllerEffect(2), StaticFilters.FILTER_SPELL_OR_ABILITY_OPPONENTS, SetTargetPointer.NONE, true - )); - + ).setTriggerPhrase("Whenever {this} becomes the target of a spell or ability an opponent controls, ")); } private WardenOfTheWoods(final WardenOfTheWoods card) { diff --git a/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java b/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java index f5036693b9d..b429833eff2 100644 --- a/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java +++ b/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java @@ -62,7 +62,7 @@ public class VerifyCardDataTest { private static final Logger logger = Logger.getLogger(VerifyCardDataTest.class); - private static final String FULL_ABILITIES_CHECK_SET_CODE = "THB"; // check all abilities and output cards with wrong abilities texts; + private static final String FULL_ABILITIES_CHECK_SET_CODE = "M21"; // check all abilities and output cards with wrong abilities texts; private static final boolean AUTO_FIX_SAMPLE_DECKS = false; // debug only: auto-fix sample decks by test_checkSampleDecks test run private static final boolean ONLY_TEXT = false; // use when checking text locally, suppresses unnecessary checks and output messages diff --git a/Mage/src/main/java/mage/abilities/effects/common/ChooseACardNameEffect.java b/Mage/src/main/java/mage/abilities/effects/common/ChooseACardNameEffect.java index 9bcb1fb6cd9..111761e43b3 100644 --- a/Mage/src/main/java/mage/abilities/effects/common/ChooseACardNameEffect.java +++ b/Mage/src/main/java/mage/abilities/effects/common/ChooseACardNameEffect.java @@ -25,7 +25,7 @@ public class ChooseACardNameEffect extends OneShotEffect { public enum TypeOfName { ALL("card name", CardRepository.instance::getNames), - NOT_BASIC_LAND_NAME("card name other than a basic land card", CardRepository.instance::getNotBasicLandNames), + NOT_BASIC_LAND_NAME("card name other than a basic land card name", CardRepository.instance::getNotBasicLandNames), NONBASIC_LAND_NAME("nonbasic land card name", CardRepository.instance::getNonbasicLandNames), NON_ARTIFACT_AND_NON_LAND_NAME("nonartifact, nonland card name", CardRepository.instance::getNonArtifactAndNonLandNames), NON_LAND_AND_NON_CREATURE_NAME("nonland and non creature name", CardRepository.instance::getNonLandAndNonCreatureNames),