If opponent lowered your stock last round he loses twice the amount of lost stock (max 8)
No effect on Judge
if (($t->myChange('Bricks') < 0 || $t->myChange('Gems') < 0 || $t->myChange('Recruits') < 0) && $t->hisLastCard()->id() != 364) {
$t->hisData()
->addBricks(min(0, max(-8, 2 * $t->myChange('Bricks'))))
->addGems(min(0, max(-8, 2 * $t->myChange('Gems'))))
->addRecruits(min(0, max(-8, 2 * $t->myChange('Recruits'))));
}