mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[MKM] Implement Tolsimir, Midnight's Light (#11768)
This commit is contained in:
parent
c3d2494db6
commit
e39b55e56b
3 changed files with 171 additions and 0 deletions
|
|
@ -0,0 +1,32 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.TrampleAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
|
||||
public class TolsimirMidnightsLightToken extends TokenImpl {
|
||||
|
||||
public TolsimirMidnightsLightToken() {
|
||||
super("Voja Fenstalker", "Voja Fenstalker, a legendary 5/5 green and white Wolf creature token with trample");
|
||||
this.supertype.add(SuperType.LEGENDARY);
|
||||
this.power = new MageInt(5);
|
||||
this.toughness = new MageInt(5);
|
||||
this.color.setGreen(true);
|
||||
this.color.setWhite(true);
|
||||
this.subtype.add(SubType.WOLF);
|
||||
this.cardType.add(CardType.CREATURE);
|
||||
|
||||
addAbility(TrampleAbility.getInstance());
|
||||
}
|
||||
|
||||
private TolsimirMidnightsLightToken(final TolsimirMidnightsLightToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TolsimirMidnightsLightToken copy() {
|
||||
return new TolsimirMidnightsLightToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue