foul-magics/Mage/src/main/java/mage/game/permanent/token/ShapeshifterBlueToken.java
2021-02-06 20:30:19 +04:00

35 lines
899 B
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.Arrays;
/**
* @author TheElk801
*/
public final class ShapeshifterBlueToken extends TokenImpl {
public ShapeshifterBlueToken() {
super("Shapeshifter", "2/2 blue Shapeshifter creature token with changeling");
cardType.add(CardType.CREATURE);
subtype.add(SubType.SHAPESHIFTER);
color.setBlue(true);
power = new MageInt(2);
toughness = new MageInt(2);
addAbility(new ChangelingAbility());
availableImageSetCodes = Arrays.asList("KHM");
}
private ShapeshifterBlueToken(final ShapeshifterBlueToken token) {
super(token);
}
public ShapeshifterBlueToken copy() {
return new ShapeshifterBlueToken(this);
}
}