[WHO] Implement Vrestin, Menoptra Leader (#12643)

Added Alien Insect token.
This commit is contained in:
Sidorovich77 2024-08-15 04:09:39 +03:00 committed by GitHub
parent 5d9efd8bac
commit 37bf7a68cd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 109 additions and 1 deletions

View file

@ -0,0 +1,34 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author Sidorovich77
*/
public final class AlienInsectToken extends TokenImpl {
public AlienInsectToken() {
super("Alien Insect Token", "1/1 green and white Alien Insect creature token with flying");
cardType.add(CardType.CREATURE);
color.setWhite(true);
color.setGreen(true);
subtype.add(SubType.ALIEN);
subtype.add(SubType.INSECT);
power = new MageInt(1);
toughness = new MageInt(1);
addAbility(FlyingAbility.getInstance());
}
private AlienInsectToken(final AlienInsectToken token) {
super(token);
}
public AlienInsectToken copy() {
return new AlienInsectToken(this);
}
}

View file

@ -2111,6 +2111,9 @@
|Generate|TOK:WOC|Spirit|||WhiteBlackSpiritToken|
|Generate|TOK:WOC|Virtuous|||VirtuousRoleToken|
# WHO
|Generate|TOK:WHO|Alien Insect|||AlienInsectToken|
# PIP
|Generate|TOK:PIP|Robot|||RobotToken|