[BLC] Implement Steelburr Champion

This commit is contained in:
theelk801 2024-07-19 12:23:29 -04:00
parent 2a39589dd3
commit e9426eaf2e
2 changed files with 53 additions and 0 deletions

View file

@ -0,0 +1,52 @@
package mage.cards.s;
import mage.MageInt;
import mage.abilities.common.SpellCastOpponentTriggeredAbility;
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
import mage.abilities.keyword.OffspringAbility;
import mage.abilities.keyword.VigilanceAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.counters.CounterType;
import mage.filter.StaticFilters;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class SteelburrChampion extends CardImpl {
public SteelburrChampion(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{W}");
this.subtype.add(SubType.MOUSE);
this.subtype.add(SubType.SOLDIER);
this.power = new MageInt(1);
this.toughness = new MageInt(1);
// Offspring {1}{W}
this.addAbility(new OffspringAbility("{1}{W}"));
// Vigilance
this.addAbility(VigilanceAbility.getInstance());
// Whenever an opponent casts a noncreature spell, put a +1/+1 counter on this creature.
this.addAbility(new SpellCastOpponentTriggeredAbility(
new AddCountersSourceEffect(CounterType.P1P1.createInstance())
.setText("put a +1/+1 counter on this creature"),
StaticFilters.FILTER_SPELL_A_NON_CREATURE, false
));
}
private SteelburrChampion(final SteelburrChampion card) {
super(card);
}
@Override
public SteelburrChampion copy() {
return new SteelburrChampion(this);
}
}

View file

@ -70,6 +70,7 @@ public final class BloomburrowCommander extends ExpansionSet {
cards.add(new SetCardInfo("Second Harvest", 123, Rarity.RARE, mage.cards.s.SecondHarvest.class));
cards.add(new SetCardInfo("Sol Ring", 129, Rarity.UNCOMMON, mage.cards.s.SolRing.class));
cards.add(new SetCardInfo("Squirrel Mob", 85, Rarity.RARE, mage.cards.s.SquirrelMob.class));
cards.add(new SetCardInfo("Steelburr Champion", 12, Rarity.RARE, mage.cards.s.SteelburrChampion.class));
cards.add(new SetCardInfo("Sunbird's Invocation", 116, Rarity.RARE, mage.cards.s.SunbirdsInvocation.class));
cards.add(new SetCardInfo("Swarmyard", 133, Rarity.RARE, mage.cards.s.Swarmyard.class));
cards.add(new SetCardInfo("Swords to Plowshares", 109, Rarity.UNCOMMON, mage.cards.s.SwordsToPlowshares.class));