Restructured Mage module

This commit is contained in:
poixen 2015-11-29 21:56:49 +01:00
parent 727d62babb
commit 46eb6c0525
1502 changed files with 11 additions and 9 deletions

View file

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