magic implement
This commit is contained in:
parent
2ffd272f48
commit
55041adb6f
@ -5,6 +5,7 @@ class InventoryItem extends Item
|
|||||||
private $present;
|
private $present;
|
||||||
private $artefact;
|
private $artefact;
|
||||||
private $item_id;
|
private $item_id;
|
||||||
|
private $magic;
|
||||||
|
|
||||||
public function __construct($row)
|
public function __construct($row)
|
||||||
{
|
{
|
||||||
@ -12,6 +13,7 @@ class InventoryItem extends Item
|
|||||||
$this->present = $row['present'];
|
$this->present = $row['present'];
|
||||||
$this->artefact = $row['artefact'];
|
$this->artefact = $row['artefact'];
|
||||||
$this->item_id = $row['id'];
|
$this->item_id = $row['id'];
|
||||||
|
$this->magic = $row['magic'];
|
||||||
|
|
||||||
if ($this->artefact) $this->name = <<<NAME
|
if ($this->artefact) $this->name = <<<NAME
|
||||||
<b style='color: crimson;'>{$this->name}</b> <img src="//{$_SERVER['SERVER_NAME']}/i/artefact1.gif">
|
<b style='color: crimson;'>{$this->name}</b> <img src="//{$_SERVER['SERVER_NAME']}/i/artefact1.gif">
|
||||||
@ -46,4 +48,10 @@ NAME;
|
|||||||
onclick="location='/admin.php'">
|
onclick="location='/admin.php'">
|
||||||
BTN;
|
BTN;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private function ShowMagicInfo($id)
|
||||||
|
{
|
||||||
|
$row = db::c()->query('SELECT * FROM `magic` WHERE `id` = ?i',$id)->fetch_assoc();
|
||||||
|
$this->magicname = $row['name'];
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user