MArcomage

Free multiplayer on-line fantasy card game

Please log in


3 3 C
Harpy hag
Harpy hag

Aria Siege

Attack: 3
If all cards in hand are common
Discard your hand and draw new starting hand

Id
696
Name
Harpy hag
Rarity
Common
Keywords
Cost (B / G / R)
0 / 3 / 3
Modes
0
Level
10
Created
1. Jan, 2013
Modified
1. Jan, 2013
Played
133 / 1415
Discarded
741 / 4804
Drawn
1122 / 7398

BB code

Effect

Attack: 3
If all cards in hand are common
Discard your hand and draw new starting hand

Code

    $t->hisData()->attack(3); $found = false;
    for ($i = 1; $i <= $t->handSize(); $i++) {
      if ($i != $t->cardPos() && $t->getCard($t->myData()->Hand[$i])->getRarity() != 'Common') {
        $found = true;
        break;
      }
    }
    if (!$found) {
      $t->setHand('my', $t->drawHandInitial($t->myDeck()));
      $t->noNextCard();
    }