diff --git a/classes/Item.php b/classes/Item.php index ec3dcd7..2145304 100644 --- a/classes/Item.php +++ b/classes/Item.php @@ -6,7 +6,7 @@ * Time: 17:12 */ -class Item +abstract class Item { public $name; public $massa; diff --git a/classes/ItemClass.php b/classes/ItemClass.php index f583f7a..658fc48 100644 --- a/classes/ItemClass.php +++ b/classes/ItemClass.php @@ -14,14 +14,14 @@ class ItemClass extends Item else return ": " . $number . ""; } - public function printItemStats() + public function printStats() { echo $this->name . " (Масса: " . $this->massa . ")"; if ($this->nalign) echo " nalign}.gif title='Этот предмет могут использовать только игроки с определённой склонностью.'> "; if ($this->count > 0) echo "
(Осталось: {$this->count} штук)"; if ($this->maxdur > 0) echo "
Долговечность: {$this->maxdur}"; if ($this->maxdur == -1) echo "
Долговечность: неразрушимо"; - echo "
"; + if ($this->nlevel > 0) echo "
Требуется уровень" . $this->wrap($this->nlevel); if ($this->nnoj > 0) echo "
Требуется владение колющим оружиием" . $this->wrap($this->nnoj); if ($this->ndubina > 0) echo "
Требуется владение дробящим оружием" . $this->wrap($this->ndubina); @@ -47,7 +47,7 @@ class ItemClass extends Item echo "
"; } - public function printItemImage() + public function printImage() { echo "fetch_assoc()) { } echo ""; -foreach ($iteminfo as $iinfo) { +foreach ($iteminfo as $ii) { echo ""; echo ""; } echo "
Товары магазина
"; - $iinfo->printItemImage(); + $ii->printImage(); echo ""; - $iinfo->printItemStats(); + $ii->printStats(); echo "
"; \ No newline at end of file