WIP: removing User::class public array $items for Stat()::class.
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
<?php
|
||||
|
||||
namespace User;
|
||||
|
||||
use Helper\Conversion;
|
||||
use Model\Constant\Stat;
|
||||
|
||||
class Item
|
||||
{
|
||||
public readonly int $id;
|
||||
public readonly int $type;
|
||||
public readonly string $name;
|
||||
public readonly string $img;
|
||||
public int $inslot;
|
||||
public int $inodet;
|
||||
public readonly string $data;
|
||||
public int $durability;
|
||||
|
||||
public function __construct(array $item)
|
||||
{
|
||||
[
|
||||
'id' => $this->id,
|
||||
'type' => $this->type,
|
||||
'name' => $this->name,
|
||||
'img' => $this->img,
|
||||
'inslot' => $this->inslot,
|
||||
'inOdet' => $this->inodet,
|
||||
'data' => $this->data,
|
||||
'iznosNOW' => $iNow,
|
||||
'iznosMAX' => $iMax,
|
||||
] = $item;
|
||||
$this->durability = $iMax - $iNow;
|
||||
$stat = new Stat();
|
||||
$dataArr = Conversion::dataStringToArray(strtolower($this->data));
|
||||
foreach (array_keys($stat->getBonusNames()) as $bonusName) {
|
||||
if (!isset($dataArr["add_$bonusName"])) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$this->{"add_$bonusName"} = $dataArr["add_$bonusName"];
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// type, data, inOdet,
|
||||
// item_id, inslot, useInBattle, btl_zd, iznosNOW, iznosMAX, magic_inci, name, items_users.id, img, `2h`
|
||||
|
||||
/*
|
||||
'data' => string 'add_za1=5|add_m4=40|add_s2=1|add_s3=2|sv_yron_min=5|sv_yron_max=15|add_m5=30|add_m1=30|add_m9=15|complect=106|tya1=75|tya3=25|fromshop=1' (length=136)
|
||||
'item_id' => int 6473
|
||||
|
||||
'useInBattle' => int 0
|
||||
'btl_zd' => int 0
|
||||
'magic_inci' => string '' (length=0)
|
||||
'2h' => int 0
|
||||
*/
|
||||
Reference in New Issue
Block a user