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,36 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.HasteAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class PhyrexianGoblinToken extends TokenImpl {
|
||||
|
||||
public PhyrexianGoblinToken() {
|
||||
super("Phyrexian Goblin", "1/1 red Phyrexian Goblin creature token with haste");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.PHYREXIAN);
|
||||
subtype.add(SubType.GOBLIN);
|
||||
color.setRed(true);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
|
||||
addAbility(HasteAbility.getInstance());
|
||||
|
||||
availableImageSetCodes = Arrays.asList("NPH");
|
||||
}
|
||||
|
||||
public PhyrexianGoblinToken(final PhyrexianGoblinToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public PhyrexianGoblinToken copy() {
|
||||
return new PhyrexianGoblinToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue