This commit is contained in:
Shadow
2014-05-12 08:43:32 +03:00
parent 7cfa82a18d
commit e337ac2b4d
93 changed files with 2105 additions and 1957 deletions
+8 -8
View File
@@ -2,27 +2,27 @@
include("next.tpl");
?>
<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>
<h1><?php echo EARTHWALL; ?> <span class="level"><?php echo LEVEL; ?> <?php echo $village->resarray['f'.$id]; ?></span></h1>
<p class="build_desc"><?php echo EARTHWALL_DESC; ?></p>
<table cellpadding="1" cellspacing="1" id="build_value">
<tr>
<th>Defence Bonus now:</th>
<td><b><?php echo $bid32[$village->resarray['f'.$id]]['attri']; ?></b> Percent</td>
<th><?php echo DEFENCE_NOW; ?></th>
<td><b><?php echo $bid32[$village->resarray['f'.$id]]['attri']; ?></b> <?php echo PERCENT; ?></td>
</tr><tr>
<?php
if(!$building->isMax($village->resarray['f'.$id.'t'],$id)) {
$next = $village->resarray['f'.$id]+1+$loopsame+$doublebuild+$master;
if($next<=20){
?>
<th>Defence Bonus at level <?php echo $next; ?>:</th>
<th><?php echo DEFENCE_LEVEL; ?> <?php echo $next; ?>:</th>
<td><b><?php echo $bid32[$next]['attri']; ?></b> Percent</td>
<td><b><?php echo $bid32[$next]['attri']; ?></b> <?php echo PERCENT; ?></td>
<?php
}else{
?>
<th>Defence Bonus at level 20:</th>
<td><b><?php echo $bid32[20]['attri']; ?></b> Percent</td>
<th><?php echo DEFENCE_LEVEL; ?> 20:</th>
<td><b><?php echo $bid32[20]['attri']; ?></b> <?php echo PERCENT; ?></td>
<?php
}
}