MArcomage

Free multiplayer on-line fantasy card game

Please log in


18 14 R
Wicked ritual
Wicked ritual

Discard all Titan cards from hand
Attack: 30N
N = #unique discarded cards

Id
482
Name
Wicked ritual
Rarity
Rare
Keywords
Cost (B / G / R)
0 / 18 / 14
Modes
0
Level
9
Created
24. Oct, 2009
Modified
7. Apr, 2012
Played
111 / 671
Discarded
73 / 554
Drawn
279 / 1882

BB code

Effect

Discard all Titan cards from hand
Attack: 30N
N = #unique discarded cards

Code

    $storage = array();
    for ($i = 1; $i <= $t->handSize(); $i++) {
      if ($i != $t->cardPos() && $t->getCard($t->myData()->Hand[$i])->hasKeyword('Titan')) {
        $storage[] = $t->myData()->Hand[$i];
        $t->setCard('my', $i, $t->drawCard($t->myDeck(), $t->myData()->Hand, $i, 'drawCardRandom'));
      }
    }
    if (count($storage) > 0) {
      $storage = array_unique($storage);
      $discarded = count($storage);
      $t->hisData()->attack(30 * $discarded);
    }