forked from External/mage
30 lines
635 B
Java
30 lines
635 B
Java
|
|
package mage.game.permanent.token;
|
|
|
|
import mage.MageInt;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public final class HellionToken extends TokenImpl {
|
|
|
|
public HellionToken() {
|
|
super("Hellion", "4/4 red Hellion creature token");
|
|
cardType.add(CardType.CREATURE);
|
|
color.setRed(true);
|
|
subtype.add(SubType.HELLION);
|
|
power = new MageInt(4);
|
|
toughness = new MageInt(4);
|
|
}
|
|
|
|
public HellionToken(final HellionToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public HellionToken copy() {
|
|
return new HellionToken(this);
|
|
}
|
|
}
|