Harpy warrior
Attack: 2N
N = #Aria + #non-common cards in hand
Cost (B / G / R)
0 / 5 / 6
BB code
Effect
Attack: 2N
N = #Aria + #non-common cards in hand
Code
$aria = $t->keywordCount($t->myData()->Hand, 'Aria');
$noncommon = 0;
for ($i = 1; $i <= $t->handSize(); $i++) {
if ($t->getCard($t->myData()->Hand[$i])->getRarity() != 'Common') {
$noncommon++;
}
}
$t->hisData()->attack(2 * ($aria + $noncommon));