mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
Refactor - moved HumanWizardToken to shared area
This commit is contained in:
parent
97bf274fc8
commit
c00692ffad
3 changed files with 19 additions and 13 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue