Anomaly sphere
Negates the positive effect of opponent's last round on his tower, wall, facilities and stock
Cost (B / G / R)
0 / 10 / 0
BB code
Effect
Negates the positive effect of opponent's last round on his tower, wall, facilities and stock
Code
$t->hisData()
->addTower(-max(0, $t->hisChange('Tower')))
->addWall(-max(0, $t->hisChange('Wall')))
->addQuarry(-max(0, $t->hisChange('Quarry')))
->addMagic(-max(0, $t->hisChange('Magic')))
->addDungeons(-max(0, $t->hisChange('Dungeons')))
->addBricks(-max(0, $t->hisChange('Bricks')))
->addGems(-max(0, $t->hisChange('Gems')))
->addRecruits(-max(0, $t->hisChange('Recruits')));