edit trapper + bug fixed: in each resouce places, when you upgrade 2 level with waiting loop, the "production at level ?" must equal to "upgrade to level ?"

This commit is contained in:
unknown
2012-04-10 15:45:16 +03:00
parent f75f7dd699
commit c2a09eca5e
23 changed files with 436 additions and 142 deletions
+15 -3
View File
@@ -1,3 +1,7 @@
<?php
$loopsame = ($building->isCurrent($id) || $building->isLoop($id))?1:0;
$doublebuild = ($building->isCurrent($id) && $building->isLoop($id))?1:0;
?>
<div id="build" class="gid32">
<h1>Earth Wall <span class="level">Level <?php echo $village->resarray['f'.$id]; ?></span></h1>
<p class="build_desc">By building a Earth Wall you can protect your village against the barbarian hordes of your enemies. The higher the wall's level, the higher the bonus given to your forces' defence.</p>
@@ -9,12 +13,20 @@
</tr><tr>
<?php
if(!$building->isMax($village->resarray['f'.$id.'t'],$id)) {
$next = $village->resarray['f'.$id]+1+$loopsame+$doublebuild;
if($next<=20){
?>
<th>Defence Bonus at level <?php echo $village->resarray['f'.$id]+1; ?>:</th>
<th>Defence Bonus at level <?php echo $next; ?>:</th>
<td><b><?php echo $bid32[$village->resarray['f'.$id]+1]['attri']; ?></b> Percent</td>
<td><b><?php echo $bid32[$next]['attri']; ?></b> Percent</td>
<?php
}
}else{
?>
<th>Defence Bonus at level 20:</th>
<td><b><?php echo $bid32[20]['attri']; ?></b> Percent</td>
<?php
}
}
?>
</tr></table>
<?php