forked from External/mage
32 lines
911 B
Java
32 lines
911 B
Java
|
|
package mage.game.permanent.token;
|
|
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.constants.SuperType;
|
|
|
|
/**
|
|
*
|
|
* @author spjspj
|
|
*/
|
|
public final class NissaSageAnimistToken extends TokenImpl {
|
|
|
|
public NissaSageAnimistToken() {
|
|
super("Ashaya, the Awoken World", "legendary 4/4 green Elemental creature token named Ashaya, the Awoken World");
|
|
this.setOriginalExpansionSetCode("ORI");
|
|
this.addSuperType(SuperType.LEGENDARY);
|
|
this.getPower().modifyBaseValue(4);
|
|
this.getToughness().modifyBaseValue(4);
|
|
this.color.setGreen(true);
|
|
this.getSubtype(null).add(SubType.ELEMENTAL);
|
|
this.addCardType(CardType.CREATURE);
|
|
}
|
|
|
|
public NissaSageAnimistToken(final NissaSageAnimistToken token) {
|
|
super(token);
|
|
}
|
|
|
|
public NissaSageAnimistToken copy() {
|
|
return new NissaSageAnimistToken(this);
|
|
}
|
|
}
|