hide some reminder text

This commit is contained in:
xenohedron 2024-09-23 18:21:27 -04:00
parent 952da01dbd
commit 6693f75695
13 changed files with 14 additions and 17 deletions

View file

@ -29,7 +29,7 @@ public final class ConductiveMachete extends CardImpl {
this.addAbility(new SimpleStaticAbility(new BoostEquippedEffect(2, 1))); this.addAbility(new SimpleStaticAbility(new BoostEquippedEffect(2, 1)));
// Equip {4} // Equip {4}
this.addAbility(new EquipAbility(4)); this.addAbility(new EquipAbility(4, false));
} }
private ConductiveMachete(final ConductiveMachete card) { private ConductiveMachete(final ConductiveMachete card) {

View file

@ -33,7 +33,7 @@ public final class CursedWindbreaker extends CardImpl {
))); )));
// Equip {3} // Equip {3}
this.addAbility(new EquipAbility(3)); this.addAbility(new EquipAbility(3, false));
} }
private CursedWindbreaker(final CursedWindbreaker card) { private CursedWindbreaker(final CursedWindbreaker card) {

View file

@ -45,7 +45,7 @@ public final class DissectionTools extends CardImpl {
// Equip--Sacrifice a creature. // Equip--Sacrifice a creature.
this.addAbility(new EquipAbility( this.addAbility(new EquipAbility(
Outcome.BoostCreature, new SacrificeTargetCost(StaticFilters.FILTER_PERMANENT_A_CREATURE) Outcome.BoostCreature, new SacrificeTargetCost(StaticFilters.FILTER_PERMANENT_A_CREATURE), false
)); ));
} }

View file

@ -52,7 +52,7 @@ public final class ExperimentalPilot extends CardImpl {
this.toughness = new MageInt(2); this.toughness = new MageInt(2);
// Ward {2} // Ward {2}
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}"))); this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}"), false));
// {U}, Discard two cards: Draft a card from Experimental Pilot's spellbook. // {U}, Discard two cards: Draft a card from Experimental Pilot's spellbook.
Ability ability = new SimpleActivatedAbility( Ability ability = new SimpleActivatedAbility(

View file

@ -40,7 +40,7 @@ public final class JacesSanctum extends CardImpl {
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new SpellsCostReductionControllerEffect(filter, 1))); this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new SpellsCostReductionControllerEffect(filter, 1)));
// Whenever you cast an instant or sorcery spell, scry 1. // Whenever you cast an instant or sorcery spell, scry 1.
this.addAbility(new SpellCastControllerTriggeredAbility(new ScryEffect(1), filter2, false)); this.addAbility(new SpellCastControllerTriggeredAbility(new ScryEffect(1, false), filter2, false));
} }
private JacesSanctum(final JacesSanctum card) { private JacesSanctum(final JacesSanctum card) {

View file

@ -33,7 +33,7 @@ public final class KillersMask extends CardImpl {
))); )));
// Equip {2} // Equip {2}
this.addAbility(new EquipAbility(2)); this.addAbility(new EquipAbility(2, false));
} }
private KillersMask(final KillersMask card) { private KillersMask(final KillersMask card) {

View file

@ -46,7 +46,7 @@ public final class LongRiverLurker extends CardImpl {
this.toughness = new MageInt(3); this.toughness = new MageInt(3);
// Ward {1} // Ward {1}
this.addAbility(new WardAbility(new ManaCostsImpl<>("{1}"))); this.addAbility(new WardAbility(new ManaCostsImpl<>("{1}"), false));
// Other Frogs you control have ward {1}. // Other Frogs you control have ward {1}.
this.addAbility(new SimpleStaticAbility(new GainAbilityControlledEffect( this.addAbility(new SimpleStaticAbility(new GainAbilityControlledEffect(

View file

@ -36,7 +36,7 @@ public final class NashiSearcherInTheDark extends CardImpl {
this.toughness = new MageInt(2); this.toughness = new MageInt(2);
// Menace // Menace
this.addAbility(new MenaceAbility()); this.addAbility(new MenaceAbility(false));
// Whenever Nashi, Searcher in the Dark deals combat damage to a player, you mill that many cards. You may put any number of legendary and/or enchantment cards from among them into your hand. If you put no cards into your hand this way, put a +1/+1 counter on Nashi. // Whenever Nashi, Searcher in the Dark deals combat damage to a player, you mill that many cards. You may put any number of legendary and/or enchantment cards from among them into your hand. If you put no cards into your hand this way, put a +1/+1 counter on Nashi.
this.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(new NashiSearcherInTheDarkEffect())); this.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(new NashiSearcherInTheDarkEffect()));

View file

@ -42,7 +42,7 @@ public final class OracleOfTheAlpha extends CardImpl {
this.addAbility(new EntersBattlefieldTriggeredAbility(new OracleOfTheAlphaEffect())); this.addAbility(new EntersBattlefieldTriggeredAbility(new OracleOfTheAlphaEffect()));
// Whenever Oracle of the Alpha attacks, scry 1. // Whenever Oracle of the Alpha attacks, scry 1.
this.addAbility(new AttacksTriggeredAbility(new ScryEffect(1))); this.addAbility(new AttacksTriggeredAbility(new ScryEffect(1, false)));
} }
private OracleOfTheAlpha(final OracleOfTheAlpha card) { private OracleOfTheAlpha(final OracleOfTheAlpha card) {

View file

@ -31,7 +31,7 @@ public final class ReaperOfTheWilds extends CardImpl {
this.toughness = new MageInt(5); this.toughness = new MageInt(5);
// Whenever another creature dies, scry 1.</i> // Whenever another creature dies, scry 1.</i>
this.addAbility(new DiesCreatureTriggeredAbility(new ScryEffect(1), false, true)); this.addAbility(new DiesCreatureTriggeredAbility(new ScryEffect(1, false), false, true));
// {B}: Reaper of the Wilds gains deathtouch until end of turn. // {B}: Reaper of the Wilds gains deathtouch until end of turn.
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainAbilitySourceEffect(DeathtouchAbility.getInstance(), Duration.EndOfTurn), new ManaCostsImpl<>("{B}"))); this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new GainAbilitySourceEffect(DeathtouchAbility.getInstance(), Duration.EndOfTurn), new ManaCostsImpl<>("{B}")));
// {1}{G}: Reaper of the Wilds gains hexproof until end of turn. // {1}{G}: Reaper of the Wilds gains hexproof until end of turn.

View file

@ -39,7 +39,7 @@ public final class SawbladeSkinripper extends CardImpl {
this.toughness = new MageInt(2); this.toughness = new MageInt(2);
// Menace // Menace
this.addAbility(new MenaceAbility()); this.addAbility(new MenaceAbility(false));
// {2}, Sacrifice another creature or enchantment: Put a +1/+1 counter on Sawblade Skinripper. // {2}, Sacrifice another creature or enchantment: Put a +1/+1 counter on Sawblade Skinripper.
Ability ability = new SimpleActivatedAbility( Ability ability = new SimpleActivatedAbility(

View file

@ -41,7 +41,7 @@ public final class StrengthTestingHammer extends CardImpl {
this.addAbility(ability); this.addAbility(ability);
// Equip {3} // Equip {3}
this.addAbility(new EquipAbility(3)); this.addAbility(new EquipAbility(3, false));
} }
private StrengthTestingHammer(final StrengthTestingHammer card) { private StrengthTestingHammer(final StrengthTestingHammer card) {
@ -100,6 +100,3 @@ class StrengthTestingHammerEffect extends OneShotEffect {
return false; return false;
} }
} }

View file

@ -33,7 +33,7 @@ public final class WinterMisanthropicGuide extends CardImpl {
this.toughness = new MageInt(4); this.toughness = new MageInt(4);
// Ward {2} // Ward {2}
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}"))); this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}"), false));
// At the beginning of your upkeep, each player draws two cards. // At the beginning of your upkeep, each player draws two cards.
this.addAbility(new BeginningOfUpkeepTriggeredAbility( this.addAbility(new BeginningOfUpkeepTriggeredAbility(