Siege breakers
Attack: 8N
If N > 4
Wall: +15
N = #Soldier in hand (max 4)
Cost (B / G / R)
0 / 0 / 20
BB code
Effect
Attack: 8N
If N > 4
Wall: +15
N = #Soldier in hand (max 4)
Code
$soldiers = $t->keywordCount($t->myData()->Hand, 'Soldier');
$tmp = min(4, $soldiers);
$t->hisData()->attack(8 * $tmp);
if ($soldiers > 4) {
$t->myData()->addWall(15);
}