[ONE] Implement Urabrask's Forge

This commit is contained in:
theelk801 2023-01-15 14:23:38 -05:00
parent 630617b6d0
commit 6e6a08fe78
3 changed files with 128 additions and 0 deletions

View file

@ -0,0 +1,39 @@
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 PhyrexianHorrorToken extends TokenImpl {
public PhyrexianHorrorToken(int xValue) {
super("Phyrexian Token", "X/1 red Phyrexian Horror creature token with trample and haste");
cardType.add(CardType.CREATURE);
color.setRed(true);
subtype.add(SubType.PHYREXIAN);
subtype.add(SubType.HORROR);
power = new MageInt(xValue);
toughness = new MageInt(1);
addAbility(TrampleAbility.getInstance());
addAbility(HasteAbility.getInstance());
availableImageSetCodes = Arrays.asList("ONE");
}
public PhyrexianHorrorToken(final PhyrexianHorrorToken token) {
super(token);
}
@Override
public PhyrexianHorrorToken copy() {
return new PhyrexianHorrorToken(this);
}
}