package mage.game.permanent.token; import mage.MageInt; import mage.constants.CardType; import mage.constants.SubType; import java.util.Arrays; /** * @author TheElk801 */ public final class CustomIllusionToken extends TokenImpl { public CustomIllusionToken(int xValue) { super("Illusion", "X/X blue Illusion creature token"); cardType.add(CardType.CREATURE); color.setBlue(true); subtype.add(SubType.ILLUSION); power = new MageInt(xValue); toughness = new MageInt(xValue); availableImageSetCodes = Arrays.asList("ZNR"); } public CustomIllusionToken(final CustomIllusionToken token) { super(token); } public CustomIllusionToken copy() { return new CustomIllusionToken(this); } }