Troll bridge
Wall: +15
Dungeon: +1
If #Troll in hand > 0
Attack: 15
Cost (B / G / R)
22 / 0 / 0
BB code
Effect
Wall: +15
Dungeon: +1
If #Troll in hand > 0
Attack: 15
Code
$t->myData()->addWall(15)->addDungeons(1);
for ($i = 1; $i <= $t->handSize(); $i++) {
if ($t->myData()->Hand[$i] == 106) {
$t->hisData()->attack(15);
break;
}
}