MArcomage

Free multiplayer on-line fantasy card game

Please log in

Keywords > Titan

Icon

Titan

Effect

Basic gain 19, bonus gain 5, Titan's will - summons a Titan not present in hand.

Lore

One of the titans who didn't get eradicated by the gods was smashed to pieces. Although each piece is alive and can be used as a separate, anyone who is able to find all the pieces and complete them into the greater whole will possess an unstoppable war machine which is feared even by gods.

Code

    $hand = $t->myData()->Hand; unset($hand[$t->cardPos()]);
    $titans = array_diff($this->getList(['keyword'=>'Titan']), $hand);
    if (count($titans) > 0) {
      $t->nextCard($this->drawCard($titans, $t->myData()->Hand, $t->cardPos(), 'drawCardList'));
    }