MArcomage

Free multiplayer on-line fantasy card game

Please log in


22 22 U
Corpses behemoth
Corpses behemoth

Undead

Discard all Undead from hand except the selected card
Attack: 9N
N = #discarded cards

Id
372
Name
Corpses behemoth
Rarity
Uncommon
Keywords
Cost (B / G / R)
0 / 22 / 22
Modes
8
Level
10
Created
30. Jul, 2008
Modified
30. Jul, 2008
Played
682 / 4822
Discarded
621 / 4137
Drawn
1930 / 13416

BB code

Effect

Discard all Undead from hand except the selected card
Attack: 9N
N = #discarded cards

Code

    $tmp = 0;
    for ($i = 1; $i <= $t->handSize(); $i++) {
      if ($t->getCard($t->myData()->Hand[$i])->hasKeyword('Undead') && $i != $t->mode() && $i != $t->cardPos()) {
        $t->setCard('my', $i, $t->drawCard($t->myDeck(), $t->myData()->Hand, $i, 'drawCardRandom'));
        $tmp++;
      }
    }
    $t->hisData()->attack(9 * $tmp);