mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
reminder text fixes
This commit is contained in:
parent
391ddf267b
commit
d431085fe0
7 changed files with 8 additions and 8 deletions
|
|
@ -38,7 +38,7 @@ public final class ArmMountedAnchor extends CardImpl {
|
|||
Ability firstAbility = new SimpleStaticAbility(new BoostEquippedEffect(2, 2));
|
||||
firstAbility.addEffect(new GainAbilityAttachedEffect(
|
||||
new MenaceAbility(), AttachmentType.EQUIPMENT
|
||||
).setText("and has menace. <i>(It can't be blocked except by two or more creatures.)</i>"));
|
||||
).setText("and has menace"));
|
||||
this.addAbility(firstAbility);
|
||||
|
||||
// Whenever equipped creature deals combat damage to a player, draw two cards. Then discard two cards unless you discard a Pirate card.
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ public final class Knife extends CardImpl {
|
|||
this.addAbility(new ClueAbility(true));
|
||||
|
||||
// Equip {2}
|
||||
this.addAbility(new EquipAbility(2));
|
||||
this.addAbility(new EquipAbility(2, false));
|
||||
}
|
||||
|
||||
private Knife(final Knife card) {
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ public final class KrovodHaunch extends CardImpl {
|
|||
));
|
||||
|
||||
// Equip {2}
|
||||
this.addAbility(new EquipAbility(2));
|
||||
this.addAbility(new EquipAbility(2, false));
|
||||
}
|
||||
|
||||
private KrovodHaunch(final KrovodHaunch card) {
|
||||
|
|
|
|||
|
|
@ -41,10 +41,10 @@ public final class KyloxVisionaryInventor extends CardImpl {
|
|||
this.toughness = new MageInt(4);
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(new MenaceAbility(false));
|
||||
|
||||
// Ward {2}
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}")));
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}"), false));
|
||||
|
||||
// Haste
|
||||
this.addAbility(HasteAbility.getInstance());
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ public final class MassacreGirlKnownKiller extends CardImpl {
|
|||
this.toughness = new MageInt(4);
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(new MenaceAbility(false));
|
||||
|
||||
// Creatures you control have wither.
|
||||
this.addAbility(new SimpleStaticAbility(new GainAbilityControlledEffect(
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ public final class SnarlingGorehound extends CardImpl {
|
|||
this.toughness = new MageInt(1);
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(new MenaceAbility(false));
|
||||
|
||||
// Whenever another creature with power 2 or less enters the battlefield under your control, surveil 1.
|
||||
this.addAbility(new EntersBattlefieldControlledTriggeredAbility(new SurveilEffect(1), filter));
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ public final class VeinRipper extends CardImpl {
|
|||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// Ward--Sacrifice a creature.
|
||||
this.addAbility(new WardAbility(new SacrificeTargetCost(StaticFilters.FILTER_CONTROLLED_CREATURE_SHORT_TEXT)));
|
||||
this.addAbility(new WardAbility(new SacrificeTargetCost(StaticFilters.FILTER_CONTROLLED_CREATURE_SHORT_TEXT), false));
|
||||
|
||||
// Whenever a creature dies, target opponent loses 2 life and you gain 2 life.
|
||||
Ability ability = new DiesCreatureTriggeredAbility(new LoseLifeTargetEffect(2), false);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue