Added planeswalker card type to gen-card.pl. Fixed JaceMemoryAdept, SorinMarkov.

This commit is contained in:
magenoxx 2011-08-09 20:28:38 +04:00
parent 2b722ad1f7
commit 74d5648576
3 changed files with 3 additions and 4 deletions

View file

@ -54,9 +54,8 @@ import mage.target.TargetPlayer;
public class JaceMemoryAdept extends CardImpl<JaceMemoryAdept> {
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);

View file

@ -56,9 +56,8 @@ import mage.target.common.TargetOpponent;
public class SorinMarkov extends CardImpl<SorinMarkov> {
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);

View file

@ -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';