package mage.game.permanent.token; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import mage.MageInt; import mage.constants.CardType; public class MyrToken extends Token { final static private List<String> tokenImageSets = new ArrayList<>(); static { tokenImageSets.addAll(Arrays.asList("C14", "MM2", "NPH", "SOM")); } public MyrToken() { this(null); } public MyrToken(String expansionSetCode) { super("Myr", "1/1 colorless Myr artifact creature token"); this.setOriginalExpansionSetCode(expansionSetCode); cardType.add(CardType.CREATURE); cardType.add(CardType.ARTIFACT); subtype.add("Myr"); power = new MageInt(1); toughness = new MageInt(1); availableImageSetCodes = tokenImageSets; } }