Master of the past
Negates the negative effect of opponent's last round on your tower, wall, facilities and stock
Cost (B / G / R)
0 / 0 / 0
BB code
Effect
Negates the negative effect of opponent's last round on your tower, wall, facilities and stock
Code
$t->myData()
->addTower(-min(0, $t->myChange('Tower')))
->addWall(-min(0, $t->myChange('Wall')))
->addQuarry(-min(0, $t->myChange('Quarry')))
->addMagic(-min(0, $t->myChange('Magic')))
->addDungeons(-min(0, $t->myChange('Dungeons')))
->addBricks(-min(0, $t->myChange('Bricks')))
->addGems(-min(0, $t->myChange('Gems')))
->addRecruits(-min(0, $t->myChange('Recruits')));