Hey gang!

Might be a stupid question, but just wondering if anyone knows the best practice for storing different classic adventure game items in xml for use with AS3. how would you structure the xml? Does it even really matter?

I'll just paste a sample here and you guys can tell me if it's better to organize it in some other way. Thanks!

<weapons>
<swords>
<sword>
<name> Short Sword </name>
<quality> common </quality>
<level> 1 </level>
<description> Puny sword for tiny people. </description>
<power> 2 </power)
</sword>
</swords>
<bows>
<bow>
<name> Toy Bow </name>
<quality> rare </quality>
<level> 1 </level>
<description> Practice bow used by kids. Babies, really. </description>
<power> 1 </power)
</bow>
</bows>
</weapons>