In This Instance, I Will Be Using "Demon Armor"
Code:
<item id="2494" article="a" name="demon armor">
<attribute key="weight" value="8000"/>
<attribute key="armor" value="16"/>
<attribute key="slotType" value="body"/>
</item>
First, let's see what these attributes mean,
This is the key for Weight, in this, the weight will be 80.00oz.
Code:
<attribute key="weight" value="8000"/>
The key for Armor, right now, the armor is 16.
Code:
<attribute key="armor" value="16"/>
The key for the slotType, as in, legs, helmet, weapon, body, boots..
Code:
<attribute key="slotType" value="body"/>
ID of the Item = 2494 // Name = "a demon armor"
Code:
<item id="2494" article="a" name="demon armor">
Now, we will be begging to edit the item,
Code:
<item id="2494" article="the" name="darkwing's crest">
<attribute key="weight" value="5000"/>
<attribute key="armor" value="25"/>
<attribute key="slotType" value="body"/>
</item>
Now, the item is - "the Darkwing's Crest" "Armor 25" Weight "50.00oz"
There is also a few other attribute keys, lets take a look at those,
Code:
<attribute key="description" value="This is a heirloom of the Darkwing Family."/>
<attribute key="absorbPercentPhysical" value="3"/>
<attribute key="defense" value="16"/>
<attribute key="weaponType" value="shield"/>
<attribute key="attack" value="8"/>
<attribute key="rotateTo" value="2585"/>
<attribute key="containerSize" value="30"/>
<attribute key="type" value="depot"/>
<attribute key="writeable" value="1"/>
<attribute key="maxTextLen" value="512"/>
<attribute key="duration" value="14400"/>
<attribute key="healthGain" value="5"/>
<attribute key="healthTicks" value="2000"/>
<attribute key="manaGain" value="10"/>
<attribute key="manaTicks" value="1000"/>
<attribute key="showduration" value="1"/>
Edit the item to your liking
