mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 00:24:23 +00:00
35 lines
1.4 KiB
Smarty
35 lines
1.4 KiB
Smarty
<?php
|
|
$tribe = $session->tribe;
|
|
$start = ($tribe-1)*10+1;
|
|
$end = ($tribe*10);
|
|
echo "<tr><th> </th>";
|
|
for($i=$start;$i<=($end);$i++) {
|
|
echo "<td><img src=\"img/x.gif\" class=\"unit u$i\" title=\"".$technology->getUnitName($i)."\" alt=\"".$technology->getUnitName($i)."\" /></td>";
|
|
}
|
|
if($village->unitarray['hero'] != 0) {
|
|
echo "<td><img src=\"img/x.gif\" class=\"unit uhero\" title=\"Hero\" alt=\"Hero\" /></td>";
|
|
}
|
|
|
|
?>
|
|
</tr><tr><th><?php echo TROOPS;?></th>
|
|
<?php
|
|
for($i=$start;$i<=$end;$i++) {
|
|
if($village->unitarray['u'.$i] == 0) {
|
|
echo "<td class=\"none\">";
|
|
}
|
|
else {
|
|
echo "<td>";
|
|
}
|
|
echo $village->unitarray['u'.$i]."</td>";
|
|
}
|
|
|
|
if($village->unitarray['hero'] != 0) {
|
|
echo "<td>";
|
|
echo $village->unitarray['hero']."</td>";
|
|
}
|
|
|
|
?>
|
|
</tr></tbody>
|
|
<tbody class="infos"><tr><th><?php echo UPKEEP;?></th>
|
|
<td colspan="<?php if($village->unitarray['hero'] == 0) {echo"10";}else{echo"11";}?>"><?php echo $technology->getUpkeep($village->unitarray,0); ?><img class="r4" src="img/x.gif" title="Crop" alt="Crop" /><?php echo PER_HR;?></td></tr>
|