mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
fix [WOE] reminder text per verify
This commit is contained in:
parent
2720e41f32
commit
1107fb5770
4 changed files with 4 additions and 4 deletions
|
|
@ -49,7 +49,7 @@ public final class BespokeBattlegarb extends CardImpl {
|
|||
this.addAbility(ability, new CelebrationWatcher());
|
||||
|
||||
// Equip {2}
|
||||
this.addAbility(new EquipAbility(Outcome.BoostCreature, new GenericManaCost(2), false));
|
||||
this.addAbility(new EquipAbility(Outcome.BoostCreature, new GenericManaCost(2)));
|
||||
}
|
||||
|
||||
private BespokeBattlegarb(final BespokeBattlegarb card) {
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ public final class HornedLochWhale extends AdventureCard {
|
|||
this.addAbility(FlashAbility.getInstance());
|
||||
|
||||
// Ward {2}
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}")));
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}"), false));
|
||||
|
||||
// Horned Loch-Whale enters the battlefield tapped unless it's your turn.
|
||||
this.addAbility(new EntersBattlefieldAbility(new ConditionalOneShotEffect(
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public final class OgreChitterlord extends CardImpl {
|
|||
this.toughness = new MageInt(5);
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(new MenaceAbility(false));
|
||||
|
||||
// Whenever Ogre Chitterlord enters the battlefield or attacks, create two 1/1 black Rat creature tokens with "This creature can't block." Then if you control five or more Rats, each Rat you control gets +2/+0 until end of turn.
|
||||
Ability ability = new OrTriggeredAbility(
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ public final class SleepCursedFaerie extends CardImpl {
|
|||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// Ward {2}
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}")));
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}"), false));
|
||||
|
||||
// Sleep-Cursed Faerie enters the battlefield tapped with three stun counters on it.
|
||||
Ability ability = new EntersBattlefieldAbility(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue