mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
reminder text fixes
This commit is contained in:
parent
8853e7d875
commit
8394429a47
12 changed files with 16 additions and 17 deletions
|
|
@ -3,7 +3,6 @@ package mage.cards.a;
|
|||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.AttachedToCreatureSourceTriggeredAbility;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.costs.mana.GenericManaCost;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.CopyEffect;
|
||||
import mage.abilities.effects.common.ExileUntilSourceLeavesEffect;
|
||||
|
|
@ -45,7 +44,7 @@ public final class AssimilationAegis extends CardImpl {
|
|||
this.addAbility(new AttachedToCreatureSourceTriggeredAbility(new AssimilationAegisEffect(), false));
|
||||
|
||||
// Equip {2}
|
||||
this.addAbility(new EquipAbility(Outcome.BoostCreature, new GenericManaCost(2)));
|
||||
this.addAbility(new EquipAbility(2, false));
|
||||
}
|
||||
|
||||
private AssimilationAegis(final AssimilationAegis card) {
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ public final class AureliasVindicator extends CardImpl {
|
|||
this.addAbility(LifelinkAbility.getInstance());
|
||||
|
||||
// Ward {2}
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}")));
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}"), false));
|
||||
|
||||
// Disguise {X}{3}{W}
|
||||
this.addAbility(new DisguiseAbility(this, new ManaCostsImpl<>("{X}{3}{W}")));
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ public final class FblthpLostOnTheRange extends CardImpl {
|
|||
this.toughness = new MageInt(1);
|
||||
|
||||
// Ward {2}
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}")));
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}"), false));
|
||||
|
||||
// You may look at the top card of your library any time.
|
||||
this.addAbility(new SimpleStaticAbility(new LookAtTopCardOfLibraryAnyTimeEffect()));
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ public final class GenerousPlunderer extends CardImpl {
|
|||
this.toughness = new MageInt(2);
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(new MenaceAbility(false));
|
||||
|
||||
// At the beginning of your upkeep, you may create a Treasure token. When you do, target opponent creates a tapped Treasure token.
|
||||
this.addAbility(new BeginningOfUpkeepTriggeredAbility(new GenerousPlundererEffect(), TargetController.YOU, true));
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ public final class HarvesterOfMisery extends CardImpl {
|
|||
this.toughness = new MageInt(4);
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(new MenaceAbility(false));
|
||||
|
||||
// When Harvester of Misery enters the battlefield, other creatures get -2/-2 until end of turn.
|
||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new BoostAllEffect(
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ public final class LootTheKeyToEverything extends CardImpl {
|
|||
this.toughness = new MageInt(2);
|
||||
|
||||
// Ward {1}
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{1}")));
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{1}"), false));
|
||||
|
||||
// At the beginning of your upkeep, exile the top X cards of your library, where X is the number of card types among other nonland permanents you control. You may play those cards this turn.
|
||||
this.addAbility(new BeginningOfUpkeepTriggeredAbility(
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ public final class LostJitte extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
|
||||
// Equip {1}
|
||||
this.addAbility(new EquipAbility(1));
|
||||
this.addAbility(new EquipAbility(1, false));
|
||||
}
|
||||
|
||||
private LostJitte(final LostJitte card) {
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ public final class LotusRing extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
|
||||
// Equip {3}
|
||||
this.addAbility(new EquipAbility(3));
|
||||
this.addAbility(new EquipAbility(3, false));
|
||||
}
|
||||
|
||||
private LotusRing(final LotusRing card) {
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ public final class ObekaSplitterOfSeconds extends CardImpl {
|
|||
this.toughness = new MageInt(5);
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(new MenaceAbility(false));
|
||||
|
||||
// Whenever Obeka, Splitter of Seconds deals combat damage to a player, you get that many additional upkeep steps after this phase.
|
||||
this.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ public final class PreWarFormalwear extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
|
||||
// Equip {3}
|
||||
this.addAbility(new EquipAbility(3));
|
||||
this.addAbility(new EquipAbility(3, false));
|
||||
}
|
||||
|
||||
private PreWarFormalwear(final PreWarFormalwear card) {
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ public final class SatoruTheInfiltrator extends CardImpl {
|
|||
this.toughness = new MageInt(3);
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(new MenaceAbility(false));
|
||||
|
||||
// Whenever Satoru, the Infiltrator and/or one or more other nontoken creatures enter the battlefield under your control, if none of them were cast or no mana was spent to cast them, draw a card.
|
||||
this.addAbility(new SatoruTheInfiltratorTriggeredAbility());
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ public final class SwordOfWealthAndPower extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
|
||||
// Equip {2}
|
||||
this.addAbility(new EquipAbility(2));
|
||||
this.addAbility(new EquipAbility(2, false));
|
||||
}
|
||||
|
||||
private SwordOfWealthAndPower(final SwordOfWealthAndPower card) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue