mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
3 cards by simple implement script need to be fixed
This commit is contained in:
parent
6429f4a4f2
commit
81bef2cd75
3 changed files with 9 additions and 19 deletions
|
@ -27,13 +27,7 @@
|
|||
*/
|
||||
package mage.sets.shadowsoverinnistrad;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.TrampleAbility;
|
||||
import mage.abilities.keyword.HexproofAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -41,7 +35,8 @@ import mage.constants.Rarity;
|
|||
*/
|
||||
public class AncientOfTheEquinox extends CardImpl {
|
||||
|
||||
public AncientOfTheEquinox(UUID ownerId) {
|
||||
/*
|
||||
public AncientOfTheEquinox(UUID ownerId) {
|
||||
super(ownerId, 194b, "Ancient of the Equinox", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "");
|
||||
this.expansionSetCode = "SOI";
|
||||
this.subtype.add("Treefolk");
|
||||
|
@ -53,6 +48,7 @@ public class AncientOfTheEquinox extends CardImpl {
|
|||
// Hexproof
|
||||
this.addAbility(HexproofAbility.getInstance());
|
||||
}
|
||||
*/
|
||||
|
||||
public AncientOfTheEquinox(final AncientOfTheEquinox card) {
|
||||
super(card);
|
||||
|
|
|
@ -27,11 +27,7 @@
|
|||
*/
|
||||
package mage.sets.shadowsoverinnistrad;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -39,13 +35,14 @@ import mage.constants.Rarity;
|
|||
*/
|
||||
public class LilianasIndignation extends CardImpl {
|
||||
|
||||
/*
|
||||
public LilianasIndignation(UUID ownerId) {
|
||||
super(ownerId, 120, "Liliana's Indignation", Rarity.UNCOMMON, new CardType[]{CardType.SORCERY}, "{X}{B}");
|
||||
this.expansionSetCode = "SOI";
|
||||
this.power = new MageInt(Put the top X cards of your library into your graveyard. Target player loses 2 life for each creature card put into your graveyard this way.);
|
||||
this.toughness = new MageInt(
|
||||
);
|
||||
this.toughness = new MageInt();
|
||||
}
|
||||
*/
|
||||
|
||||
public LilianasIndignation(final LilianasIndignation card) {
|
||||
super(card);
|
||||
|
|
|
@ -27,18 +27,14 @@
|
|||
*/
|
||||
package mage.sets.shadowsoverinnistrad;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author LevelX2
|
||||
*/
|
||||
public class SkinShedder extends CardImpl {
|
||||
|
||||
/*
|
||||
public SkinShedder(UUID ownerId) {
|
||||
super(ownerId, 182b, "Skin Shedder", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "");
|
||||
this.expansionSetCode = "SOI";
|
||||
|
@ -47,7 +43,7 @@ public class SkinShedder extends CardImpl {
|
|||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(4);
|
||||
}
|
||||
|
||||
*/
|
||||
public SkinShedder(final SkinShedder card) {
|
||||
super(card);
|
||||
}
|
||||
|
@ -56,4 +52,5 @@ public class SkinShedder extends CardImpl {
|
|||
public SkinShedder copy() {
|
||||
return new SkinShedder(this);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue