mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 20:11:59 -08:00
fix some reminder text
This commit is contained in:
parent
4b9176394f
commit
2118570a0d
13 changed files with 15 additions and 15 deletions
|
|
@ -39,7 +39,7 @@ public final class AyaOfAlexandria extends CardImpl {
|
|||
this.toughness = new MageInt(3);
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(new MenaceAbility(false));
|
||||
|
||||
// Lifelink
|
||||
this.addAbility(LifelinkAbility.getInstance());
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ public final class BywayBarterer extends CardImpl {
|
|||
this.toughness = new MageInt(3);
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(new MenaceAbility(false));
|
||||
|
||||
// Whenever you expend 4, you may discard your hand. If you do, draw two cards.
|
||||
this.addAbility(new ExpendTriggeredAbility(new DoIfCostPaid(
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ public final class Chainsaw extends CardImpl {
|
|||
this.addAbility(new SimpleStaticAbility(new BoostEquippedEffect(xValue, StaticValue.get(0))));
|
||||
|
||||
// Equip {3}
|
||||
this.addAbility(new EquipAbility(3));
|
||||
this.addAbility(new EquipAbility(3, false));
|
||||
}
|
||||
|
||||
private Chainsaw(final Chainsaw card) {
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ public final class DesmondMiles extends CardImpl {
|
|||
this.toughness = new MageInt(3);
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(new MenaceAbility(false));
|
||||
|
||||
// Desmond Miles gets +1/+0 for each other Assassin you control and each Assassin card in your graveyard.
|
||||
Ability ability = new SimpleStaticAbility(new BoostSourceEffect(assassinsCount, StaticValue.get(0), Duration.WhileOnBattlefield)
|
||||
|
|
@ -97,4 +97,4 @@ class DesmondMilesEffect extends OneShotEffect {
|
|||
int xValue = amount.calculate(game, source, this);
|
||||
return player.surveil(xValue, source, game);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ public final class FrilledSparkshooter extends CardImpl {
|
|||
this.toughness = new MageInt(3);
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(new MenaceAbility(false));
|
||||
|
||||
// Reach
|
||||
this.addAbility(ReachAbility.getInstance());
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ public final class HuntersBow extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
|
||||
// Equip {1}
|
||||
this.addAbility(new EquipAbility(1));
|
||||
this.addAbility(new EquipAbility(1, false));
|
||||
}
|
||||
|
||||
private HuntersBow(final HuntersBow card) {
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ public final class HuskbursterSwarm extends CardImpl {
|
|||
).setRuleAtTheTop(true).addHint(HuskbursterSwarmValue.getHint()));
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(new MenaceAbility(false));
|
||||
|
||||
// Deathtouch
|
||||
this.addAbility(DeathtouchAbility.getInstance());
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ public final class MahaItsFeathersNight extends CardImpl {
|
|||
this.addAbility(TrampleAbility.getInstance());
|
||||
|
||||
// Ward--Discard a card.
|
||||
this.addAbility(new WardAbility(new DiscardCardCost()));
|
||||
this.addAbility(new WardAbility(new DiscardCardCost(), false));
|
||||
|
||||
// Creatures your opponents control have base toughness 1.
|
||||
this.addAbility(new SimpleStaticAbility(new MahaItsFeathersNightEffect()));
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ public final class RavenClanWarAxe extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
|
||||
// Equip {2}
|
||||
this.addAbility(new EquipAbility(2));
|
||||
this.addAbility(new EquipAbility(2, false));
|
||||
}
|
||||
|
||||
private RavenClanWarAxe(final RavenClanWarAxe card) {
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ public final class StarforgedSword extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
|
||||
// Equip {3}
|
||||
this.addAbility(new EquipAbility(3));
|
||||
this.addAbility(new EquipAbility(3, false));
|
||||
}
|
||||
|
||||
private StarforgedSword(final StarforgedSword card) {
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ public final class TeapotSlinger extends CardImpl {
|
|||
this.toughness = new MageInt(4);
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(new MenaceAbility(false));
|
||||
|
||||
// Whenever you expend 4, Teapot Slinger deals 2 damage to each opponent.
|
||||
this.addAbility(new ExpendTriggeredAbility(
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ public final class TidecallerMentor extends CardImpl {
|
|||
this.toughness = new MageInt(3);
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(new MenaceAbility(false));
|
||||
|
||||
// Threshold -- When Tidecaller Mentor enters, if seven or more cards are in your graveyard, return up to one target nonland permanent to its owner's hand.
|
||||
Ability ability = new ConditionalInterveningIfTriggeredAbility(
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ public final class ValleyRotcaller extends CardImpl {
|
|||
this.toughness = new MageInt(3);
|
||||
|
||||
// Menace
|
||||
this.addAbility(new MenaceAbility());
|
||||
this.addAbility(new MenaceAbility(false));
|
||||
|
||||
// Whenever Valley Rotcaller attacks, each opponent loses X life and you gain X life, where X is the number of other Squirrels, Bats, Lizards, and Rats you control.
|
||||
Ability ability = new AttacksTriggeredAbility(new LoseLifeOpponentsEffect(xValue)
|
||||
|
|
@ -59,7 +59,7 @@ public final class ValleyRotcaller extends CardImpl {
|
|||
xValue, "and you gain X life, where X is the number " +
|
||||
"of other Squirrels, Bats, Lizards, and Rats you control"
|
||||
));
|
||||
this.addAbility(ability);
|
||||
this.addAbility(ability.addHint(hint));
|
||||
}
|
||||
|
||||
private ValleyRotcaller(final ValleyRotcaller card) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue