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

30 lines
675 B
Java

package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
/**
*
* @author spjspj
*/
public final class CrestedSunmareToken extends TokenImpl {
public CrestedSunmareToken() {
super("Horse", "5/5 white Horse creature token");
power = new MageInt(5);
toughness = new MageInt(5);
color.setWhite(true);
subtype.add(SubType.HORSE);
cardType.add(CardType.CREATURE);
}
public CrestedSunmareToken(final CrestedSunmareToken token) {
super(token);
}
public CrestedSunmareToken copy() {
return new CrestedSunmareToken(this);
}
}