mirror of
https://github.com/correl/mage.git
synced 2025-01-13 03:00:10 +00:00
[ZNR] Implemented Cliffhaven Sell-Sword
This commit is contained in:
parent
b0a992e446
commit
e2e711a463
2 changed files with 34 additions and 0 deletions
33
Mage.Sets/src/mage/cards/c/CliffhavenSellSword.java
Normal file
33
Mage.Sets/src/mage/cards/c/CliffhavenSellSword.java
Normal file
|
@ -0,0 +1,33 @@
|
|||
package mage.cards.c;
|
||||
|
||||
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 CliffhavenSellSword extends CardImpl {
|
||||
|
||||
public CliffhavenSellSword(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{W}");
|
||||
|
||||
this.subtype.add(SubType.KOR);
|
||||
this.subtype.add(SubType.WARRIOR);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
private CliffhavenSellSword(final CliffhavenSellSword card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CliffhavenSellSword copy() {
|
||||
return new CliffhavenSellSword(this);
|
||||
}
|
||||
}
|
|
@ -28,6 +28,7 @@ public final class ZendikarRising extends ExpansionSet {
|
|||
this.maxCardNumberInBooster = 280;
|
||||
|
||||
cards.add(new SetCardInfo("Bloodchief's Thirst", 94, Rarity.UNCOMMON, mage.cards.b.BloodchiefsThirst.class));
|
||||
cards.add(new SetCardInfo("Cliffhaven Sell-Sword", 8, Rarity.COMMON, mage.cards.c.CliffhavenSellSword.class));
|
||||
cards.add(new SetCardInfo("Forest", 278, Rarity.LAND, mage.cards.basiclands.Forest.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Island", 269, Rarity.LAND, mage.cards.basiclands.Island.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Jace, Mirror Mage", 63, Rarity.MYTHIC, mage.cards.j.JaceMirrorMage.class));
|
||||
|
|
Loading…
Reference in a new issue