Refactor - moved HumanWizardToken to shared area

This commit is contained in:
JOAC69 2016-09-24 23:59:56 -05:00
parent 97bf274fc8
commit c00692ffad
3 changed files with 19 additions and 13 deletions

View file

@ -0,0 +1,17 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
public class HumanWizardToken extends Token {
public HumanWizardToken() {
super("Human Wizard", "1/1 blue Human Wizard creature token");
cardType.add(CardType.CREATURE);
subtype.add("Human");
subtype.add("Wizard");
color.setBlue(true);
power = new MageInt(1);
toughness = new MageInt(1);
}
}