forked from External/mage
31 lines
729 B
Java
31 lines
729 B
Java
|
|
|
|
package mage.game.permanent.token;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.MageInt;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public final class DinOfTheFireherdToken extends TokenImpl {
|
|
|
|
public DinOfTheFireherdToken() {
|
|
super("Elemental", "5/5 black and red Elemental creature");
|
|
cardType.add(CardType.CREATURE);
|
|
subtype.add(SubType.ELEMENTAL);
|
|
color.setBlack(true);
|
|
color.setRed(true);
|
|
power = new MageInt(5);
|
|
toughness = new MageInt(5);
|
|
}
|
|
|
|
public DinOfTheFireherdToken(final DinOfTheFireherdToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public DinOfTheFireherdToken copy() {
|
|
return new DinOfTheFireherdToken(this);
|
|
}
|
|
}
|