From 4ef8d51a581692af33c1440e08c337971ca24612 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Tue, 15 Mar 2022 18:59:09 -0400 Subject: [PATCH] [AFC] various text fixes --- Mage.Sets/src/mage/cards/d/DeathTyrant.java | 2 +- Mage.Sets/src/mage/cards/s/ShareTheSpoils.java | 3 ++- Mage.Sets/src/mage/cards/v/VrondissRageOfAncients.java | 2 +- Mage.Sets/src/mage/cards/w/WildEndeavor.java | 2 +- Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Mage.Sets/src/mage/cards/d/DeathTyrant.java b/Mage.Sets/src/mage/cards/d/DeathTyrant.java index c41d2a17c7..87cf6a9c35 100644 --- a/Mage.Sets/src/mage/cards/d/DeathTyrant.java +++ b/Mage.Sets/src/mage/cards/d/DeathTyrant.java @@ -42,7 +42,7 @@ public final class DeathTyrant extends CardImpl { // {5}{B}: Return Death Tyrant from your graveyard to the battlefield tapped. this.addAbility(new SimpleActivatedAbility( - Zone.GRAVEYARD, new ReturnSourceFromGraveyardToBattlefieldEffect(true), + Zone.GRAVEYARD, new ReturnSourceFromGraveyardToBattlefieldEffect(true, false), new ManaCostsImpl<>("{5}{B}") )); } diff --git a/Mage.Sets/src/mage/cards/s/ShareTheSpoils.java b/Mage.Sets/src/mage/cards/s/ShareTheSpoils.java index 2f4bea2232..e62853cb08 100644 --- a/Mage.Sets/src/mage/cards/s/ShareTheSpoils.java +++ b/Mage.Sets/src/mage/cards/s/ShareTheSpoils.java @@ -155,7 +155,8 @@ class ShareTheSpoilsPlayExiledCardEffect extends AsThoughEffectImpl { super(AsThoughEffectType.PLAY_FROM_NOT_OWN_HAND_ZONE, Duration.WhileOnBattlefield, Outcome.PutCardInPlay); staticText = "During each player's turn, " + "that player may play a land or cast a spell from among cards exiled with {this}, " + - "and they may spend mana as though it were mana of any color to cast that spell"; + "and they may spend mana as though it were mana of any color to cast that spell. " + + "When they do, exile the top card of their library."; } private ShareTheSpoilsPlayExiledCardEffect(final ShareTheSpoilsPlayExiledCardEffect effect) { diff --git a/Mage.Sets/src/mage/cards/v/VrondissRageOfAncients.java b/Mage.Sets/src/mage/cards/v/VrondissRageOfAncients.java index 3309514180..023d77b328 100644 --- a/Mage.Sets/src/mage/cards/v/VrondissRageOfAncients.java +++ b/Mage.Sets/src/mage/cards/v/VrondissRageOfAncients.java @@ -35,7 +35,7 @@ public final class VrondissRageOfAncients extends CardImpl { // Whenever you roll one or more dice, you may have Vrondiss, Rage of Ancients deal 1 damage to itself. this.addAbility(new OneOrMoreDiceRolledTriggeredAbility( - new DamageSelfEffect(1).setText("{this} deal 1 damage to itself"), true + new DamageSelfEffect(1).setText("have {this} deal 1 damage to itself"), true )); } diff --git a/Mage.Sets/src/mage/cards/w/WildEndeavor.java b/Mage.Sets/src/mage/cards/w/WildEndeavor.java index 0a4786619d..8c5d663bfc 100644 --- a/Mage.Sets/src/mage/cards/w/WildEndeavor.java +++ b/Mage.Sets/src/mage/cards/w/WildEndeavor.java @@ -50,7 +50,7 @@ class WildEndeavorEffect extends OneShotEffect { WildEndeavorEffect() { super(Outcome.PutCardInPlay); this.staticText = "Roll two d4 and choose one result. " + - "Create a number of 3/3 green Beast creature tokens equal to that result." + + "Create a number of 3/3 green Beast creature tokens equal to that result. " + "Then search your library for a number of basic land cards " + "equal to the other result, put them onto the battlefield tapped, then shuffle."; } diff --git a/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java b/Mage.Verify/src/test/java/mage/verify/VerifyCardDataTest.java index a700bca2ee..230274e6b0 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 = "ROE"; // check all abilities and output cards with wrong abilities texts; + private static final String FULL_ABILITIES_CHECK_SET_CODE = "AFC"; // 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