From e66ed56ac89a73bd107e120183f9bead792d6630 Mon Sep 17 00:00:00 2001 From: theelk801 Date: Tue, 27 May 2025 15:42:47 -0400 Subject: [PATCH] [FIN] Implement Aerith Rescue Mission --- .../src/mage/cards/a/AerithRescueMission.java | 45 +++++++++++++++++++ Mage.Sets/src/mage/sets/FinalFantasy.java | 1 + 2 files changed, 46 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/a/AerithRescueMission.java diff --git a/Mage.Sets/src/mage/cards/a/AerithRescueMission.java b/Mage.Sets/src/mage/cards/a/AerithRescueMission.java new file mode 100644 index 00000000000..f63fd779d57 --- /dev/null +++ b/Mage.Sets/src/mage/cards/a/AerithRescueMission.java @@ -0,0 +1,45 @@ +package mage.cards.a; + +import mage.abilities.Mode; +import mage.abilities.effects.common.CreateTokenEffect; +import mage.abilities.effects.common.TapTargetEffect; +import mage.abilities.effects.common.counter.AddCountersTargetEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.counters.CounterType; +import mage.game.permanent.token.HeroToken; +import mage.target.common.TargetCreaturePermanent; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class AerithRescueMission extends CardImpl { + + public AerithRescueMission(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}{W}"); + + // Choose one-- + // * Take the Elevator -- Create three 1/1 colorless Hero creature tokens. + this.getSpellAbility().addEffect(new CreateTokenEffect(new HeroToken(), 3)); + this.getSpellAbility().withFirstModeFlavorWord("Take the Elevator"); + + // * Take 59 Flights of Stairs -- Tap up to three target creatures. Put a stun counter on one of them. + this.getSpellAbility().addMode(new Mode(new TapTargetEffect()) + .addEffect(new AddCountersTargetEffect(CounterType.STUN.createInstance()) + .setText("Put a stun counter on one of them")) + .addTarget(new TargetCreaturePermanent(0, 3)) + .withFlavorWord("Take 59 Flights of Stairs")); + } + + private AerithRescueMission(final AerithRescueMission card) { + super(card); + } + + @Override + public AerithRescueMission copy() { + return new AerithRescueMission(this); + } +} diff --git a/Mage.Sets/src/mage/sets/FinalFantasy.java b/Mage.Sets/src/mage/sets/FinalFantasy.java index 282735d6558..d5a68ced6b7 100644 --- a/Mage.Sets/src/mage/sets/FinalFantasy.java +++ b/Mage.Sets/src/mage/sets/FinalFantasy.java @@ -35,6 +35,7 @@ public final class FinalFantasy extends ExpansionSet { cards.add(new SetCardInfo("Aerith Gainsborough", 4, Rarity.RARE, mage.cards.a.AerithGainsborough.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Aerith Gainsborough", 423, Rarity.RARE, mage.cards.a.AerithGainsborough.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Aerith Gainsborough", 519, Rarity.RARE, mage.cards.a.AerithGainsborough.class, NON_FULL_USE_VARIOUS)); + cards.add(new SetCardInfo("Aerith Rescue Mission", 5, Rarity.COMMON, mage.cards.a.AerithRescueMission.class)); cards.add(new SetCardInfo("Aettir and Priwen", 253, Rarity.MYTHIC, mage.cards.a.AettirAndPriwen.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Aettir and Priwen", 350, Rarity.MYTHIC, mage.cards.a.AettirAndPriwen.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Ahriman", 87, Rarity.COMMON, mage.cards.a.Ahriman.class));