forked from External/mage
32 lines
873 B
Java
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);
|
|
}
|
|
}
|