[LCI] Implement Vito, Fanatic of Aclazotz

This commit is contained in:
Susucre 2023-10-26 12:50:39 +02:00
parent 958fb4c239
commit 1c4b35baa8
3 changed files with 104 additions and 0 deletions

View file

@ -0,0 +1,34 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author Susucr
*/
public final class VampireDemonToken extends TokenImpl {
public VampireDemonToken() {
super("Vampire Demon Token", "4/3 white and black Vampire Demon creature token with flying");
cardType.add(CardType.CREATURE);
color.setWhite(true);
color.setBlack(true);
subtype.add(SubType.VAMPIRE);
subtype.add(SubType.DEMON);
power = new MageInt(4);
toughness = new MageInt(3);
addAbility(FlyingAbility.getInstance());
}
protected VampireDemonToken(final VampireDemonToken token) {
super(token);
}
@Override
public VampireDemonToken copy() {
return new VampireDemonToken(this);
}
}