mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 04:12:14 -08:00
[LTC] Implement Lord of the Nazgul
This commit is contained in:
parent
a6e23f9704
commit
394bd7552e
3 changed files with 114 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue