Divine intervention
Player(s) with most Holy in hand gains
Tower: +9
Wall: +17
Cost (B / G / R)
0 / 10 / 0
BB code
Effect
Player(s) with most Holy in hand gains
Tower: +9
Wall: +17
Code
$my_count = $t->keywordCount($t->myData()->Hand, 'Holy');
$his_count = $t->keywordCount($t->hisData()->Hand, 'Holy');
if ($my_count >= $his_count) {
$t->myData()->addTower(9)->addWall(17);
}
if ($my_count <= $his_count) {
$t->hisData()->addTower(9)->addWall(17);
}