mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
Added planeswalker card type to gen-card.pl. Fixed JaceMemoryAdept, SorinMarkov.
This commit is contained in:
parent
2b722ad1f7
commit
74d5648576
3 changed files with 3 additions and 4 deletions
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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';
|
||||
|
|
Loading…
Reference in a new issue