forked from External/mage
30 lines
No EOL
798 B
Java
30 lines
No EOL
798 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
import java.util.Arrays;
|
|
|
|
public final class PhyrexianMyrToken extends TokenImpl {
|
|
|
|
public PhyrexianMyrToken() {
|
|
super("Phyrexian Myr Token", "1/1 colorless Phyrexian Myr artifact creature token");
|
|
cardType.add(CardType.ARTIFACT);
|
|
cardType.add(CardType.CREATURE);
|
|
subtype.add(SubType.PHYREXIAN);
|
|
subtype.add(SubType.MYR);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
|
|
availableImageSetCodes = Arrays.asList("NPH");
|
|
}
|
|
|
|
public PhyrexianMyrToken(final PhyrexianMyrToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public PhyrexianMyrToken copy() {
|
|
return new PhyrexianMyrToken(this);
|
|
}
|
|
} |