mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Implemented Leopard-Spotted Jiao
This commit is contained in:
parent
412ce7f340
commit
39a986b7f4
2 changed files with 33 additions and 0 deletions
32
Mage.Sets/src/mage/cards/l/LeopardSpottedJiao.java
Normal file
32
Mage.Sets/src/mage/cards/l/LeopardSpottedJiao.java
Normal file
|
@ -0,0 +1,32 @@
|
|||
package mage.cards.l;
|
||||
|
||||
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 LeopardSpottedJiao extends CardImpl {
|
||||
|
||||
public LeopardSpottedJiao(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{R}");
|
||||
|
||||
this.subtype.add(SubType.BEAST);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
public LeopardSpottedJiao(final LeopardSpottedJiao card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public LeopardSpottedJiao copy() {
|
||||
return new LeopardSpottedJiao(this);
|
||||
}
|
||||
}
|
|
@ -35,6 +35,7 @@ public final class JiangYangguMuYanling extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Hardened-Scale Armor", 32, Rarity.COMMON, mage.cards.h.HardenedScaleArmor.class));
|
||||
cards.add(new SetCardInfo("Island", 21, Rarity.LAND, mage.cards.basiclands.Island.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Jiang Yanggu", 22, Rarity.MYTHIC, mage.cards.j.JiangYanggu.class));
|
||||
cards.add(new SetCardInfo("Leopard-Spotted Jiao", 23, Rarity.COMMON, mage.cards.l.LeopardSpottedJiao.class));
|
||||
cards.add(new SetCardInfo("Meandering River", 19, Rarity.COMMON, mage.cards.m.MeanderingRiver.class));
|
||||
cards.add(new SetCardInfo("Mountain", 39, Rarity.LAND, mage.cards.basiclands.Mountain.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Mu Yanling", 1, Rarity.MYTHIC, mage.cards.m.MuYanling.class));
|
||||
|
|
Loading…
Reference in a new issue