Fix creature type on Rekindling Phoenix token.

Type should be Elemental, not Thrull.
This commit is contained in:
Patrick Hulin 2019-08-17 15:04:16 -04:00
parent 18fdb352b8
commit c085cabbb0

View file

@ -27,7 +27,7 @@ public final class RekindlingPhoenixToken extends TokenImpl {
super("Elemental", "0/1 red Elemental creature token with \"At the beginning of your upkeep, sacrifice this creature and return target card named Rekindling Phoenix from your graveyard to the battlefield. It gains haste until end of turn.\"");
setTokenType(1);
cardType.add(CardType.CREATURE);
subtype.add(SubType.THRULL);
subtype.add(SubType.ELEMENTAL);
color.setRed(true);
power = new MageInt(0);
toughness = new MageInt(1);