From e78806de0816ba564011d874f32baf955e2f5940 Mon Sep 17 00:00:00 2001 From: theelk801 Date: Fri, 9 Jan 2026 12:30:44 -0500 Subject: [PATCH] [ECL] Implement Feed the Flames --- Mage.Sets/src/mage/cards/f/FeedTheFlames.java | 34 +++++++++++++++++++ Mage.Sets/src/mage/sets/LorwynEclipsed.java | 1 + 2 files changed, 35 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/f/FeedTheFlames.java diff --git a/Mage.Sets/src/mage/cards/f/FeedTheFlames.java b/Mage.Sets/src/mage/cards/f/FeedTheFlames.java new file mode 100644 index 00000000000..490f12f43ce --- /dev/null +++ b/Mage.Sets/src/mage/cards/f/FeedTheFlames.java @@ -0,0 +1,34 @@ +package mage.cards.f; + +import mage.abilities.effects.common.DamageTargetEffect; +import mage.abilities.effects.common.ExileTargetIfDiesEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.target.common.TargetCreaturePermanent; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class FeedTheFlames extends CardImpl { + + public FeedTheFlames(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{3}{R}"); + + // Feed the Flames deals 5 damage to target creature. If that creature would die this turn, exile it instead. + this.getSpellAbility().addEffect(new DamageTargetEffect(5)); + this.getSpellAbility().addTarget(new TargetCreaturePermanent()); + this.getSpellAbility().addEffect(new ExileTargetIfDiesEffect()); + } + + private FeedTheFlames(final FeedTheFlames card) { + super(card); + } + + @Override + public FeedTheFlames copy() { + return new FeedTheFlames(this); + } +} diff --git a/Mage.Sets/src/mage/sets/LorwynEclipsed.java b/Mage.Sets/src/mage/sets/LorwynEclipsed.java index 786807f8169..7c5f2618af4 100644 --- a/Mage.Sets/src/mage/sets/LorwynEclipsed.java +++ b/Mage.Sets/src/mage/sets/LorwynEclipsed.java @@ -118,6 +118,7 @@ public final class LorwynEclipsed extends ExpansionSet { cards.add(new SetCardInfo("Enraged Flamecaster", 135, Rarity.COMMON, mage.cards.e.EnragedFlamecaster.class)); cards.add(new SetCardInfo("Evolving Wilds", 264, Rarity.COMMON, mage.cards.e.EvolvingWilds.class)); cards.add(new SetCardInfo("Explosive Prodigy", 136, Rarity.UNCOMMON, mage.cards.e.ExplosiveProdigy.class)); + cards.add(new SetCardInfo("Feed the Flames", 137, Rarity.COMMON, mage.cards.f.FeedTheFlames.class)); cards.add(new SetCardInfo("Feisty Spikeling", 223, Rarity.COMMON, mage.cards.f.FeistySpikeling.class)); cards.add(new SetCardInfo("Figure of Fable", 224, Rarity.RARE, mage.cards.f.FigureOfFable.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Figure of Fable", 372, Rarity.RARE, mage.cards.f.FigureOfFable.class, NON_FULL_USE_VARIOUS));