mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-14 08:36:09 +00:00
first commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<h2>Academy</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">In the academy new unit types can be researched. By increasing its level you can order the research of better units.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(22,4);">
|
||||
<img class="building g22" src="img/x.gif" alt="Academy" title="Academy" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 22;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr></tbody>
|
||||
</table>
|
||||
@@ -0,0 +1,16 @@
|
||||
<h2>Armoury</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">In the armoury's melting furnaces your warriors' armour is enhanced. By increasing its level you can order the fabrication of even better armour.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(13,4);">
|
||||
<img class="building g13" src="img/x.gif" alt="Armoury" title="Armoury" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 13;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr></tbody>
|
||||
</table>
|
||||
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
$bid = $_GET['bid'];
|
||||
unset($_GET['bid']);
|
||||
$bindicator = $building->canBuild($id,$bid);
|
||||
$uprequire = $building->resourceRequired($id,$bid);
|
||||
?>
|
||||
<td class="res">
|
||||
<img class="r1" src="img/x.gif" alt="Lumber" title="Lumber" /><?php echo $uprequire['wood']; ?> | <img class="r2" src="img/x.gif" alt="Clay" title="Clay" /><?php echo $uprequire['clay']; ?> | <img class="r3" src="img/x.gif" alt="Iron" title="Iron" /><?php echo $uprequire['iron']; ?> | <img class="r4" src="img/x.gif" alt="Crop" title="Crop" /><?php echo $uprequire['crop']; ?> | <img class="r5" src="img/x.gif" alt="Crop consumption" title="Crop consumption" /><?php echo $uprequire['pop']; ?> | <img class="clock" src="img/x.gif" alt="duration" title="duration" /><?php echo $generator->getTimeFormat($uprequire['time']);
|
||||
|
||||
if($session->userinfo['gold'] >= 3 && $building->getTypeLevel(17) >= 1) {
|
||||
echo "|<a href=\"build.php?gid=17&t=3&r1=".$uprequire['wood']."&r2=".$uprequire['clay']."&r3=".$uprequire['iron']."&r4=".$uprequire['crop']."\" title=\"NPC trade\"><img class=\"npc\" src=\"img/x.gif\" alt=\"NPC trade\" title=\"NPC trade\" /></a>";
|
||||
} ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="link">
|
||||
<?php
|
||||
if($bindicator == 2) {
|
||||
echo "<span class=\"none\">The workers are already at work.</span>";
|
||||
}
|
||||
else if($bindicator == 3) {
|
||||
echo "<span class=\"none\">The workers are already at work. (waiting loop)</span>";
|
||||
}
|
||||
else if($bindicator == 4) {
|
||||
echo "<span class=\"none\">Not enough food. Expand cropland.</span>";
|
||||
}
|
||||
else if($bindicator == 5) {
|
||||
echo "<span class=\"none\">Upgrade Warehouse.</span>";
|
||||
}
|
||||
else if($bindicator == 6) {
|
||||
echo "<span class=\"none\">Upgrade Granary.</span>";
|
||||
}
|
||||
else if($bindicator == 7) {
|
||||
$neededtime = $building->calculateAvaliable($id,$bid);
|
||||
echo "<span class=\"none\">Enough resources ".$neededtime[0]." at ".$neededtime[1]."</span>";
|
||||
}
|
||||
else if($bindicator == 8) {
|
||||
echo "<a class=\"build\" href=\"dorf2.php?a=$bid&id=$id&c=".$session->checker."\">Construct building.</a>";
|
||||
}
|
||||
else if($bindicator == 9) {
|
||||
echo "<a class=\"build\" href=\"dorf2.php?a=$bid&id=$id&c=".$session->checker."\">Construct building. (waiting loop)</a>";
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
@@ -0,0 +1,16 @@
|
||||
<h2>Bakery</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">Here the flour produced in your mill is used to bake bread. In conjunction with the grain mill the increase in crop production can go up to 50 percent.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(9,4);">
|
||||
<img class="building g9" src="img/x.gif" alt="Bakery" title="Bakery" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 9;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr></tbody>
|
||||
</table>
|
||||
@@ -0,0 +1,17 @@
|
||||
<h2>Barracks</h2>
|
||||
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">In the barracks infantry can be trained. The higher its level the faster the troops are trained.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(19,4);">
|
||||
<img class="building g19" src="img/x.gif" alt="Barracks" title="Barracks" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 19;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -0,0 +1,18 @@
|
||||
<h2>Blacksmith</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">In the blacksmith's melting furnaces your warriors' weapons are enhanced. By increasing its level you can order the fabrication of even better weapons.
|
||||
|
||||
</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(12,4);">
|
||||
<img class="building g12" src="img/x.gif" alt="Blacksmith" title="Blacksmith" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 12;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr></tbody>
|
||||
</table>
|
||||
@@ -0,0 +1,16 @@
|
||||
<h2>Brewery</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">In the Teuton’s brewery mead is brewed, the soldiers drink to give themselves Dutch courage before battle. The higher the level of the brewery, the greater is the attack bonus. The mead-festivals always last 72 hours.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(19,4);">
|
||||
<img class="building g35" src="img/x.gif" alt="Brewery" title="Brewery" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 35;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -0,0 +1,16 @@
|
||||
<h2>Brickyard</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">Here clay is processed into bricks. Based on its level your Brickyard can increase your clay production up to 25 percent.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(6,4);">
|
||||
<img class="building g6" src="img/x.gif" alt="Brickyard" title="Brickyard" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 6;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr></tbody>
|
||||
</table>
|
||||
@@ -0,0 +1,15 @@
|
||||
<h2>City Wall</h2>
|
||||
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">By building a City 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.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 31;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -0,0 +1,17 @@
|
||||
<h2>Cranny</h2>
|
||||
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">The cranny is used to hide some of your resources when the village is attacked. These resources cannot be stolen.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(26,4);">
|
||||
<img class="building g23" src="img/x.gif" alt="Cranny" title="Cranny" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 23;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -0,0 +1,15 @@
|
||||
<h2>Earth Wall</h2>
|
||||
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">By building an Earth Wall you can protect your village against the barbarian hordes of your enemies. A higher level Earth Wall will give your troops a higher defence bonus.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 32;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -0,0 +1,17 @@
|
||||
<h2>Embassy</h2>
|
||||
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">The embassy is a place for diplomats. The higher its level the more options the king gains.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(18,4);">
|
||||
<img class="building g18" src="img/x.gif" alt="Embassy" title="Embassy" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 18;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -0,0 +1,16 @@
|
||||
<h2>Grain Mill</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">Here your grain is milled in order to produce flour. Based on its level your grain mill can increase your crop production by up to 25 percent.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(8,4);">
|
||||
<img class="building g8" src="img/x.gif" alt="Grain Mill" title="Grain Mill" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 8;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr></tbody>
|
||||
</table>
|
||||
@@ -0,0 +1,18 @@
|
||||
|
||||
<h2>Granary</h2>
|
||||
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">In the granary the crop produced in your farms is stored. By increasing its level you increase the granary’s capacity.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(11,4);">
|
||||
<img class="building g11" src="img/x.gif" alt="Granary" title="Granary" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 11;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -0,0 +1,17 @@
|
||||
<h2>Great Barracks</h2>
|
||||
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">In the great barracks infantry can be trained, albeit at triple the cost of a standard unit. The higher its level the faster the troops are trained.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(29,4);">
|
||||
<img class="building g29" src="img/x.gif" alt="Great Barracks" title="Great Barracks" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 29;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -0,0 +1,18 @@
|
||||
|
||||
<h2>Great Granary</h2>
|
||||
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">Crop produced by your farms is stored in the granary. The great granary offers you more space and keeps your crops drier and safer than the normal one.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(39,4);">
|
||||
<img class="building g39" src="img/x.gif" alt="Great Granary" title="Great Granary" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 39;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -0,0 +1,16 @@
|
||||
<h2>Great Stable</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">In the great stable cavalry is trained, albeit at triple the cost of a standard unit. The higher its level the faster the troops are trained.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(30,4);">
|
||||
<img class="building g30" src="img/x.gif" alt="Great Stable" title="Great Stable" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 30;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr></tbody>
|
||||
</table>
|
||||
@@ -0,0 +1,17 @@
|
||||
<h2>Great Warehouse</h2>
|
||||
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="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.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(38,4);">
|
||||
<img class="building g38" src="img/x.gif" alt="Great Warehouse" title="Great Warehouse" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 38;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -0,0 +1,16 @@
|
||||
<h2>Great Workshop</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">In the great workshop siege engines like catapults and rams can be built, albeit at triple the cost of a standard unit. The higher its level the faster units are produced.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(42,4);">
|
||||
<img class="building g42" src="img/x.gif" alt="Great Workshop" title="Great Workshop" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 42;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr></tbody>
|
||||
</table>
|
||||
@@ -0,0 +1,17 @@
|
||||
<h2>Hero's Mansion</h2>
|
||||
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">In the Hero's Mansion you can train a hero and starting with building level 10 occupy oases in your surrounding area.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(37,4);">
|
||||
<img class="building g37" src="img/x.gif" alt="Hero's Mansion" title="Hero's Mansion" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 37;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -0,0 +1,16 @@
|
||||
<h2>Horse Drinking Trough</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">The horse drinking trough cares for the well-being of your horses, lowers their crop consumption and makes their training faster.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(41,4);">
|
||||
<img class="building g41" src="img/x.gif" alt="Horse Drinking Trough" title="Horse Drinking Trough" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 41;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr></tbody>
|
||||
</table>
|
||||
@@ -0,0 +1,16 @@
|
||||
<h2>Iron Foundry</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">Iron is melted here. Based on its level your Iron Foundry can increase your iron production up to 25 percent.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(7,4);">
|
||||
<img class="building g7" src="img/x.gif" alt="Iron Foundry" title="Iron Foundry" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 7;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr></tbody>
|
||||
</table>
|
||||
@@ -0,0 +1,17 @@
|
||||
<h2>Main Building</h2>
|
||||
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">In the main building the village's master builders live. The higher its level the faster your master builders complete the construction of new buildings.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(10,4);">
|
||||
<img class="building g15" src="img/x.gif" alt="Main Building" title="Main Building" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 15;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -0,0 +1,16 @@
|
||||
<h2>Marketplace</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">At the marketplace you can trade resources with other players. The higher its level, the more resources can be transported at the same time.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(17,4);">
|
||||
<img class="building g17" src="img/x.gif" alt="Marketplace" title="Marketplace" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 17;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -0,0 +1,16 @@
|
||||
<h2>Palace</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">The king or queen of the empire lives in the palace. Only one palace can exist in your realm at a time. You need a palace in order to proclaim a village to be your capital.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(26,4);">
|
||||
<img class="building g26" src="img/x.gif" alt="Palace" title="Palace" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 26;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr></tbody>
|
||||
</table>
|
||||
@@ -0,0 +1,15 @@
|
||||
<h2>Palisade</h2>
|
||||
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">By building a Palisade you can protect your village against the barbarian hordes of your enemies. A higher level Palisade will give your troops a higher defence bonus.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 33;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -0,0 +1,17 @@
|
||||
<h2>Rally point</h2>
|
||||
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">Your village's troops meet here. From here you can send them out to conquer, raid or reinforce other villages.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(16,4);">
|
||||
<img class="g16" src="img/x.gif" alt="Rally point" title="Rally point" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 16;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -0,0 +1,16 @@
|
||||
<h2>Residence</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">The residence is a small palace, where the king or queen lives when (s)he visits the village. The residence protects the village against enemies who want to conquer it.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(25,4);">
|
||||
<img class="building g25" src="img/x.gif" alt="Residence" title="Residence" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 25;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr></tbody>
|
||||
</table>
|
||||
@@ -0,0 +1,16 @@
|
||||
<h2>Sawmill</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">Here lumber delivered by your woodcutters is processed. Based on its level your Sawmill can increase your lumber production up to 25 percent.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(5,4);">
|
||||
<img class="building g5" src="img/x.gif" alt="Sawmill" title="Sawmill" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 5;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr></tbody>
|
||||
</table>
|
||||
@@ -0,0 +1,16 @@
|
||||
<h2>Stable</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">In the stable cavalry is trained. The higher its level the faster the troops are trained.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(20,4);">
|
||||
<img class="building g20" src="img/x.gif" alt="Stable" title="Stable" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 20;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr></tbody>
|
||||
</table>
|
||||
@@ -0,0 +1,16 @@
|
||||
<h2>Stonemason's Lodge</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">The stonemason's lodge is an expert in cutting stone. The further the building is extended the higher the stability of the village's buildings.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(34,4);">
|
||||
<img class="building g34" src="img/x.gif" alt="Stonemason's Lodge" title="Stonemason's Lodge" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 34;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr></tbody>
|
||||
</table>
|
||||
@@ -0,0 +1,16 @@
|
||||
<h2>Town Hall</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">In the Town Hall you can hold pompous celebrations. Such a celebration increases your culture points.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(24,4);">
|
||||
<img class="building g24" src="img/x.gif" alt="Town Hall" title="Town Hall" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 24;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr></tbody>
|
||||
</table>
|
||||
@@ -0,0 +1,16 @@
|
||||
<h2>Trade Office</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">In the trade office the merchants' carts get improved and equipped with powerful horses. The higher its level the more your merchants are able to carry.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(28,4);">
|
||||
<img class="building g28" src="img/x.gif" alt="Trade Office" title="Trade Office" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 28;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr></tbody>
|
||||
</table>
|
||||
@@ -0,0 +1,16 @@
|
||||
<h2>Trapper</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">The Trapper protects your village with well hidden traps. Enemies can be imprisoned and won't be able to harm your village anymore. </td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(36,4);">
|
||||
<img class="building g36" src="img/x.gif" alt="Trapper" title="Trapper" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 36;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr></tbody>
|
||||
</table>
|
||||
@@ -0,0 +1,16 @@
|
||||
<h2>Treasury</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">The riches of your empire are kept in the treasury. The treasury has room for one treasure. After you have captured an artefact it takes 24 hours to be effective.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(27,4);">
|
||||
<img class="building g27" src="img/x.gif" alt="Treasury" title="Treasury" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 27;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr></tbody>
|
||||
</table>
|
||||
@@ -0,0 +1,16 @@
|
||||
<h2>Tournament Square</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">At the tournament square your troops can train to increase their stamina. The further the building is upgraded the faster your troops are beyond a minimum distance of 30 squares.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(14,4);">
|
||||
<img class="building g14" src="img/x.gif" alt="Tournament Square" title="Tournament Square" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 14;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr></tbody>
|
||||
</table>
|
||||
@@ -0,0 +1,17 @@
|
||||
<h2>Warehouse</h2>
|
||||
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">In your warehouse the resources lumber, clay and iron are stored. By increasing its level you increase your warehouse's capacity.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(10,4);">
|
||||
<img class="building g10" src="img/x.gif" alt="Warehouse" title="Warehouse" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 10;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
@@ -0,0 +1,16 @@
|
||||
<h2>Workshop</h2>
|
||||
<table class="new_building" cellpadding="1" cellspacing="1">
|
||||
<tbody><tr>
|
||||
<td class="desc">In the workshop siege engines like catapults and rams can be built. The higher its level the faster units are produced.</td>
|
||||
<td rowspan="3" class="bimg">
|
||||
<a href="#" onClick="return Popup(21,4);">
|
||||
<img class="building g21" src="img/x.gif" alt="Workshop" title="Workshop" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
$_GET['bid'] = 21;
|
||||
include("availupgrade.tpl");
|
||||
?>
|
||||
</tr></tbody>
|
||||
</table>
|
||||
Reference in New Issue
Block a user