forked from External/mage
30 lines
721 B
Java
30 lines
721 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
*
|
|
* @author Loki
|
|
*/
|
|
public final class MerfolkWizardToken extends TokenImpl {
|
|
|
|
public MerfolkWizardToken() {
|
|
super("Merfolk Wizard", "1/1 blue Merfolk Wizard creature token");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setBlue(true);
|
|
subtype.add(SubType.MERFOLK);
|
|
subtype.add(SubType.WIZARD);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
}
|
|
|
|
public MerfolkWizardToken(final MerfolkWizardToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public MerfolkWizardToken copy() {
|
|
return new MerfolkWizardToken(this);
|
|
}
|
|
}
|