MArcomage

Free multiplayer on-line fantasy card game

Please log in

Keywords > Legend

Icon

Legend

Effect

Forgotten power - if there is a rare card in hand (other than played card), raises lowest facility by one.

Lore

Legendary creatures are often present in fairy tales. Rumors say that those who are able to spot these creatures will receive their blessing. Although it's difficult to verify if the rumors are true, some legendary creatures were sighted as they were fighting battles as an ally of one of the factions for unknown reasons. Some say they are attracted to higher magic, others say that they just came to help to even the balance.

Code

    for ($i = 1; $i <= $t->handSize(); $i++) {
      // played card does not count
      if ($i != $t->cardPos()) {
        $cur_card = $this->getCard($t->myData()->Hand[$i]);
        if ($cur_card->getRarity() == 'Rare') {
          $t->myData()->addLowestFacility(1);
          break;
        }
      }
    }