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
2417 / 27348
Discarded
1693 / 11205
Drawn
5344 / 50184

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);
    }