mirror of
https://github.com/correl/mage.git
synced 2025-01-12 03:00:13 +00:00
Fixed subtypes of 2 planeswalkers. All tests pass now.
This commit is contained in:
parent
37832da657
commit
8bceab52de
2 changed files with 6 additions and 6 deletions
|
@ -27,8 +27,6 @@
|
|||
*/
|
||||
package mage.sets.magic2012;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.abilities.Ability;
|
||||
|
@ -45,6 +43,8 @@ import mage.game.Game;
|
|||
import mage.players.Player;
|
||||
import mage.target.TargetPlayer;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author nantuko
|
||||
*/
|
||||
|
@ -53,7 +53,7 @@ public class JaceMemoryAdept extends CardImpl<JaceMemoryAdept> {
|
|||
public JaceMemoryAdept(UUID ownerId) {
|
||||
super(ownerId, 58, "Jace, Memory Adept", Rarity.MYTHIC, new CardType[]{CardType.PLANESWALKER}, "{3}{U}{U}");
|
||||
this.expansionSetCode = "M12";
|
||||
this.supertype.add("Jace");
|
||||
this.subtype.add("Jace");
|
||||
|
||||
this.color.setBlue(true);
|
||||
|
||||
|
|
|
@ -27,8 +27,6 @@
|
|||
*/
|
||||
package mage.sets.zendikar;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.Constants;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Rarity;
|
||||
|
@ -48,6 +46,8 @@ import mage.target.TargetPlayer;
|
|||
import mage.target.common.TargetCreatureOrPlayer;
|
||||
import mage.target.common.TargetOpponent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author nantuko
|
||||
|
@ -57,7 +57,7 @@ public class SorinMarkov extends CardImpl<SorinMarkov> {
|
|||
public SorinMarkov(UUID ownerId) {
|
||||
super(ownerId, 111, "Sorin Markov", Rarity.MYTHIC, new CardType[]{CardType.PLANESWALKER}, "{3}{B}{B}{B}");
|
||||
this.expansionSetCode = "ZEN";
|
||||
this.supertype.add("Sorin");
|
||||
this.subtype.add("Sorin");
|
||||
|
||||
this.color.setBlack(true);
|
||||
|
||||
|
|
Loading…
Reference in a new issue