Implemented Kasmina, Enigmatic Mentor

This commit is contained in:
Evan Kranzler 2019-04-08 18:26:19 -04:00
parent 58b6edeed9
commit 7e2724ed59
4 changed files with 128 additions and 0 deletions

View file

@ -392,6 +392,7 @@ public enum SubType {
HUATLI("Huatli", SubTypeSet.PlaneswalkerType),
JACE("Jace", SubTypeSet.PlaneswalkerType),
KARN("Karn", SubTypeSet.PlaneswalkerType),
KASMINA("Kasmina", SubTypeSet.PlaneswalkerType),
KAYA("Kaya", SubTypeSet.PlaneswalkerType),
KIORA("Kiora", SubTypeSet.PlaneswalkerType),
KOTH("Koth", SubTypeSet.PlaneswalkerType),

View file

@ -0,0 +1,25 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
public final class WizardToken extends TokenImpl {
public WizardToken() {
super("Wizard", "2/2 blue Human Wizard creature token");
cardType.add(CardType.CREATURE);
subtype.add(SubType.WIZARD);
color.setBlue(true);
power = new MageInt(2);
toughness = new MageInt(2);
}
private WizardToken(final WizardToken token) {
super(token);
}
public WizardToken copy() {
return new WizardToken(this);
}
}