diff options
author | Reid <reidyaro@gmail.com> | 2011-11-27 00:47:48 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2011-11-27 00:47:48 +0100 |
commit | 7019bee94a0ba6158fcbd11a73046e012a669c81 (patch) | |
tree | 9db51542cae5966b5655486516c03a608a0e3b01 /items.xsd | |
download | clientdata-7019bee94a0ba6158fcbd11a73046e012a669c81.tar.gz clientdata-7019bee94a0ba6158fcbd11a73046e012a669c81.tar.bz2 clientdata-7019bee94a0ba6158fcbd11a73046e012a669c81.tar.xz clientdata-7019bee94a0ba6158fcbd11a73046e012a669c81.zip |
Initialization of the Clientdata for the Beta release of Evol Online.
Diffstat (limited to 'items.xsd')
-rw-r--r-- | items.xsd | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/items.xsd b/items.xsd new file mode 100644 index 00000000..d5e334e4 --- /dev/null +++ b/items.xsd @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8"?> +<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> + + <!-- IMAGE TYPE --> + + <xsd:simpleType name="mw_ItemArtType"> + <xsd:restriction base="xsd:integer"> + <xsd:minInclusive value="0" /> + <xsd:maxInclusive value="1" /> + </xsd:restriction> + </xsd:simpleType> + + <!-- ITEMS LIST FILE SCHEMA --> + + <xsd:element name="items"> + <xsd:complexType> + <xsd:sequence> + + <xsd:element name="item" minOccurs="0" maxOccurs="unbounded"> + <xsd:complexType> + <xsd:simpleContent> + <xsd:extension base="xsd:string"> + <xsd:attribute name="name" type="xsd:string" /> + <xsd:attribute name="description" type="xsd:string" /> + <xsd:attribute name="effect" type="xsd:string" /> + <xsd:attribute name="id" type="xsd:positiveInteger" /> + <xsd:attribute name="image" type="xsd:positiveInteger" /> + <xsd:attribute name="art" type="mw_ItemArtType" /> + <xsd:attribute name="type" type="xsd:integer" /> + <xsd:attribute name="slot" type="xsd:integer" /> + <xsd:attribute name="weight" type="xsd:positiveInteger" /> + <xsd:attribute name="drawBefore" type="xsd:string" /> + <xsd:attribute name="drawAfter" type="xsd:string" /> + <xsd:attribute name="drawPriority" type="xsd:integer" /> + </xsd:extension> + </xsd:simpleContent> + </xsd:complexType> + </xsd:element> + + </xsd:sequence> + </xsd:complexType> + </xsd:element> + +</xsd:schema> |