[LTC] Implement Lord of the Nazgul

This commit is contained in:
PurpleCrowbar 2023-07-19 04:47:09 +01:00
parent a6e23f9704
commit 394bd7552e
3 changed files with 114 additions and 0 deletions

View file

@ -0,0 +1,31 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.MenaceAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author PurpleCrowbar
*/
public final class WraithToken extends TokenImpl {
public WraithToken() {
super("Wraith Token", "3/3 black Wraith creature token with menace");
cardType.add(CardType.CREATURE);
color.setBlack(true);
subtype.add(SubType.WRAITH);
addAbility(new MenaceAbility());
power = new MageInt(3);
toughness = new MageInt(3);
}
public WraithToken(final WraithToken token) {
super(token);
}
@Override
public WraithToken copy() {
return new WraithToken(this);
}
}