mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 04:09:54 -08:00
Implemented Armored Whirl Turtle
This commit is contained in:
parent
d5ad543583
commit
ba452a83db
3 changed files with 73 additions and 40 deletions
32
Mage.Sets/src/mage/cards/a/ArmoredWhirlTurtle.java
Normal file
32
Mage.Sets/src/mage/cards/a/ArmoredWhirlTurtle.java
Normal 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);
|
||||
}
|
||||
}
|
||||
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue