forked from External/mage
hide some reminder text
This commit is contained in:
parent
952da01dbd
commit
6693f75695
13 changed files with 14 additions and 17 deletions
|
|
@ -29,7 +29,7 @@ public final class ConductiveMachete extends CardImpl {
|
|||
this.addAbility(new SimpleStaticAbility(new BoostEquippedEffect(2, 1)));
|
||||
|
||||
// Equip {4}
|
||||
this.addAbility(new EquipAbility(4));
|
||||
this.addAbility(new EquipAbility(4, false));
|
||||
}
|
||||
|
||||
private ConductiveMachete(final ConductiveMachete card) {
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ public final class CursedWindbreaker extends CardImpl {
|
|||
)));
|
||||
|
||||
// Equip {3}
|
||||
this.addAbility(new EquipAbility(3));
|
||||
this.addAbility(new EquipAbility(3, false));
|
||||
}
|
||||
|
||||
private CursedWindbreaker(final CursedWindbreaker card) {
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ public final class DissectionTools extends CardImpl {
|
|||
|
||||
// Equip--Sacrifice a creature.
|
||||
this.addAbility(new EquipAbility(
|
||||
Outcome.BoostCreature, new SacrificeTargetCost(StaticFilters.FILTER_PERMANENT_A_CREATURE)
|
||||
Outcome.BoostCreature, new SacrificeTargetCost(StaticFilters.FILTER_PERMANENT_A_CREATURE), false
|
||||
));
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ public final class ExperimentalPilot extends CardImpl {
|
|||
this.toughness = new MageInt(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.
|
||||
Ability ability = new SimpleActivatedAbility(
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ public final class JacesSanctum extends CardImpl {
|
|||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new SpellsCostReductionControllerEffect(filter, 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) {
|
||||
|
|
@ -51,4 +51,4 @@ public final class JacesSanctum extends CardImpl {
|
|||
public JacesSanctum copy() {
|
||||
return new JacesSanctum(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ public final class KillersMask extends CardImpl {
|
|||
)));
|
||||
|
||||
// Equip {2}
|
||||
this.addAbility(new EquipAbility(2));
|
||||
this.addAbility(new EquipAbility(2, false));
|
||||
}
|
||||
|
||||
private KillersMask(final KillersMask card) {
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ public final class LongRiverLurker extends CardImpl {
|
|||
this.toughness = new MageInt(3);
|
||||
|
||||
// Ward {1}
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{1}")));
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{1}"), false));
|
||||
|
||||
// Other Frogs you control have ward {1}.
|
||||
this.addAbility(new SimpleStaticAbility(new GainAbilityControlledEffect(
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ public final class NashiSearcherInTheDark extends CardImpl {
|
|||
this.toughness = new MageInt(2);
|
||||
|
||||
// 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.
|
||||
this.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(new NashiSearcherInTheDarkEffect()));
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ public final class OracleOfTheAlpha extends CardImpl {
|
|||
this.addAbility(new EntersBattlefieldTriggeredAbility(new OracleOfTheAlphaEffect()));
|
||||
|
||||
// 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) {
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ public final class ReaperOfTheWilds extends CardImpl {
|
|||
this.toughness = new MageInt(5);
|
||||
|
||||
// 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.
|
||||
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.
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ public final class SawbladeSkinripper extends CardImpl {
|
|||
this.toughness = new MageInt(2);
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(new MenaceAbility(false));
|
||||
|
||||
// {2}, Sacrifice another creature or enchantment: Put a +1/+1 counter on Sawblade Skinripper.
|
||||
Ability ability = new SimpleActivatedAbility(
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ public final class StrengthTestingHammer extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
|
||||
// Equip {3}
|
||||
this.addAbility(new EquipAbility(3));
|
||||
this.addAbility(new EquipAbility(3, false));
|
||||
}
|
||||
|
||||
private StrengthTestingHammer(final StrengthTestingHammer card) {
|
||||
|
|
@ -100,6 +100,3 @@ class StrengthTestingHammerEffect extends OneShotEffect {
|
|||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ public final class WinterMisanthropicGuide extends CardImpl {
|
|||
this.toughness = new MageInt(4);
|
||||
|
||||
// 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.
|
||||
this.addAbility(new BeginningOfUpkeepTriggeredAbility(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue