mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +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;
|
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.cards.CardImpl;
|
||||||
import mage.constants.CardType;
|
|
||||||
import mage.constants.Rarity;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
@ -41,6 +35,7 @@ import mage.constants.Rarity;
|
||||||
*/
|
*/
|
||||||
public class AncientOfTheEquinox extends CardImpl {
|
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}, "");
|
super(ownerId, 194b, "Ancient of the Equinox", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "");
|
||||||
this.expansionSetCode = "SOI";
|
this.expansionSetCode = "SOI";
|
||||||
|
@ -53,6 +48,7 @@ public class AncientOfTheEquinox extends CardImpl {
|
||||||
// Hexproof
|
// Hexproof
|
||||||
this.addAbility(HexproofAbility.getInstance());
|
this.addAbility(HexproofAbility.getInstance());
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
public AncientOfTheEquinox(final AncientOfTheEquinox card) {
|
public AncientOfTheEquinox(final AncientOfTheEquinox card) {
|
||||||
super(card);
|
super(card);
|
||||||
|
|
|
@ -27,11 +27,7 @@
|
||||||
*/
|
*/
|
||||||
package mage.sets.shadowsoverinnistrad;
|
package mage.sets.shadowsoverinnistrad;
|
||||||
|
|
||||||
import java.util.UUID;
|
|
||||||
import mage.MageInt;
|
|
||||||
import mage.cards.CardImpl;
|
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 class LilianasIndignation extends CardImpl {
|
||||||
|
|
||||||
|
/*
|
||||||
public LilianasIndignation(UUID ownerId) {
|
public LilianasIndignation(UUID ownerId) {
|
||||||
super(ownerId, 120, "Liliana's Indignation", Rarity.UNCOMMON, new CardType[]{CardType.SORCERY}, "{X}{B}");
|
super(ownerId, 120, "Liliana's Indignation", Rarity.UNCOMMON, new CardType[]{CardType.SORCERY}, "{X}{B}");
|
||||||
this.expansionSetCode = "SOI";
|
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.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) {
|
public LilianasIndignation(final LilianasIndignation card) {
|
||||||
super(card);
|
super(card);
|
||||||
|
|
|
@ -27,18 +27,14 @@
|
||||||
*/
|
*/
|
||||||
package mage.sets.shadowsoverinnistrad;
|
package mage.sets.shadowsoverinnistrad;
|
||||||
|
|
||||||
import java.util.UUID;
|
|
||||||
import mage.MageInt;
|
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.constants.CardType;
|
|
||||||
import mage.constants.Rarity;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
public class SkinShedder extends CardImpl {
|
public class SkinShedder extends CardImpl {
|
||||||
|
/*
|
||||||
public SkinShedder(UUID ownerId) {
|
public SkinShedder(UUID ownerId) {
|
||||||
super(ownerId, 182b, "Skin Shedder", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "");
|
super(ownerId, 182b, "Skin Shedder", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "");
|
||||||
this.expansionSetCode = "SOI";
|
this.expansionSetCode = "SOI";
|
||||||
|
@ -47,7 +43,7 @@ public class SkinShedder extends CardImpl {
|
||||||
this.power = new MageInt(3);
|
this.power = new MageInt(3);
|
||||||
this.toughness = new MageInt(4);
|
this.toughness = new MageInt(4);
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
public SkinShedder(final SkinShedder card) {
|
public SkinShedder(final SkinShedder card) {
|
||||||
super(card);
|
super(card);
|
||||||
}
|
}
|
||||||
|
@ -56,4 +52,5 @@ public class SkinShedder extends CardImpl {
|
||||||
public SkinShedder copy() {
|
public SkinShedder copy() {
|
||||||
return new SkinShedder(this);
|
return new SkinShedder(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue