Goblin regiment
Attack: 30
Replace all common cards in hand with Goblin flankers
Recruits: +2N
N = #replaced cards
Cost (B / G / R)
0 / 0 / 23
BB code
Effect
Attack: 30
Replace all common cards in hand with Goblin flankers
Recruits: +2N
N = #replaced cards
Code
$t->hisData()->attack(30); $tmp = 0;
for ($i = 1; $i <= $t->handSize(); $i++) {
if ($i != $t->cardPos() && $t->getCard($t->myData()->Hand[$i])->getRarity() == 'Common') {
$t->setCard('my', $i, 13, ['reveal' => true]); $tmp++;
}
}
$t->myData()->addRecruits($tmp * 2);