forked from External/mage
fix reminder text
fix Simic Ascendancy
This commit is contained in:
parent
c129021468
commit
c14fe72c83
8 changed files with 9 additions and 9 deletions
|
|
@ -33,7 +33,7 @@ public final class BloodthornFlail extends CardImpl {
|
|||
new OrCost(
|
||||
"Pay {3} or discard a card",
|
||||
new GenericManaCost(3), new DiscardCardCost()
|
||||
)));
|
||||
), false));
|
||||
}
|
||||
|
||||
private BloodthornFlail(final BloodthornFlail card) {
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ public final class DiamondPickAxe extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
|
||||
// Equip {2}
|
||||
this.addAbility(new EquipAbility(2));
|
||||
this.addAbility(new EquipAbility(2, false));
|
||||
}
|
||||
|
||||
private DiamondPickAxe(final DiamondPickAxe card) {
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ public final class DuskRoseReliquary extends CardImpl {
|
|||
this.getSpellAbility().addCost(new SacrificeTargetCost(new TargetControlledPermanent(StaticFilters.FILTER_CONTROLLED_ARTIFACT_OR_CREATURE_SHORT_TEXT)));
|
||||
|
||||
// Ward {2}
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}")));
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}"), false));
|
||||
|
||||
// When Dusk Rose Reliquary enters the battlefield, exile target artifact or creature an opponent controls until Dusk Rose Reliquary leaves the battlefield.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new ExileUntilSourceLeavesEffect());
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ public final class GlowcapLantern extends CardImpl {
|
|||
this.addAbility(ability);
|
||||
|
||||
// Equip {2}
|
||||
this.addAbility(new EquipAbility(Outcome.BoostCreature, new GenericManaCost(2)));
|
||||
this.addAbility(new EquipAbility(Outcome.BoostCreature, new GenericManaCost(2), false));
|
||||
}
|
||||
|
||||
private GlowcapLantern(final GlowcapLantern card) {
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ public final class HulkingRaptor extends CardImpl {
|
|||
this.toughness = new MageInt(3);
|
||||
|
||||
// Ward {2}
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}")));
|
||||
this.addAbility(new WardAbility(new ManaCostsImpl<>("{2}"), false));
|
||||
|
||||
// At the beginning of your precombat main phase, add {G}{G}.
|
||||
this.addAbility(new BeginningOfPreCombatMainTriggeredAbility(
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ public final class RuinLurkerBat extends CardImpl {
|
|||
|
||||
// At the beginning of your end step, if you descended this turn, scry 1.
|
||||
this.addAbility(new BeginningOfEndStepTriggeredAbility(
|
||||
new ScryEffect(1), TargetController.YOU,
|
||||
new ScryEffect(1, false), TargetController.YOU,
|
||||
DescendedThisTurnCondition.instance, false
|
||||
).addHint(DescendedThisTurnCount.getHint()), new DescendedWatcher());
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ import mage.counters.CounterType;
|
|||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
import mage.target.common.TargetControlledCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
|
@ -34,7 +34,7 @@ public final class SimicAscendancy extends CardImpl {
|
|||
|
||||
// {1}{G}{U}: Put a +1/+1 counter on target creature you control.
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new AddCountersTargetEffect(CounterType.P1P1.createInstance()), new ManaCostsImpl<>("{1}{G}{U}"));
|
||||
ability.addTarget(new TargetCreaturePermanent());
|
||||
ability.addTarget(new TargetControlledCreaturePermanent());
|
||||
this.addAbility(ability);
|
||||
|
||||
// Whenever one or more +1/+1 counters are put on a creature you control, put that many growth counters on Simic Ascendancy.
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ public final class TarriansSoulcleaver extends CardImpl {
|
|||
));
|
||||
|
||||
// Equip {2}
|
||||
this.addAbility(new EquipAbility(Outcome.BoostCreature, new GenericManaCost(2)));
|
||||
this.addAbility(new EquipAbility(Outcome.BoostCreature, new GenericManaCost(2), false));
|
||||
}
|
||||
|
||||
private TarriansSoulcleaver(final TarriansSoulcleaver card) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue