MArcomage

Free multiplayer on-line fantasy card game

Please log in


10 U
Divine intervention
Divine intervention

Player(s) with most Holy in hand gains
Tower: +9
Wall: +17

Id
431
Name
Divine intervention
Rarity
Uncommon
Keywords
Cost (B / G / R)
0 / 10 / 0
Modes
0
Level
6
Created
11. Apr, 2009
Modified
24. Sep, 2011
Played
2713 / 16480
Discarded
351 / 2083
Drawn
3494 / 21722

BB code

Effect

Player(s) with most Holy in hand gains
Tower: +9
Wall: +17

Code

    $my_count = $t->keywordCount($t->myData()->Hand, 'Holy');
    $his_count = $t->keywordCount($t->hisData()->Hand, 'Holy');
    if ($my_count >= $his_count) {
      $t->myData()->addTower(9)->addWall(17);
    }
    if ($my_count <= $his_count) {
      $t->hisData()->addTower(9)->addWall(17);
    }