- implemented use of itemExtendedCost and fueled some more item-tabs with it
- tinkering with learned spells and added teach-tabs to item.php - required arenaRating in item tooltips - updated js-functions handling currencies - updated Markup with correct links - i probably forgot to add sql
This commit is contained in:
parent
6c7006eeb2
commit
07ee8213da
18 changed files with 761 additions and 337 deletions
|
|
@ -151,15 +151,17 @@ class CreatureList extends BaseType
|
|||
'minlevel' => $this->curTpl['minlevel'],
|
||||
'maxlevel' => $this->curTpl['maxlevel'],
|
||||
'id' => $this->id,
|
||||
'boss' => $this->curTpl['type_flags'] & 0x4,
|
||||
'rank' => $this->curTpl['rank'],
|
||||
'location' => json_encode($this->getSpawns(SPAWNINFO_ZONES), JSON_NUMERIC_CHECK),
|
||||
'boss' => $this->curTpl['type_flags'] & 0x4 ? 1 : 0,
|
||||
'rank' => $this->curTpl['rank'], // classification(?)
|
||||
'location' => $this->getSpawns(SPAWNINFO_ZONES),
|
||||
'name' => $this->getField('name', true),
|
||||
'tag' => $this->getField('subname', true),
|
||||
'type' => $this->curTpl['type'],
|
||||
'react' => '['.$this->curTpl['A'].', '.$this->curTpl['H'].']'
|
||||
);
|
||||
|
||||
if ($_ = $this->getField('subname', true))
|
||||
$data[$this->id]['tag'] = $_;
|
||||
|
||||
if ($addInfoMask & NPCINFO_TAMEABLE) // only first skin of first model ... we're omitting potentially 11 skins here .. but the lv accepts only one .. w/e
|
||||
$data[$this->id]['skin'] = $this->curTpl['textureString'];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue