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
6990 / 22474
Discarded
1426 / 5310
Drawn
9713 / 32942

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