[MKM] Implement Tolsimir, Midnight's Light (#11768)

This commit is contained in:
Matthew Wilson 2024-02-10 05:22:46 +02:00 committed by GitHub
parent c3d2494db6
commit e39b55e56b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 171 additions and 0 deletions

View file

@ -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);
}
}