mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
fix some reminder text
This commit is contained in:
parent
4b9e9ff832
commit
5a8c55338e
4 changed files with 5 additions and 5 deletions
|
|
@ -56,7 +56,7 @@ public final class ArnaKennerudSkycaptain extends CardImpl {
|
||||||
this.addAbility(LifelinkAbility.getInstance());
|
this.addAbility(LifelinkAbility.getInstance());
|
||||||
|
|
||||||
// Ward--Discard a card.
|
// Ward--Discard a card.
|
||||||
this.addAbility(new WardAbility(new DiscardCardCost()));
|
this.addAbility(new WardAbility(new DiscardCardCost(), false));
|
||||||
|
|
||||||
// Whenever a modified creature you control attacks, double the number of each kind of counter on it. Then for each nontoken permanent attached to it, create a token that's a copy of that permanent attached to that creature.
|
// Whenever a modified creature you control attacks, double the number of each kind of counter on it. Then for each nontoken permanent attached to it, create a token that's a copy of that permanent attached to that creature.
|
||||||
this.addAbility(new AttacksCreatureYouControlTriggeredAbility(
|
this.addAbility(new AttacksCreatureYouControlTriggeredAbility(
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@ public final class HiddenBlade extends CardImpl {
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
|
|
||||||
// Equip {2}
|
// Equip {2}
|
||||||
this.addAbility(new EquipAbility(2));
|
this.addAbility(new EquipAbility(2, false));
|
||||||
}
|
}
|
||||||
|
|
||||||
private HiddenBlade(final HiddenBlade card) {
|
private HiddenBlade(final HiddenBlade card) {
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,7 @@ public final class SatyaAetherfluxGenius extends CardImpl {
|
||||||
this.toughness = new MageInt(5);
|
this.toughness = new MageInt(5);
|
||||||
|
|
||||||
// Menace
|
// Menace
|
||||||
this.addAbility(new MenaceAbility());
|
this.addAbility(new MenaceAbility(false));
|
||||||
|
|
||||||
// Haste
|
// Haste
|
||||||
this.addAbility(HasteAbility.getInstance());
|
this.addAbility(HasteAbility.getInstance());
|
||||||
|
|
@ -144,4 +144,4 @@ class SatyaAetherfluxGeniusSacrificeEffect extends OneShotEffect {
|
||||||
.apply(game, source);
|
.apply(game, source);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ public final class TheSpearOfLeonidas extends CardImpl {
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
|
|
||||||
// Equip {2}
|
// Equip {2}
|
||||||
this.addAbility(new EquipAbility(2));
|
this.addAbility(new EquipAbility(2, false));
|
||||||
}
|
}
|
||||||
|
|
||||||
private TheSpearOfLeonidas(final TheSpearOfLeonidas card) {
|
private TheSpearOfLeonidas(final TheSpearOfLeonidas card) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue