[40K] Implemented Gargoyle Flock

This commit is contained in:
Evan Kranzler 2022-09-15 18:28:54 -04:00
parent 8094032665
commit e9684c86ac
6 changed files with 163 additions and 40 deletions

View file

@ -0,0 +1,37 @@
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 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);
}
}