[AFC] various text fixes

This commit is contained in:
Evan Kranzler 2022-03-15 18:59:09 -04:00
parent 6e132c999c
commit 4ef8d51a58
5 changed files with 6 additions and 5 deletions

View file

@ -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}")
));
}

View file

@ -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) {

View file

@ -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
));
}

View file

@ -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.";
}

View file

@ -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