mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 03:51:58 -08:00
Implemented Tolsimir, Friend to Wolves
This commit is contained in:
parent
6e681ab615
commit
ed2612e01a
3 changed files with 166 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue