Implemented Armored Whirl Turtle

This commit is contained in:
Evan Kranzler 2018-06-07 22:47:55 -04:00
parent d5ad543583
commit ba452a83db
3 changed files with 73 additions and 40 deletions

View file

@ -0,0 +1,32 @@
package mage.cards.a;
import java.util.UUID;
import mage.MageInt;
import mage.constants.SubType;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
/**
*
* @author TheElk801
*/
public final class ArmoredWhirlTurtle extends CardImpl {
public ArmoredWhirlTurtle(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{U}");
this.subtype.add(SubType.TURTLE);
this.power = new MageInt(0);
this.toughness = new MageInt(5);
}
public ArmoredWhirlTurtle(final ArmoredWhirlTurtle card) {
super(card);
}
@Override
public ArmoredWhirlTurtle copy() {
return new ArmoredWhirlTurtle(this);
}
}

View file

@ -20,6 +20,7 @@ public final class JiangYangguMuYanling extends ExpansionSet {
super("Global Series: Jiang Yanggu & Mu Yanling", "GS1", ExpansionSet.buildDate(2018, 6, 22), SetType.SUPPLEMENTAL_STANDARD_LEGAL);
this.blockName = "Global Series";
this.hasBasicLands = true;
cards.add(new SetCardInfo("Armored Whirl Turtle", 7, Rarity.COMMON, mage.cards.a.ArmoredWhirlTurtle.class));
cards.add(new SetCardInfo("Brilliant Plan", 17, Rarity.UNCOMMON, mage.cards.b.BrilliantPlan.class));
cards.add(new SetCardInfo("Cloak of Mists", 13, Rarity.COMMON, mage.cards.c.CloakOfMists.class));
cards.add(new SetCardInfo("Forest", 40, Rarity.LAND, mage.cards.basiclands.Forest.class, NON_FULL_USE_VARIOUS));