forked from External/mage
40 lines
1 KiB
Java
40 lines
1 KiB
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.ChangelingAbility;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author TheElk801
|
|
*/
|
|
public final class ShapeshifterToken extends TokenImpl {
|
|
|
|
static final private List<String> tokenImageSets = new ArrayList<>();
|
|
|
|
static {
|
|
tokenImageSets.addAll(Arrays.asList("C15", "LRW", "MH1"));
|
|
}
|
|
|
|
public ShapeshifterToken() {
|
|
super("Shapeshifter", "2/2 colorless Shapeshifter creature token with changeling");
|
|
availableImageSetCodes = tokenImageSets;
|
|
cardType.add(CardType.CREATURE);
|
|
subtype.add(SubType.SHAPESHIFTER);
|
|
power = new MageInt(2);
|
|
toughness = new MageInt(2);
|
|
addAbility(ChangelingAbility.getInstance());
|
|
}
|
|
|
|
public ShapeshifterToken(final ShapeshifterToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public ShapeshifterToken copy() {
|
|
return new ShapeshifterToken(this);
|
|
}
|
|
}
|