forked from External/mage
37 lines
956 B
Java
37 lines
956 B
Java
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.keyword.FlyingAbility;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/**
|
|
* @author TheElk801
|
|
*/
|
|
public final class TyranidGargoyleToken extends TokenImpl {
|
|
|
|
public TyranidGargoyleToken() {
|
|
super("Tyranid Gargoyle Token", "1/1 blue Tyranid Gargoyle creature token with flying");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setBlue(true);
|
|
subtype.add(SubType.TYRANID);
|
|
subtype.add(SubType.GARGOYLE);
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
|
|
addAbility(FlyingAbility.getInstance());
|
|
|
|
availableImageSetCodes.addAll(Arrays.asList("40K"));
|
|
}
|
|
|
|
public TyranidGargoyleToken(final TyranidGargoyleToken token) {
|
|
super(token);
|
|
}
|
|
|
|
@Override
|
|
public TyranidGargoyleToken copy() {
|
|
return new TyranidGargoyleToken(this);
|
|
}
|
|
}
|