[NEO] Implemented Gift of Wrath

This commit is contained in:
Evan Kranzler 2022-02-05 09:25:30 -05:00
parent 3cb721fbd9
commit a00e4430d2
3 changed files with 71 additions and 1 deletions

View file

@ -1,6 +1,7 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.MenaceAbility;
import mage.constants.CardType;
import mage.constants.SubType;
@ -10,12 +11,13 @@ import mage.constants.SubType;
public final class SpiritRedToken extends TokenImpl {
public SpiritRedToken() {
super("Spirit token", "2/2 red Spirit creature token");
super("Spirit token", "2/2 red Spirit creature token with menace");
cardType.add(CardType.CREATURE);
subtype.add(SubType.SPIRIT);
color.setRed(true);
power = new MageInt(2);
toughness = new MageInt(2);
addAbility(new MenaceAbility());
}
public SpiritRedToken(final SpiritRedToken token) {