Darkling
Wall: +5 - N
Steals N random resources
N = #zero cost cards in opponent's hand
Cost (B / G / R)
0 / 0 / 1
BB code
Effect
Wall: +5 - N
Steals N random resources
N = #zero cost cards in opponent's hand
Code
$count = 0;
for ($i = 1; $i <= $t->handSize(); $i++) {
if ($t->getCard($t->hisData()->Hand[$i])->getResources() == 0) {
$count++;
}
}
$t->myData()->addWall(5 - $count);
$t->stealRandomResources('my', $count);