forked from External/mage
updated tokens with phyrexian subtype
This commit is contained in:
parent
cd99beed6e
commit
5f8d746fc0
34 changed files with 237 additions and 82 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue