[BLB] Implement Rust-Shield Rampager

This commit is contained in:
theelk801 2024-07-15 14:25:23 -04:00
parent 52731ab18b
commit 65596ea3c4
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,41 @@
package mage.cards.r;
import mage.MageInt;
import mage.abilities.keyword.DauntAbility;
import mage.abilities.keyword.OffspringAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class RustShieldRampager extends CardImpl {
public RustShieldRampager(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{G}");
this.subtype.add(SubType.RACCOON);
this.subtype.add(SubType.WARRIOR);
this.power = new MageInt(4);
this.toughness = new MageInt(4);
// Offspring {2}
this.addAbility(new OffspringAbility("{2}"));
// This creature can't be blocked by creatures with power 2 or less.
this.addAbility(new DauntAbility());
}
private RustShieldRampager(final RustShieldRampager card) {
super(card);
}
@Override
public RustShieldRampager copy() {
return new RustShieldRampager(this);
}
}

View file

@ -98,6 +98,7 @@ public final class Bloomburrow extends ExpansionSet {
cards.add(new SetCardInfo("Repel Calamity", 27, Rarity.UNCOMMON, mage.cards.r.RepelCalamity.class));
cards.add(new SetCardInfo("Rockface Village", 259, Rarity.UNCOMMON, mage.cards.r.RockfaceVillage.class));
cards.add(new SetCardInfo("Run Away Together", 67, Rarity.COMMON, mage.cards.r.RunAwayTogether.class));
cards.add(new SetCardInfo("Rust-Shield Rampager", 190, Rarity.COMMON, mage.cards.r.RustShieldRampager.class));
cards.add(new SetCardInfo("Salvation Swan", 28, Rarity.RARE, mage.cards.s.SalvationSwan.class));
cards.add(new SetCardInfo("Seasoned Warrenguard", 30, Rarity.UNCOMMON, mage.cards.s.SeasonedWarrenguard.class));
cards.add(new SetCardInfo("Seedglaive Mentor", 231, Rarity.UNCOMMON, mage.cards.s.SeedglaiveMentor.class));