Implemented Tolsimir, Friend to Wolves

This commit is contained in:
Evan Kranzler 2019-04-09 10:34:44 -04:00
parent 6e681ab615
commit ed2612e01a
3 changed files with 166 additions and 0 deletions

View file

@ -0,0 +1,33 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.constants.SuperType;
/**
* @author TheElk801
*/
public final class VojaFriendToElvesToken extends TokenImpl {
public VojaFriendToElvesToken() {
super("Voja, Friend to Elves", "Voja, Friend to Elves, a legendary 3/3 green and white Wolf creature token");
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(3);
this.toughness = new MageInt(3);
}
private VojaFriendToElvesToken(final VojaFriendToElvesToken token) {
super(token);
}
public VojaFriendToElvesToken copy() {
return new VojaFriendToElvesToken(this);
}
}