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);