Harpy hag
Attack: 3
If all cards in hand are common
Discard your hand and draw new starting hand
Cost (B / G / R)
0 / 3 / 3
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();
}