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
+9 -9
View File
@@ -2,16 +2,16 @@
include("next.tpl");
?>
<div id="build" class="gid35"><a href="#" onClick="return Popup(35,4);" class="build_logo">
<img class="building g35" src="img/x.gif" alt="Brewery" title="Brewery" />
<img class="building g35" src="img/x.gif" alt="Brewery" title="<?php echo BREWERY; ?>" />
</a>
<h1>Brewery <span class="level">Level <?php echo $village->resarray['f'.$id]; ?></span></h1>
<p class="build_desc">Tasty mead is brewed in the Brewery and later quaffed by the soldiers during the celebrations.</p>
<h1><?php echo BREWERY; ?> <span class="level"><?php echo LEVEL; ?> <?php echo $village->resarray['f'.$id]; ?></span></h1>
<p class="build_desc"><?php echo BREWERY_DESC; ?></p>
<table cellpadding="1" cellspacing="1" id="build_value">
<tr>
<th>Current bonus:</th>
<td><b><?php echo $bid35[$village->resarray['f'.$id]]['attri']; ?></b> Percent</td>
<th><?php echo CURRENT_BONUS; ?></th>
<td><b><?php echo $bid35[$village->resarray['f'.$id]]['attri']; ?></b> <?php echo PERCENT; ?></td>
</tr>
<tr>
<?php
@@ -19,13 +19,13 @@ include("next.tpl");
$next = $village->resarray['f'.$id]+1+$loopsame+$doublebuild+$master;
if($next<=10){
?>
<th>Bonus at level <?php echo $next; ?>:</th>
<td><b><?php echo $bid35[$next]['attri']; ?></b> Percent</td>
<th><?php echo BONUS_LEVEL; ?> <?php echo $next; ?>:</th>
<td><b><?php echo $bid35[$next]['attri']; ?></b> <?php echo PERCENT; ?></td>
<?php
}else{
?>
<th>Bonus at level 10:</th>
<td><b><?php echo $bid35[10]['attri']; ?></b> Percent</td>
<th><?php echo BONUS_LEVEL; ?> 10:</th>
<td><b><?php echo $bid35[10]['attri']; ?></b> <?php echo PERCENT; ?></td>
<?php
}}
?>