forked from External/mage
29 lines
No EOL
775 B
Java
29 lines
No EOL
775 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 MyrToken extends TokenImpl {
|
|
|
|
public MyrToken() {
|
|
super("Myr Token", "1/1 colorless Myr artifact creature token");
|
|
cardType.add(CardType.ARTIFACT);
|
|
cardType.add(CardType.CREATURE);
|
|
subtype.add(SubType.MYR);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
|
|
availableImageSetCodes = Arrays.asList("C14", "C16", "C18", "DST", "MM2", "MRD", "SOM", "MH1", "C21", "NEC", "2XM", "BBD", "DDU", "CM2");
|
|
}
|
|
|
|
public MyrToken(final MyrToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public MyrToken copy() {
|
|
return new MyrToken(this);
|
|
}
|
|
} |