MArcomage

Free multiplayer on-line fantasy card game

Please log in


26 U
Unholy shrine
Unholy shrine

Undead

Discard up to 5 Undead from hand except the selected card
Wall: +10N
N = #discarded cards

Id
321
Name
Unholy shrine
Rarity
Uncommon
Keywords
Cost (B / G / R)
26 / 0 / 0
Modes
8
Level
10
Created
25. Nov, 2007
Modified
24. Dec, 2011
Played
628 / 4125
Discarded
661 / 3726
Drawn
1940 / 11602

BB code

Effect

Discard up to 5 Undead from hand except the selected card
Wall: +10N
N = #discarded cards

Code

    $storage = array();
    for ($i = 1; $i <= $t->handSize(); $i++) {
      if ($t->getCard($t->myData()->Hand[$i])->hasKeyword('Undead') && $i != $t->mode() && $i != $t->cardPos()) {
        $storage[$i] = $i;
      }
    }
    shuffle($storage); $tmp = 0;
    for ($i = 0; ($i < count($storage) && $i < 5); $i++) {
      $t->setCard('my', $storage[$i], $t->drawCard($t->myDeck(), $t->myData()->Hand, $storage[$i], 'drawCardRandom'));
      $tmp++;
    }
    $t->myData()->addWall(10 * $tmp);