diff --git a/Mage.Sets/src/mage/sets/magic2012/JaceMemoryAdept.java b/Mage.Sets/src/mage/sets/magic2012/JaceMemoryAdept.java index 95601f807b..66df97e477 100644 --- a/Mage.Sets/src/mage/sets/magic2012/JaceMemoryAdept.java +++ b/Mage.Sets/src/mage/sets/magic2012/JaceMemoryAdept.java @@ -54,9 +54,8 @@ import mage.target.TargetPlayer; public class JaceMemoryAdept extends CardImpl { public JaceMemoryAdept(UUID ownerId) { - super(ownerId, 58, "Jace, Memory Adept", Rarity.MYTHIC, new CardType[]{}, "{3}{U}{U}"); + super(ownerId, 58, "Jace, Memory Adept", Rarity.MYTHIC, new CardType[]{CardType.PLANESWALKER}, "{3}{U}{U}"); this.expansionSetCode = "M12"; - this.supertype.add("Planeswalker"); this.supertype.add("Jace"); this.color.setBlue(true); diff --git a/Mage.Sets/src/mage/sets/zendikar/SorinMarkov.java b/Mage.Sets/src/mage/sets/zendikar/SorinMarkov.java index bd71e9ab63..4516822c4d 100644 --- a/Mage.Sets/src/mage/sets/zendikar/SorinMarkov.java +++ b/Mage.Sets/src/mage/sets/zendikar/SorinMarkov.java @@ -56,9 +56,8 @@ import mage.target.common.TargetOpponent; public class SorinMarkov extends CardImpl { public SorinMarkov(UUID ownerId) { - super(ownerId, 111, "Sorin Markov", Rarity.MYTHIC, new CardType[]{}, "{3}{B}{B}{B}"); + super(ownerId, 111, "Sorin Markov", Rarity.MYTHIC, new CardType[]{CardType.PLANESWALKER}, "{3}{B}{B}{B}"); this.expansionSetCode = "ZEN"; - this.supertype.add("Planeswalker"); this.supertype.add("Sorin"); this.color.setBlack(true); diff --git a/Utils/gen-card.pl b/Utils/gen-card.pl index 3fe4086d76..366d156371 100755 --- a/Utils/gen-card.pl +++ b/Utils/gen-card.pl @@ -75,6 +75,7 @@ $cardTypes{'Enchantment'} = 'CardType.ENCHANTMENT'; $cardTypes{'Instant'} = 'CardType.INSTANT'; $cardTypes{'Land'} = 'CardType.LAND'; $cardTypes{'Sorcery'} = 'CardType.SORCERY'; +$cardTypes{'Planeswalker'} = 'CardType.PLANESWALKER'; my %raritiesConversion; $raritiesConversion{'C'} = 'COMMON';