MArcomage

Free multiplayer on-line fantasy card game

Please log in


9 U
Revenge of the fallen
Revenge of the fallen

Player(s) with fewest Brigand or Undead in hand suffers
Highest facility: -1

Id
439
Name
Revenge of the fallen
Rarity
Uncommon
Keywords
Cost (B / G / R)
0 / 9 / 0
Modes
0
Level
8
Created
11. Apr, 2009
Modified
8. Sep, 2012
Played
1004 / 7521
Discarded
123 / 1122
Drawn
1286 / 10010

BB code

Effect

Player(s) with fewest Brigand or Undead in hand suffers
Highest facility: -1

Code

    $my_count = $t->keywordCount($t->myData()->Hand, 'Brigand') + $t->keywordCount($t->myData()->Hand, 'Undead');
    $his_count = $t->keywordCount($t->hisData()->Hand, 'Brigand') + $t->keywordCount($t->hisData()->Hand, 'Undead');
    if ($my_count <= $his_count) {
      $t->myData()->addHighestFacility(-1);
    }
    if ($my_count >= $his_count) {
      $t->hisData()->addHighestFacility(-1);
    }