Files
TravianZ/Templates/Build/38.tpl
T
2012-09-01 13:14:35 +03:00

39 lines
1.3 KiB
Smarty

<?php
include("next.tpl");
?>
<div id="build" class="gid38"><a href="#" onClick="return Popup(38,4);" class="build_logo">
<img class="building g38" src="img/x.gif" alt="Great Warehouse" title="Great Warehouse" />
</a>
<h1>Great Warehouse <span class="level">Level <?php echo $village->resarray['f'.$id]; ?></span></h1>
<p class="build_desc">Wood, clay and iron are stored in the warehouse. The great warehouse offers you more space and keeps your goods drier and safer than the normal one.</p>
<table cellpadding="1" cellspacing="1" id="build_value">
<tr>
<th>Current capacity:</th>
<td><b><?php echo $bid38[$village->resarray['f'.$id]]['attri']*STORAGE_MULTIPLIER; ?></b> Resource units</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>Capacity at level <?php echo $next ?>:</th>
<td><b><?php echo $bid38[$next]['attri']*STORAGE_MULTIPLIER; ?></b> Resource units</td>
<?php
}else{
?>
<th>Capacity at level 20:</th>
<td><b><?php echo $bid38[20]['attri']*STORAGE_MULTIPLIER; ?></b> Resource units</td>
<?php
}
}
?>
</tr>
</table>
<?php
include("upgrade.tpl");
?>
</p></div>