Outnumbered and outmatched
If Recruits - Enemy recruits > 35
Recruits: -35
Enemy tower: = 1
Enemy wall: = 0
Name
Outnumbered and outmatched
Cost (B / G / R)
0 / 0 / 0
BB code
Effect
If Recruits - Enemy recruits > 35
Recruits: -35
Enemy tower: = 1
Enemy wall: = 0
Code
if (($t->myData()->Recruits - $t->hisData()->Recruits) > 35) {
$t->myData()->addRecruits(-35);
$t->hisData()->setTower(1)->setWall(0);
}