From a140932ec89b3ef30dc827ba7ba2f0313f1cbc11 Mon Sep 17 00:00:00 2001 From: magenoxx Date: Fri, 23 Sep 2011 07:01:23 +0400 Subject: [PATCH] [ISD ] Removed Insectile Aberration and Ludevic's Abomination as second sides of double-faced cards --- Mage.Sets/src/mage/sets/innistrad/InsectileAberration.java | 6 +++++- Mage.Sets/src/mage/sets/innistrad/LudevicsAbomination.java | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/innistrad/InsectileAberration.java b/Mage.Sets/src/mage/sets/innistrad/InsectileAberration.java index e2c7cbc6da8..849fd242087 100644 --- a/Mage.Sets/src/mage/sets/innistrad/InsectileAberration.java +++ b/Mage.Sets/src/mage/sets/innistrad/InsectileAberration.java @@ -41,11 +41,15 @@ import mage.cards.CardImpl; public class InsectileAberration extends CardImpl { 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.subtype.add("Human"); 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.toughness = new MageInt(2); diff --git a/Mage.Sets/src/mage/sets/innistrad/LudevicsAbomination.java b/Mage.Sets/src/mage/sets/innistrad/LudevicsAbomination.java index 699596c5785..feb447627cb 100644 --- a/Mage.Sets/src/mage/sets/innistrad/LudevicsAbomination.java +++ b/Mage.Sets/src/mage/sets/innistrad/LudevicsAbomination.java @@ -41,11 +41,15 @@ import mage.cards.CardImpl; public class LudevicsAbomination extends CardImpl { 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.subtype.add("Lizard"); 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.toughness = new MageInt(13);