mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
[ISD ] Removed Insectile Aberration and Ludevic's Abomination as second sides of double-faced cards
This commit is contained in:
parent
4936db8e45
commit
a140932ec8
2 changed files with 10 additions and 2 deletions
|
@ -41,11 +41,15 @@ import mage.cards.CardImpl;
|
||||||
public class InsectileAberration extends CardImpl<InsectileAberration> {
|
public class InsectileAberration extends CardImpl<InsectileAberration> {
|
||||||
|
|
||||||
public InsectileAberration(UUID ownerId) {
|
public InsectileAberration(UUID ownerId) {
|
||||||
super(ownerId, 51, "Insectile Aberration", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "");
|
super(ownerId, 1051, "Insectile Aberration", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "");
|
||||||
this.expansionSetCode = "ISD";
|
this.expansionSetCode = "ISD";
|
||||||
this.subtype.add("Human");
|
this.subtype.add("Human");
|
||||||
this.subtype.add("Insect");
|
this.subtype.add("Insect");
|
||||||
|
|
||||||
|
// this card is the second face of double-faced card
|
||||||
|
this.nightCard = true;
|
||||||
|
this.canTransform = true;
|
||||||
|
|
||||||
this.power = new MageInt(3);
|
this.power = new MageInt(3);
|
||||||
this.toughness = new MageInt(2);
|
this.toughness = new MageInt(2);
|
||||||
|
|
||||||
|
|
|
@ -41,11 +41,15 @@ import mage.cards.CardImpl;
|
||||||
public class LudevicsAbomination extends CardImpl<LudevicsAbomination> {
|
public class LudevicsAbomination extends CardImpl<LudevicsAbomination> {
|
||||||
|
|
||||||
public LudevicsAbomination(UUID ownerId) {
|
public LudevicsAbomination(UUID ownerId) {
|
||||||
super(ownerId, 64, "Ludevic's Abomination", Rarity.RARE, new CardType[]{CardType.CREATURE}, "");
|
super(ownerId, 1064, "Ludevic's Abomination", Rarity.RARE, new CardType[]{CardType.CREATURE}, "");
|
||||||
this.expansionSetCode = "ISD";
|
this.expansionSetCode = "ISD";
|
||||||
this.subtype.add("Lizard");
|
this.subtype.add("Lizard");
|
||||||
this.subtype.add("Horror");
|
this.subtype.add("Horror");
|
||||||
|
|
||||||
|
// this card is the second face of double-faced card
|
||||||
|
this.nightCard = true;
|
||||||
|
this.canTransform = true;
|
||||||
|
|
||||||
this.power = new MageInt(13);
|
this.power = new MageInt(13);
|
||||||
this.toughness = new MageInt(13);
|
this.toughness = new MageInt(13);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue