foul-magics/Mage/src/main/java/mage/game/permanent/token/CrestedSunmareToken.java
2022-08-06 21:54:15 +01:00

31 lines
725 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 Token", "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);
setOriginalExpansionSetCode("HOU");
}
public CrestedSunmareToken(final CrestedSunmareToken token) {
super(token);
}
public CrestedSunmareToken copy() {
return new CrestedSunmareToken(this);
}
}