diff --git a/Mage.Sets/src/mage/cards/d/DeathTyrant.java b/Mage.Sets/src/mage/cards/d/DeathTyrant.java index c41d2a17c76..87cf6a9c356 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 2f4bea22323..e62853cb08b 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 3309514180d..023d77b3286 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 0a4786619d6..8c5d663bfc0 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 a700bca2eee..230274e6b05 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