mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[NEO] Implemented Gift of Wrath
This commit is contained in:
parent
3cb721fbd9
commit
a00e4430d2
3 changed files with 71 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue