[AFR] Implemented The Book of Vile Darkness

This commit is contained in:
Evan Kranzler 2021-07-09 09:24:51 -04:00
parent ee8b9fca9b
commit 22bf922076
3 changed files with 230 additions and 0 deletions

View file

@ -0,0 +1,33 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.IndestructibleAbility;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.constants.SuperType;
/**
* @author TheElk801
*/
public final class VecnaToken extends TokenImpl {
public VecnaToken() {
super("Vecna", "Vecna, a legendary 8/8 black Zombie God creature token with indestructible and all triggered abilities of the exiled cards");
supertype.add(SuperType.LEGENDARY);
cardType.add(CardType.CREATURE);
color.setBlack(true);
subtype.add(SubType.ZOMBIE);
subtype.add(SubType.GOD);
power = new MageInt(8);
toughness = new MageInt(8);
addAbility(IndestructibleAbility.getInstance());
}
private VecnaToken(final VecnaToken token) {
super(token);
}
public VecnaToken copy() {
return new VecnaToken(this);
}
}