From 174ccedfaefcfd49148ec639f1e2caaf1ff0d5ac Mon Sep 17 00:00:00 2001 From: theelk801 Date: Thu, 14 Aug 2025 22:28:39 -0400 Subject: [PATCH] [TLE] Implement Explosive Shot --- Mage.Sets/src/mage/cards/e/ExplosiveShot.java | 32 +++++++++++++++++++ .../sets/AvatarTheLastAirbenderEternal.java | 1 + 2 files changed, 33 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/e/ExplosiveShot.java diff --git a/Mage.Sets/src/mage/cards/e/ExplosiveShot.java b/Mage.Sets/src/mage/cards/e/ExplosiveShot.java new file mode 100644 index 00000000000..064c918e829 --- /dev/null +++ b/Mage.Sets/src/mage/cards/e/ExplosiveShot.java @@ -0,0 +1,32 @@ +package mage.cards.e; + +import mage.abilities.effects.common.DamageTargetEffect; +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 ExplosiveShot extends CardImpl { + + public ExplosiveShot(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{1}{R}"); + + // Explosive Shot deals 4 damage to target creature. + this.getSpellAbility().addEffect(new DamageTargetEffect(4)); + this.getSpellAbility().addTarget(new TargetCreaturePermanent()); + } + + private ExplosiveShot(final ExplosiveShot card) { + super(card); + } + + @Override + public ExplosiveShot copy() { + return new ExplosiveShot(this); + } +} diff --git a/Mage.Sets/src/mage/sets/AvatarTheLastAirbenderEternal.java b/Mage.Sets/src/mage/sets/AvatarTheLastAirbenderEternal.java index 8fdb93964ce..c020132b71a 100644 --- a/Mage.Sets/src/mage/sets/AvatarTheLastAirbenderEternal.java +++ b/Mage.Sets/src/mage/sets/AvatarTheLastAirbenderEternal.java @@ -39,6 +39,7 @@ public final class AvatarTheLastAirbenderEternal extends ExpansionSet { cards.add(new SetCardInfo("Eel-Hounds", 250, Rarity.UNCOMMON, mage.cards.e.EelHounds.class)); cards.add(new SetCardInfo("Elephant-Rat", 228, Rarity.COMMON, mage.cards.e.ElephantRat.class)); cards.add(new SetCardInfo("Explore", 259, Rarity.COMMON, mage.cards.e.Explore.class)); + cards.add(new SetCardInfo("Explosive Shot", 236, Rarity.COMMON, mage.cards.e.ExplosiveShot.class)); cards.add(new SetCardInfo("Feed the Swarm", 257, Rarity.COMMON, mage.cards.f.FeedTheSwarm.class)); cards.add(new SetCardInfo("Force of Negation", 13, Rarity.MYTHIC, mage.cards.f.ForceOfNegation.class)); cards.add(new SetCardInfo("Katara, Waterbending Master", 93, Rarity.MYTHIC, mage.cards.k.KataraWaterbendingMaster.class));