battles/classes/Battles/Item.php

177 lines
6.1 KiB
PHP
Raw Normal View History

2019-01-11 16:02:57 +00:00
<?php
namespace Battles;
2019-01-11 19:16:39 +00:00
abstract class Item
2019-01-11 16:02:57 +00:00
{
2020-07-22 14:04:15 +00:00
protected $item_id;
protected $name;
protected $item_type;
protected $durability;
protected $price;
protected $need_strength;
protected $need_dexterity;
protected $need_intuition;
protected $need_endurance;
protected $need_intelligence;
protected $need_wisdom;
protected $add_strength;
protected $add_dexterity;
protected $add_intuition;
protected $add_endurance;
protected $add_intelligence;
protected $add_wisdom;
protected $add_accuracy;
protected $add_evasion;
protected $add_criticals;
protected $add_min_physical_damage;
protected $add_max_physical_damage;
protected $weight;
protected $image;
public const ITEM_TYPES_ALLOWED_IN_SLOTS = [1,2,3,4,5,6,7,8,9,10,11,12];
public const ITEM_TYPE_HELMET = 1;
public const ITEM_TYPE_ARMOR = 2;
const ITEM_TYPE_LEGS = 3;
const ITEM_TYPE_BOOTS = 4;
const ITEM_TYPE_GLOVES = 5;
const ITEM_TYPE_WEAPON = 6;
const ITEM_TYPE_SHIELD = 7;
const ITEM_TYPE_BELT = 8;
public const ITEM_TYPE_RING = 9;
const ITEM_TYPE_AMULET = 10;
const ITEM_TYPE_CONSUMABLE = 20;
const ITEM_TYPE_OTHER = 50;
const ITEM_TYPE_TRASH = 100;
2019-01-14 21:54:20 +00:00
2019-01-11 16:26:33 +00:00
/**
* Item constructor.
2019-02-15 11:38:30 +00:00
*
2019-01-11 16:26:33 +00:00
* @param $row
*/
2019-01-11 16:02:57 +00:00
public function __construct($row)
{
2019-01-14 14:31:42 +00:00
foreach ($this as $key => $value) {
2019-01-14 21:31:59 +00:00
if (isset($row[$key])) {
2019-01-14 14:42:05 +00:00
$this->$key = $row[$key];
2019-01-14 21:31:59 +00:00
}
2019-01-14 13:46:20 +00:00
}
2019-01-14 14:18:04 +00:00
switch ($this->item_type) {
2020-07-22 14:04:15 +00:00
case self::ITEM_TYPE_HELMET:
$this->typename = 'Шлем';
break;
2020-07-22 14:04:15 +00:00
case self::ITEM_TYPE_ARMOR:
$this->typename = 'Броня';
break;
2020-07-22 14:04:15 +00:00
case self::ITEM_TYPE_LEGS:
$this->typename = 'Поножи';
break;
2020-07-22 14:04:15 +00:00
case self::ITEM_TYPE_BOOTS:
$this->typename = 'Сапоги';
break;
2020-07-22 14:04:15 +00:00
case self::ITEM_TYPE_GLOVES:
$this->typename = 'Перчатки';
break;
2020-07-22 14:04:15 +00:00
case self::ITEM_TYPE_WEAPON:
$this->typename = 'Оружие';
break;
2020-07-22 14:04:15 +00:00
case self::ITEM_TYPE_SHIELD:
$this->typename = 'Щит';
break;
2020-07-22 14:04:15 +00:00
case self::ITEM_TYPE_BELT:
$this->typename = 'Пояс';
break;
case self::ITEM_TYPE_RING:
$this->typename = 'Кольцо';
break;
case self::ITEM_TYPE_AMULET:
$this->typename = 'Амулет';
break;
case self::ITEM_TYPE_CONSUMABLE:
$this->typename = 'Расходуемый предмет';
break;
default:
$this->typename = 'Хлам';
2019-01-11 22:50:10 +00:00
}
2019-01-11 16:02:57 +00:00
}
2019-01-11 19:39:37 +00:00
2019-01-12 10:17:20 +00:00
abstract public function printInfo();
2019-01-12 20:02:08 +00:00
public function printImage()
2019-01-11 19:39:37 +00:00
{
2019-01-12 19:51:08 +00:00
echo <<<IMG
2020-07-22 14:04:15 +00:00
<img src="/i/sh/{$this->image}" class="item-wrap-normal" alt="">
2019-01-12 19:51:08 +00:00
IMG;
2019-01-11 19:39:37 +00:00
}
2019-01-11 19:49:00 +00:00
2019-01-11 20:05:09 +00:00
protected function wrap($number)
{
if ($number > 0) {
return ": <b>" . $number . "</b>";
} else {
return ": <b style='color: maroon;'>" . $number . "</b>";
}
2019-01-11 20:05:09 +00:00
}
protected function printAllInfo()
2019-01-11 20:05:09 +00:00
{
echo "<b>" . $this->name . "</b> (Масса: " . $this->weight . ")";
if ($this->durability) {
echo "<br> Долговечность: " . $this->durability;
}
echo "<br><em>{$this->typename}</em><br>";
if ($this->need_strength > 0) {
echo "<br>Требуется сила" . $this->wrap($this->need_strength);
}
if ($this->need_dexterity > 0) {
echo "<br>Требуется ловкость" . $this->wrap($this->need_dexterity);
}
if ($this->need_intuition > 0) {
echo "<br>Требуется интуиция" . $this->wrap($this->need_intuition);
}
if ($this->need_endurance > 0) {
echo "<br>Требуется выносливость" . $this->wrap($this->need_endurance);
}
if ($this->need_intelligence > 0) {
echo "<br>Требуется интеллект" . $this->wrap($this->need_intelligence);
}
if ($this->need_wisdom > 0) {
echo "<br>Требуется мудрость" . $this->wrap($this->need_wisdom);
}
if ($this->add_strength) {
echo "<br>Сила" . $this->wrap($this->add_strength);
}
if ($this->add_dexterity) {
echo "<br>Ловкость" . $this->wrap($this->add_dexterity);
}
if ($this->add_intuition) {
echo "<br>Интуиция" . $this->wrap($this->add_intuition);
}
if ($this->add_endurance) {
echo "<br>Выносливость" . $this->wrap($this->add_endurance);
}
if ($this->add_intelligence) {
echo "<br>Интеллект" . $this->wrap($this->add_intelligence);
}
if ($this->add_wisdom) {
echo "<br>Мудрость" . $this->wrap($this->add_wisdom);
}
if ($this->add_accuracy) {
echo "<br>Точность" . $this->wrap($this->add_accuracy);
}
if ($this->add_evasion) {
echo "<br>Увёртливость" . $this->wrap($this->add_evasion);
}
if ($this->add_criticals) {
echo "<br>Шанс крита" . $this->wrap($this->add_criticals);
}
if ($this->add_min_physical_damage && !$this->add_max_physical_damage) {
$damage = $this->add_min_physical_damage . " - " . $this->add_min_physical_damage;
} elseif (!$this->add_min_physical_damage && $this->add_max_physical_damage) {
$damage = $this->add_max_physical_damage . " - " . $this->add_max_physical_damage;
} elseif ($this->add_min_physical_damage && $this->add_max_physical_damage) {
$damage = $this->add_min_physical_damage . " - " . $this->add_max_physical_damage;
}
2020-07-22 09:50:14 +00:00
if (isset($damage)) {
echo "<br>Урон: " . $damage;
2019-01-14 13:46:20 +00:00
}
}
2019-01-11 16:02:57 +00:00
}