mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
Refactor - moved HumanSoldierToken to shared area
This commit is contained in:
parent
9eb078842b
commit
a12e830a1b
5 changed files with 23 additions and 29 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue