mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
[AFC] various text fixes
This commit is contained in:
parent
6e132c999c
commit
4ef8d51a58
5 changed files with 6 additions and 5 deletions
|
@ -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}")
|
||||
));
|
||||
}
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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
|
||||
));
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue