mirror of
https://github.com/correl/mage.git
synced 2024-12-27 20:06:31 +00:00
[BRO] Implement Burrowing Razormaw
This commit is contained in:
parent
312c75e4fb
commit
7179ba8d4d
2 changed files with 38 additions and 0 deletions
37
Mage.Sets/src/mage/cards/b/BurrowingRazormaw.java
Normal file
37
Mage.Sets/src/mage/cards/b/BurrowingRazormaw.java
Normal file
|
@ -0,0 +1,37 @@
|
|||
package mage.cards.b;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.DiesSourceTriggeredAbility;
|
||||
import mage.abilities.effects.common.MillCardsControllerEffect;
|
||||
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 BurrowingRazormaw extends CardImpl {
|
||||
|
||||
public BurrowingRazormaw(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}");
|
||||
|
||||
this.subtype.add(SubType.BEAST);
|
||||
this.power = new MageInt(4);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// When Burrowing Razormaw dies, mill four cards.
|
||||
this.addAbility(new DiesSourceTriggeredAbility(new MillCardsControllerEffect(4)));
|
||||
}
|
||||
|
||||
private BurrowingRazormaw(final BurrowingRazormaw card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BurrowingRazormaw copy() {
|
||||
return new BurrowingRazormaw(this);
|
||||
}
|
||||
}
|
|
@ -50,6 +50,7 @@ public final class TheBrothersWar extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Blitz Automaton", 158, Rarity.COMMON, mage.cards.b.BlitzAutomaton.class));
|
||||
cards.add(new SetCardInfo("Brotherhood's End", 128, Rarity.RARE, mage.cards.b.BrotherhoodsEnd.class));
|
||||
cards.add(new SetCardInfo("Brushland", 259, Rarity.RARE, mage.cards.b.Brushland.class));
|
||||
cards.add(new SetCardInfo("Burrowing Razormaw", 173, Rarity.COMMON, mage.cards.b.BurrowingRazormaw.class));
|
||||
cards.add(new SetCardInfo("Bushwhack", 174, Rarity.UNCOMMON, mage.cards.b.Bushwhack.class));
|
||||
cards.add(new SetCardInfo("Carrion Locust", 87, Rarity.COMMON, mage.cards.c.CarrionLocust.class));
|
||||
cards.add(new SetCardInfo("Citanul Stalwart", 175, Rarity.COMMON, mage.cards.c.CitanulStalwart.class));
|
||||
|
|
Loading…
Reference in a new issue