mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[NEO] Implemented Invoke the Ancients
This commit is contained in:
parent
8a9b5dcf8e
commit
be8fec609d
3 changed files with 122 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue