reminder text fixes

This commit is contained in:
xenohedron 2023-10-09 20:49:20 -04:00
parent b8ba2da23e
commit ac20483b73
5 changed files with 5 additions and 5 deletions

View file

@ -29,7 +29,7 @@ public final class ClockworkDroid extends CardImpl {
BecomesExertSourceTriggeredAbility trigger = new BecomesExertSourceTriggeredAbility(
new CantBeBlockedSourceEffect(Duration.EndOfTurn)
);
trigger.addEffect(new ScryEffect(1).concatBy("and"));
trigger.addEffect(new ScryEffect(1, false).concatBy("and you"));
this.addAbility(new ExertAbility(trigger));
}

View file

@ -31,7 +31,7 @@ public final class DalekDrone extends CardImpl {
this.addAbility(FlyingAbility.getInstance());
// Menace
this.addAbility(new MenaceAbility());
this.addAbility(new MenaceAbility(false));
// Exterminate! -- When Dalek Drone enters the battlefield, destroy target creature an opponent controls. That player loses 3 life.
Ability ability = new EntersBattlefieldTriggeredAbility(new DestroyTargetEffect());

View file

@ -23,7 +23,7 @@ public final class DalekSquadron extends CardImpl {
this.toughness = new MageInt(3);
// Menace
this.addAbility(new MenaceAbility());
this.addAbility(new MenaceAbility(false));
// Myriad
this.addAbility(new MyriadAbility());

View file

@ -47,7 +47,7 @@ public final class SonicScrewdriver extends CardImpl {
// {2}, {T}: Scry 1.
ability = new SimpleActivatedAbility(
new ScryEffect(1),
new ScryEffect(1, false),
new GenericManaCost(2)
);
ability.addCost(new TapSourceCost());

View file

@ -63,7 +63,7 @@ public class VerifyCardDataTest {
private static final Logger logger = Logger.getLogger(VerifyCardDataTest.class);
private static final String FULL_ABILITIES_CHECK_SET_CODES = "LTR;LTC;WOC;LCI;LCC;REX"; // check ability text due mtgjson, can use multiple sets like MAT;CMD or * for all
private static final String FULL_ABILITIES_CHECK_SET_CODES = "WHO;LTC;LCI;LCC;REX"; // check ability text due mtgjson, can use multiple sets like MAT;CMD or * for all
private static final boolean CHECK_ONLY_ABILITIES_TEXT = false; // use when checking text locally, suppresses unnecessary checks and output messages
private static final boolean AUTO_FIX_SAMPLE_DECKS = false; // debug only: auto-fix sample decks by test_checkSampleDecks test run