From The Mana World
This file describes the skills recognized by the eAthena client.
Structure
Skill DBs are in XML format.
<skills>
This is the root element of the file.
<skill>
And individual skill definition. skill
s have id
s, names
s, and fixed
values. The id
corresponds to the skill ID on the server. The name
is the name to give the skill in the GUI. The optional fixed
value says if the skill is fixed (not changeable through the GUI) or not. A value of 0 (the default) means it can be change through the GUI and a value of 1 means it can't.
Example
<skills>
<skill id="1" name="Basic"/>
<skill id="340" name="Magic" fixed="1"/>
...
</skills>