MArcomage

Free multiplayer on-line fantasy card game

Please log in


6 6 6 C
Phoenix feather
Phoenix feather

Burning

If #Burning in hand = 2
Summons Phoenix
else
Gems: +14

Id
438
Name
Phoenix feather
Rarity
Common
Keywords
Cost (B / G / R)
6 / 6 / 6
Modes
0
Level
10
Created
11. Apr, 2009
Modified
29. Oct, 2016
Played
2248 / 27179
Discarded
1584 / 11096
Drawn
4928 / 49768

BB code

Effect

If #Burning in hand = 2
Summons Phoenix
else
Gems: +14

Code

    if ($t->keywordCount($t->myData()->Hand, 'Burning') == 2) {
      $t->nextCard(223, true);
    }
    else {
      $t->myData()->addGems(14);
    }