Will o' wisp
Attack: N
N = #non-common cards in opponent's hand
Cost (B / G / R)
0 / 0 / 0
BB code
Effect
Attack: N
N = #non-common cards in opponent's hand
Code
$noncommon = 0;
for ($i = 1; $i <= $t->handSize(); $i++) {
if ($t->getCard($t->hisData()->Hand[$i])->getRarity() != 'Common') {
$noncommon++;
}
}
$t->hisData()->attack($noncommon);