mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 04:22:01 -08:00
[BLC] Implement Steelburr Champion
This commit is contained in:
parent
2a39589dd3
commit
e9426eaf2e
2 changed files with 53 additions and 0 deletions
52
Mage.Sets/src/mage/cards/s/SteelburrChampion.java
Normal file
52
Mage.Sets/src/mage/cards/s/SteelburrChampion.java
Normal 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);
|
||||
}
|
||||
}
|
||||
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue