mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
[PLC] various text fixes
This commit is contained in:
parent
24478afbe1
commit
27338dc620
7 changed files with 7 additions and 7 deletions
|
@ -26,7 +26,7 @@ import mage.target.common.TargetCardInYourGraveyard;
|
|||
*/
|
||||
public final class DeadwoodTreefolk extends CardImpl {
|
||||
|
||||
private static final FilterCreatureCard filter = new FilterCreatureCard("another creature card from your graveyard");
|
||||
private static final FilterCreatureCard filter = new FilterCreatureCard("another target creature card from your graveyard");
|
||||
static {
|
||||
filter.add(AnotherPredicate.instance);
|
||||
}
|
||||
|
|
|
@ -20,7 +20,7 @@ import mage.filter.common.FilterControlledCreaturePermanent;
|
|||
*/
|
||||
public final class DustElemental extends CardImpl {
|
||||
|
||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent(" creatures you control");
|
||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("creatures you control");
|
||||
|
||||
public DustElemental(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{W}{W}");
|
||||
|
|
|
@ -63,7 +63,7 @@ class ExtirpateEffect extends OneShotEffect {
|
|||
super(Outcome.Exile);
|
||||
this.staticText = "Choose target card in a graveyard other than "
|
||||
+ "a basic land card. Search its owner's graveyard, hand, "
|
||||
+ "and library for any number of cards with the same name "
|
||||
+ "and library for all cards with the same name "
|
||||
+ "as that card and exile them. Then that player shuffles";
|
||||
}
|
||||
|
||||
|
|
|
@ -115,6 +115,6 @@ class P1P1CountersOnControlledCreaturesCount implements DynamicValue {
|
|||
|
||||
@Override
|
||||
public String getMessage() {
|
||||
return "the number of +1/+1 counters on creatures you control";
|
||||
return "+1/+1 counters on creatures you control";
|
||||
}
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@ public final class Groundbreaker extends CardImpl {
|
|||
// Haste
|
||||
this.addAbility(HasteAbility.getInstance());
|
||||
// At the beginning of the end step, sacrifice Groundbreaker.
|
||||
this.addAbility(new BeginningOfEndStepTriggeredAbility(new SacrificeSourceEffect(), TargetController.ANY, false));
|
||||
this.addAbility(new BeginningOfEndStepTriggeredAbility(new SacrificeSourceEffect(), TargetController.NEXT, false));
|
||||
}
|
||||
|
||||
private Groundbreaker(final Groundbreaker card) {
|
||||
|
|
|
@ -51,7 +51,7 @@ class SpellshiftEffect extends OneShotEffect {
|
|||
|
||||
public SpellshiftEffect() {
|
||||
super(Outcome.Detriment);
|
||||
this.staticText = "Its controller reveals cards from the top of their library until they reveal an instant or sorcery card. That player may cast that card without paying its mana cost. Then they shuffle";
|
||||
this.staticText = "Its controller reveals cards from the top of their library until they reveal an instant or sorcery card. That player may cast that card without paying its mana cost. Then the player shuffles";
|
||||
}
|
||||
|
||||
public SpellshiftEffect(final SpellshiftEffect effect) {
|
||||
|
|
|
@ -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 = "TSP"; // check all abilities and output cards with wrong abilities texts;
|
||||
private static final String FULL_ABILITIES_CHECK_SET_CODE = "PLC"; // 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