forked from halo-battle/game
First code received by Master Leon
This commit is contained in:
commit
4230eb6922
330 changed files with 15543 additions and 0 deletions
87
page/arbre_techno_caserne.php
Normal file
87
page/arbre_techno_caserne.php
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
<? session_start(); ?>
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>Space Battleship</TITLE>
|
||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
|
||||
<link rel="stylesheet" media="screen" name="design" href="design/designtechno.css">
|
||||
<?
|
||||
$id=$_SESSION['id'];
|
||||
$galaxy=$_SESSION['galaxy'];
|
||||
$ss=$_SESSION['ss'];
|
||||
$pos=$_SESSION['pos'];
|
||||
include 'ressource.php';
|
||||
include 'bdd.php';
|
||||
function techno($nom, $niveau, $niveau_ress)
|
||||
{
|
||||
if ($niveau < $niveau_ress)
|
||||
{
|
||||
echo "<font color=red >".$nom." ".$niveau_ress."</font>";
|
||||
}
|
||||
else
|
||||
{
|
||||
echo "<font color=#00CC99 >".$nom." ".$niveau_ress."</font>";
|
||||
}
|
||||
}
|
||||
?>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<center><table><tr><td class="a"><a href="arbre_techno_caserne.php">Caserne</a> |
|
||||
<a href="arbre_techno_technologie.php">Technologies</a> |
|
||||
<a href="arbre_techno_batiments_p.php">Batiments</a>
|
||||
</td></tr></table><br><br></center>
|
||||
|
||||
<TABLE>
|
||||
<tr><td>Image</td><td>Nom</td><td>Techno</td></tr>
|
||||
|
||||
<tr><td><img src="" width="100" height="80" ></td>
|
||||
<td>Soldat bigorneau</td>
|
||||
<td><? @techno(Caserne,$caserne, 1) ?></td></tr>
|
||||
|
||||
<tr><td><img src="" width="100" height="80" ></td>
|
||||
<td>Soldat bigorneau blindé</td>
|
||||
<td><? @techno(Caserne,$caserne, 2) ?><br><? @techno(Blindage,$blindage, 2) ?><br><? @techno(Spécialisation,$specialisation, 3) ?></td></tr>
|
||||
|
||||
<tr><td><img src="" width="100" height="80" ></td>
|
||||
<td>Général</td>
|
||||
<td><? @techno(Caserne,$caserne, 5) ?><br><? @techno(Spécialisation,$specialisation, 6) ?></td></tr>
|
||||
|
||||
<tr><td><img src="descriptions/images/heros.html" width="100" height="80" ></td>
|
||||
<td>Kamikaze</td>
|
||||
<td><? @techno(Caserne,$caserne, 3) ?><br><? @techno(Spécialisation,$specialisation, 5) ?></td></tr>
|
||||
|
||||
<tr><td><img src="" width="100" height="80" ></td>
|
||||
<td>Espion</td>
|
||||
<td><? @techno(Caserne,$caserne, 3) ?><br><? @techno(Spécialisation,$specialisation, 4) ?><br><? @techno(Espionnage,$espionnage, 4) ?></td></tr>
|
||||
|
||||
<tr><td><img src="" width="100" height="80" ></td>
|
||||
<td>Tank crabe</td>
|
||||
<td><? @techno(Caserne,$caserne, 6) ?><br><? @techno(Spécialisation,$specialisation, 7) ?><br><? @techno(Blindage,$blindage, 5) ?></td></tr>
|
||||
|
||||
<tr><td><img src="" width="100" height="80" ></td>
|
||||
<td>Poisson</td>
|
||||
<td><? @techno(Caserne,$caserne, 4) ?></td></tr>
|
||||
|
||||
<tr><td><img src="" width="100" height="80" ></td>
|
||||
<td>Jean-louis</td>
|
||||
<td><? @techno(Caserne,$caserne, 7) ?><br><? @techno(Spécialisation,$specialisation, 9) ?><br><? @techno(Mjolinor,$mjolinor, 1) ?></td></tr>
|
||||
|
||||
<tr><td><img src="" width="100" height="80" ></td>
|
||||
<td>Spartan bigorneau</td>
|
||||
<td><? @techno(Caserne,$caserne, 10) ?><br><? @techno(Spécialisation,$specialisation, 10) ?><br><? @techno(Blindage,$blindage, 7) ?><br><? @techno(Mjolinor,$mjolinor, 2) ?></td></tr>
|
||||
|
||||
<tr><td></td>
|
||||
<td>Défenses</td>
|
||||
<td></td></tr>
|
||||
|
||||
<tr><td><img src="" width="100" height="80" ></td>
|
||||
<td>Barrière de corail</td>
|
||||
<td><? @techno(Caserne,$caserne, 1) ?><br><? @techno(Blindage,$blindage, 6) ?></td></tr>
|
||||
|
||||
<tr><td class="a"><img src="" width="100" height="80" ></td>
|
||||
<td class="a">Mine</td>
|
||||
<td class="a"><? @techno(Caserne,$caserne, 6) ?></td></tr>
|
||||
</TABLE>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue