foul-magics/Mage/src/main/java/mage/game/permanent/token/KherKeepKoboldToken.java
2018-06-02 17:59:49 +02:00

29 lines
714 B
Java

package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
/**
*
* @author spjspj
*/
public final class KherKeepKoboldToken extends TokenImpl {
public KherKeepKoboldToken() {
super("Kobolds of Kher Keep", "0/1 red Kobold creature token named Kobolds of Kher Keep");
cardType.add(CardType.CREATURE);
color.setRed(true);
subtype.add(SubType.KOBOLD);
power = new MageInt(0);
toughness = new MageInt(1);
}
public KherKeepKoboldToken(final KherKeepKoboldToken token) {
super(token);
}
public KherKeepKoboldToken copy() {
return new KherKeepKoboldToken(this);
}
}