foul-magics/Mage/src/main/java/mage/game/permanent/token/InsectInfectToken.java
2021-06-10 20:29:07 -04:00

32 lines
873 B
Java

package mage.game.permanent.token;
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("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);
addAbility(InfectAbility.getInstance());
setOriginalExpansionSetCode("SOM");
}
public InsectInfectToken(final InsectInfectToken token) {
super(token);
}
public InsectInfectToken copy() {
return new InsectInfectToken(this);
}
}