add Star Wars expansion sets to the Star Wars set

This commit is contained in:
ninthworld 2018-07-16 20:55:05 -07:00
parent 1592a9d173
commit f31bfa829e
72 changed files with 4574 additions and 1 deletions

View file

@ -0,0 +1,36 @@
package mage.game.permanent.token;
import java.util.Collections;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
*
* @author NinthWorld
*/
public final class TrooperToken2 extends TokenImpl {
public TrooperToken2() {
super("Trooper", "1/1 black Trooper creature token");
availableImageSetCodes.addAll(Collections.singletonList("SWS"));
this.setTokenType(2);
cardType.add(CardType.CREATURE);
subtype.add(SubType.TROOPER);
color.setBlack(true);
power = new MageInt(1);
toughness = new MageInt(1);
}
public TrooperToken2(final TrooperToken2 token) {
super(token);
}
public TrooperToken2 copy() {
return new TrooperToken2(this);
}
}