diff --git a/Mage.Sets/src/mage/cards/s/StampedingScurryfoot.java b/Mage.Sets/src/mage/cards/s/StampedingScurryfoot.java new file mode 100644 index 00000000000..c7c97746a1b --- /dev/null +++ b/Mage.Sets/src/mage/cards/s/StampedingScurryfoot.java @@ -0,0 +1,46 @@ +package mage.cards.s; + +import mage.MageInt; +import mage.abilities.Ability; +import mage.abilities.costs.mana.ManaCostsImpl; +import mage.abilities.effects.common.CreateTokenEffect; +import mage.abilities.effects.common.counter.AddCountersSourceEffect; +import mage.abilities.keyword.ExhaustAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; +import mage.counters.CounterType; +import mage.game.permanent.token.ElephantToken; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class StampedingScurryfoot extends CardImpl { + + public StampedingScurryfoot(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{G}"); + + this.subtype.add(SubType.MOUSE); + this.power = new MageInt(1); + this.toughness = new MageInt(1); + + // Exhaust -- {3}{G}: Put a +1/+1 counter on this creature. Create a 3/3 green Elephant creature token. + Ability ability = new ExhaustAbility( + new AddCountersSourceEffect(CounterType.P1P1.createInstance()), new ManaCostsImpl<>("{3}{G}") + ); + ability.addEffect(new CreateTokenEffect(new ElephantToken())); + this.addAbility(ability); + } + + private StampedingScurryfoot(final StampedingScurryfoot card) { + super(card); + } + + @Override + public StampedingScurryfoot copy() { + return new StampedingScurryfoot(this); + } +} diff --git a/Mage.Sets/src/mage/sets/Aetherdrift.java b/Mage.Sets/src/mage/sets/Aetherdrift.java index 5687d706683..eb52f1504df 100644 --- a/Mage.Sets/src/mage/sets/Aetherdrift.java +++ b/Mage.Sets/src/mage/sets/Aetherdrift.java @@ -167,6 +167,7 @@ public final class Aetherdrift extends ExpansionSet { cards.add(new SetCardInfo("Spell Pierce", 64, Rarity.UNCOMMON, mage.cards.s.SpellPierce.class)); cards.add(new SetCardInfo("Spin Out", 106, Rarity.COMMON, mage.cards.s.SpinOut.class)); cards.add(new SetCardInfo("Spotcycle Scouter", 30, Rarity.COMMON, mage.cards.s.SpotcycleScouter.class)); + cards.add(new SetCardInfo("Stampeding Scurryfoot", 181, Rarity.COMMON, mage.cards.s.StampedingScurryfoot.class)); cards.add(new SetCardInfo("Starting Column", 244, Rarity.COMMON, mage.cards.s.StartingColumn.class)); cards.add(new SetCardInfo("Stock Up", 67, Rarity.UNCOMMON, mage.cards.s.StockUp.class)); cards.add(new SetCardInfo("Streaking Oilgorger", 107, Rarity.COMMON, mage.cards.s.StreakingOilgorger.class));