mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
[M21] a few text fixes
This commit is contained in:
parent
0d3c4a946b
commit
d8137e7e05
3 changed files with 3 additions and 4 deletions
|
@ -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) {
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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),
|
||||
|
|
Loading…
Reference in a new issue