From 107640f784fa6d6289ea7e319e7309d8022c7a69 Mon Sep 17 00:00:00 2001 From: theelk801 Date: Tue, 6 Jan 2026 21:17:07 -0500 Subject: [PATCH] [ECL] Implement Gangly Stompling --- .../src/mage/cards/g/GanglyStompling.java | 40 +++++++++++++++++++ Mage.Sets/src/mage/sets/LorwynEclipsed.java | 1 + 2 files changed, 41 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/g/GanglyStompling.java diff --git a/Mage.Sets/src/mage/cards/g/GanglyStompling.java b/Mage.Sets/src/mage/cards/g/GanglyStompling.java new file mode 100644 index 00000000000..23dadd11a29 --- /dev/null +++ b/Mage.Sets/src/mage/cards/g/GanglyStompling.java @@ -0,0 +1,40 @@ +package mage.cards.g; + +import mage.MageInt; +import mage.abilities.keyword.ChangelingAbility; +import mage.abilities.keyword.TrampleAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class GanglyStompling extends CardImpl { + + public GanglyStompling(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}"); + + this.subtype.add(SubType.SHAPESHIFTER); + this.power = new MageInt(4); + this.toughness = new MageInt(2); + + // Changeling + this.addAbility(new ChangelingAbility()); + + // Trample + this.addAbility(TrampleAbility.getInstance()); + } + + private GanglyStompling(final GanglyStompling card) { + super(card); + } + + @Override + public GanglyStompling copy() { + return new GanglyStompling(this); + } +} diff --git a/Mage.Sets/src/mage/sets/LorwynEclipsed.java b/Mage.Sets/src/mage/sets/LorwynEclipsed.java index 901bc08ea88..3fc50d69079 100644 --- a/Mage.Sets/src/mage/sets/LorwynEclipsed.java +++ b/Mage.Sets/src/mage/sets/LorwynEclipsed.java @@ -66,6 +66,7 @@ public final class LorwynEclipsed extends ExpansionSet { cards.add(new SetCardInfo("Forest", 283, Rarity.LAND, mage.cards.basiclands.Forest.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Formidable Speaker", 176, Rarity.RARE, mage.cards.f.FormidableSpeaker.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Formidable Speaker", 366, Rarity.RARE, mage.cards.f.FormidableSpeaker.class, NON_FULL_USE_VARIOUS)); + cards.add(new SetCardInfo("Gangly Stompling", 226, Rarity.COMMON, mage.cards.g.GanglyStompling.class)); cards.add(new SetCardInfo("Goatnap", 142, Rarity.UNCOMMON, mage.cards.g.Goatnap.class)); cards.add(new SetCardInfo("Hallowed Fountain", "347b", Rarity.RARE, mage.cards.h.HallowedFountain.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Hallowed Fountain", 265, Rarity.RARE, mage.cards.h.HallowedFountain.class, NON_FULL_USE_VARIOUS));