forked from External/mage
27 lines
820 B
Java
27 lines
820 B
Java
/*
|
|
* 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;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
*
|
|
* @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(SubType.STARSHIP);
|
|
}
|
|
}
|