Refactor - moved HumanSoldierToken to shared area

This commit is contained in:
JOAC69 2016-09-26 00:46:22 -05:00
parent 9eb078842b
commit a12e830a1b
5 changed files with 23 additions and 29 deletions

View file

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