Retribution
Recruits prod x2
If Tower or Wall was damaged during opponent's last round
Enemy stock: -2
Cost (B / G / R)
0 / 2 / 0
BB code
Effect
Recruits prod x2
If Tower or Wall was damaged during opponent's last round
Enemy stock: -2
Code
$t->production()->multiplyRecruits(2);
if ($t->myChange('Tower') < 0 || $t->myChange('Wall') < 0) {
$t->hisData()->addStock(-2);
}