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
|
|
@ -0,0 +1,26 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
public final class PhyrexianMyrToken extends TokenImpl {
|
||||
|
||||
public PhyrexianMyrToken() {
|
||||
super("Phyrexian Myr", "1/1 colorless Phyrexian Myr artifact creature token");
|
||||
cardType.add(CardType.ARTIFACT);
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.PHYREXIAN);
|
||||
subtype.add(SubType.MYR);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
public PhyrexianMyrToken(final PhyrexianMyrToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public PhyrexianMyrToken copy() {
|
||||
return new PhyrexianMyrToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue