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

35 lines
781 B
Java

package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
import mage.constants.SuperType;
/**
*
* @author spjspj
*/
public final class VojaToken extends TokenImpl {
public VojaToken() {
super("Voja", "legendary 2/2 green and white Wolf creature token named Voja");
this.cardType.add(CardType.CREATURE);
addSuperType(SuperType.LEGENDARY);
this.subtype.add(SubType.WOLF);
this.color.setGreen(true);
this.color.setWhite(true);
this.power = new MageInt(2);
this.toughness = new MageInt(2);
}
public VojaToken(final VojaToken token) {
super(token);
}
public VojaToken copy() {
return new VojaToken(this);
}
}