Item API buff data
The buff is indeed a “skill” that gives an additional effect to your character when the item is equipped (remember that “effects” and skills are all the same thing to the game engine). The original need for this seems to have been Magic Find, presumably because it wasn’t set up as an “attribute” so they couldn’t stick it in the attributes array with power/precision/etc.
I can’t really say why they reused this system for the “inherent upgrade component” on ascended items, though.
You can parse it out into attribute and modifier values and merge them with the existing attributes list.
Generally, as the name `skill_id` suggests, the ID there refers to a skill. A skill can be both a skill a player can use but also skills that are used by NPCs or possibly environmental objects.
Unfortunately there is no API for skill data yet, and we also don’t really have a good list of skill ids. The chat link for that “skill” is [&B4A9AAA=] and shows a nameless skill with just the buffs as the description. So it might be just a way for the game to construct the total attributes. You’re probably best of if you just try to interpret the information and sum the attribute values up. That’s what’s happening in the game after all too.
thanks both for the reply, i guessed as much (the skill link being historic etc) just wondered if anyone know what or how to parse. I am indeed just putting it in my db and ignoring at present, and just taking the following part which is generally the attributes.
sad there is no skill api yet though, will see with time
thanks for your replies though guys, appreciated