foul-magics/Mage/src/main/java/mage/game/permanent/token/TIEFighterToken.java
Evan Kranzler 3d749ba8e7 Changed all Token classes to final
had to make a few changes
2018-05-21 11:12:28 -04:00

35 lines
1,002 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 final class TIEFighterToken extends TokenImpl {
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);
}
public TIEFighterToken(final TIEFighterToken token) {
super(token);
}
public TIEFighterToken copy() {
return new TIEFighterToken(this);
}
}