mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 12:31:59 -08:00
[WHO] Implement Vrestin, Menoptra Leader (#12643)
Added Alien Insect token.
This commit is contained in:
parent
5d9efd8bac
commit
37bf7a68cd
5 changed files with 109 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
@ -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|
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue