MArcomage

Free multiplayer on-line fantasy card game

Please log in


6 C
Thunderbird
Thunderbird

Beast Destruction

If last card played cost gems
Enemy stock: -3
else
Gems: +9

Id
657
Name
Thunderbird
Rarity
Common
Keywords
Cost (B / G / R)
0 / 6 / 0
Modes
0
Level
8
Created
6. Jan, 2012
Modified
6. Jan, 2012
Played
9802 / 25286
Discarded
2111 / 5995
Drawn
13876 / 37105

BB code

Effect

If last card played cost gems
Enemy stock: -3
else
Gems: +9

Code

    if ($t->myLastAction() == 'play' && $t->myLastCard()->getResources('Gems') > 0) {
      $t->hisData()->addStock(-3);
    }
    else {
      $t->myData()->addGems(9);
    }