Order of the White Lotus
If not New
Balances (average) both players' tower, wall, facilities and stock
Name
Order of the White Lotus
Cost (B / G / R)
0 / 0 / 0
BB code
Effect
If not New
Balances (average) both players' tower, wall, facilities and stock
Code
if (!$t->isMyNew($t->cardPos())) {
$temp_array = ['Tower', 'Wall', 'Quarry', 'Magic', 'Dungeons', 'Bricks', 'Gems', 'Recruits'];
foreach ($temp_array as $attribute) {
$t->myData()->$attribute = $t->hisData()->$attribute = round(($t->myData()->$attribute + $t->hisData()->$attribute) / 2);
}
}