diff --git a/Mage.Sets/src/mage/cards/s/SteelburrChampion.java b/Mage.Sets/src/mage/cards/s/SteelburrChampion.java new file mode 100644 index 00000000000..4210ae7141a --- /dev/null +++ b/Mage.Sets/src/mage/cards/s/SteelburrChampion.java @@ -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); + } +} diff --git a/Mage.Sets/src/mage/sets/BloomburrowCommander.java b/Mage.Sets/src/mage/sets/BloomburrowCommander.java index a2ab07a753b..5d9855cdfb9 100644 --- a/Mage.Sets/src/mage/sets/BloomburrowCommander.java +++ b/Mage.Sets/src/mage/sets/BloomburrowCommander.java @@ -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));