forked from External/mage
34 lines
732 B
Java
34 lines
732 B
Java
|
|
|
|
package mage.game.permanent.token;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.MageInt;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public final class MerfolkToken extends TokenImpl {
|
|
|
|
public MerfolkToken() {
|
|
super("Merfolk Token", "1/1 blue Merfolk creature token");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setBlue(true);
|
|
subtype.add(SubType.MERFOLK);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
|
|
availableImageSetCodes = Arrays.asList("ZEN", "DMC");
|
|
}
|
|
|
|
public MerfolkToken(final MerfolkToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public MerfolkToken copy() {
|
|
return new MerfolkToken(this);
|
|
}
|
|
}
|