foul-magics/Mage/src/main/java/mage/game/permanent/token/RebelStarshipToken.java
2018-06-02 17:59:49 +02:00

32 lines
869 B
Java

package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.abilities.keyword.SpaceflightAbility;
/**
*
* @author spjspj
*/
public final class RebelStarshipToken extends TokenImpl {
public RebelStarshipToken() {
super("B-Wing", "2/3 blue Rebel Starship artifact creature tokens with spaceflight name B-Wing", 2, 3);
this.setOriginalExpansionSetCode("SWS");
cardType.add(CardType.CREATURE);
cardType.add(CardType.ARTIFACT);
abilities.add(SpaceflightAbility.getInstance());
color.setBlue(true);
subtype.add(SubType.REBEL);
subtype.add(SubType.STARSHIP);
}
public RebelStarshipToken(final RebelStarshipToken token) {
super(token);
}
public RebelStarshipToken copy() {
return new RebelStarshipToken(this);
}
}