[DFT] Implement Stampeding Scurryfoot

This commit is contained in:
theelk801 2025-01-31 19:26:27 -05:00
parent a6041a371e
commit 9dc08b6dfd
2 changed files with 47 additions and 0 deletions

View file

@ -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);
}
}

View file

@ -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));