[NEO] Implemented Invoke the Ancients

This commit is contained in:
Evan Kranzler 2022-02-04 07:50:49 -05:00
parent 8a9b5dcf8e
commit be8fec609d
3 changed files with 122 additions and 0 deletions

View file

@ -0,0 +1,28 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class SpiritGreenToken extends TokenImpl {
public SpiritGreenToken() {
super("Spirit token", "4/5 green Spirit creature token");
cardType.add(CardType.CREATURE);
subtype.add(SubType.SPIRIT);
color.setGreen(true);
power = new MageInt(4);
toughness = new MageInt(5);
}
public SpiritGreenToken(final SpiritGreenToken token) {
super(token);
}
public SpiritGreenToken copy() {
return new SpiritGreenToken(this);
}
}