tests
This commit is contained in:
parent
642fb82938
commit
0336ef47fa
@ -8,11 +8,23 @@
|
|||||||
|
|
||||||
class ItemClass extends Item
|
class ItemClass extends Item
|
||||||
{
|
{
|
||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public function printItemStats()
|
public function printItemStats()
|
||||||
{
|
{
|
||||||
echo $this->name ." (Масса: ". $this->massa .")<br>";
|
echo $this->name ." (Масса: ". $this->massa .")";
|
||||||
|
if ($this->nalign) echo " <img src=i/align_{$this->nalign}.gif title='Этот предмет могут использовать только игроки с определённой склонностью.'> ";
|
||||||
|
if ($this->count > 0) echo "<br><small>(Осталось: {$this->count} штук)</small>";
|
||||||
|
if ($this->maxdur > 0) echo "<br>(Долговечность: 0 / {$this->maxdur}";
|
||||||
|
if ($this->nsila) echo "<br>Требуется сила: {$this->nsila}";
|
||||||
|
if ($this->nlovk) echo "<br>Требуется ловкость: {$this->nlovk}";
|
||||||
|
if ($this->ninta) echo "<br>Требуется интуиция: {$this->ninta}";
|
||||||
|
if ($this->nvinos) echo "<br>Требуется выносливость: {$this->nvinos}";
|
||||||
|
|
||||||
|
|
||||||
|
echo "<br>";
|
||||||
|
}
|
||||||
|
|
||||||
|
public function printItemImage()
|
||||||
|
{
|
||||||
|
echo "<img src='/i/sh/{$this->img}'";
|
||||||
}
|
}
|
||||||
}
|
}
|
7
test.php
7
test.php
@ -20,6 +20,13 @@ while ($row = $result->fetch_assoc()) {
|
|||||||
$iteminfo[] = new ItemClass($row);
|
$iteminfo[] = new ItemClass($row);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
echo "<table><tr>";
|
||||||
foreach ($iteminfo as $iinfo) {
|
foreach ($iteminfo as $iinfo) {
|
||||||
|
echo "<td>";
|
||||||
|
$iinfo->printItemImage();
|
||||||
|
echo "</td>";
|
||||||
|
echo "<td>";
|
||||||
$iinfo->printItemStats();
|
$iinfo->printItemStats();
|
||||||
|
echo "<td>";
|
||||||
}
|
}
|
||||||
|
echo "</tr></table>";
|
Loading…
Reference in New Issue
Block a user