[ONE] Implement Nissa, Ascended Animist

This commit is contained in:
theelk801 2023-01-16 16:57:43 -05:00
parent 7996e08286
commit 43c9a98ecd
5 changed files with 151 additions and 12 deletions

View file

@ -0,0 +1,36 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.HasteAbility;
import mage.abilities.keyword.TrampleAbility;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.Arrays;
/**
* @author TheElk801
*/
public final class PhyrexianHorrorGreenToken extends TokenImpl {
public PhyrexianHorrorGreenToken(int xValue) {
super("Phyrexian Horror Token", "X/X green Phyrexian Horror creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
subtype.add(SubType.PHYREXIAN);
subtype.add(SubType.HORROR);
power = new MageInt(xValue);
toughness = new MageInt(xValue);
availableImageSetCodes = Arrays.asList("ONE");
}
public PhyrexianHorrorGreenToken(final PhyrexianHorrorGreenToken token) {
super(token);
}
@Override
public PhyrexianHorrorGreenToken copy() {
return new PhyrexianHorrorGreenToken(this);
}
}

View file

@ -11,10 +11,10 @@ import java.util.Arrays;
/**
* @author TheElk801
*/
public final class PhyrexianHorrorToken extends TokenImpl {
public final class PhyrexianHorrorRedToken extends TokenImpl {
public PhyrexianHorrorToken(int xValue) {
super("Phyrexian Token", "X/1 red Phyrexian Horror creature token with trample and haste");
public PhyrexianHorrorRedToken(int xValue) {
super("Phyrexian Horror Token", "X/1 red Phyrexian Horror creature token with trample and haste");
cardType.add(CardType.CREATURE);
color.setRed(true);
subtype.add(SubType.PHYREXIAN);
@ -28,12 +28,12 @@ public final class PhyrexianHorrorToken extends TokenImpl {
availableImageSetCodes = Arrays.asList("ONE");
}
public PhyrexianHorrorToken(final PhyrexianHorrorToken token) {
public PhyrexianHorrorRedToken(final PhyrexianHorrorRedToken token) {
super(token);
}
@Override
public PhyrexianHorrorToken copy() {
return new PhyrexianHorrorToken(this);
public PhyrexianHorrorRedToken copy() {
return new PhyrexianHorrorRedToken(this);
}
}