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

30 lines
696 B
Java

package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
*
* @author spjspj
*/
public final class BreedingPitThrullToken extends TokenImpl {
public BreedingPitThrullToken() {
super("Thrull", "0/1 black Thrull creature token");
cardType.add(CardType.CREATURE);
subtype.add(SubType.THRULL);
color.setBlack(true);
power = new MageInt(0);
toughness = new MageInt(1);
}
public BreedingPitThrullToken(final BreedingPitThrullToken token) {
super(token);
}
public BreedingPitThrullToken copy() {
return new BreedingPitThrullToken(this);
}
}