Poseidon's wrath
Player(s) with fewest Aqua in hand suffers
Tower: -15
Wall: -15
Stock: -10
Cost (B / G / R)
0 / 30 / 0
BB code
Effect
Player(s) with fewest Aqua in hand suffers
Tower: -15
Wall: -15
Stock: -10
Code
$my_count = $t->keywordCount($t->myData()->Hand, 'Aqua');
$his_count = $t->keywordCount($t->hisData()->Hand, 'Aqua');
if ($my_count <= $his_count) {
$t->myData()->addTower(-15)->addWall(-15)->addStock(-10);
}
if ($my_count >= $his_count) {
$t->hisData()->addTower(-15)->addWall(-15)->addStock(-10);
}