updated tokens with phyrexian subtype

This commit is contained in:
Evan Kranzler 2021-06-10 20:29:07 -04:00
parent cd99beed6e
commit 5f8d746fc0
34 changed files with 237 additions and 82 deletions

View file

@ -1,22 +1,20 @@
package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
import mage.abilities.keyword.InfectAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
*
* @author nantuko
*/
public final class InsectInfectToken extends TokenImpl {
public InsectInfectToken() {
super("Insect", "1/1 green Insect creature token with infect");
super("Phyrexian Insect", "1/1 green Phyrexian Insect creature token with infect");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.PHYREXIAN);
subtype.add(SubType.INSECT);
power = new MageInt(1);
toughness = new MageInt(1);
@ -31,4 +29,4 @@ public final class InsectInfectToken extends TokenImpl {
public InsectInfectToken copy() {
return new InsectInfectToken(this);
}
}
}