mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Fix creature type on Rekindling Phoenix token.
Type should be Elemental, not Thrull.
This commit is contained in:
parent
18fdb352b8
commit
c085cabbb0
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue