/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package mage.game.permanent.token; import mage.abilities.keyword.SpaceflightAbility; import mage.constants.CardType; /** * * @author Styxo */ public class TIEFighterToken extends Token { public TIEFighterToken() { super("TIE Fighter", "1/1 black Starship artifact creature tokens with Spaceflight named TIE Fighter", 1, 1); this.setOriginalExpansionSetCode("SWS"); cardType.add(CardType.CREATURE); cardType.add(CardType.ARTIFACT); color.setBlack(true); addAbility(SpaceflightAbility.getInstance()); subtype.add("Starship"); } }