diff options
author | Eric Scrivner <zenogais@gmail.com> | 2005-06-28 08:03:12 +0000 |
---|---|---|
committer | Eric Scrivner <zenogais@gmail.com> | 2005-06-28 08:03:12 +0000 |
commit | 0255d3e39ed737accd46cc6da02c0b9c4eecf432 (patch) | |
tree | 69a9b7c13af22bf3ea727ee115475793134598d1 /data | |
parent | 795a2759db97111e27b1de3b904dca4ec926bd04 (diff) | |
download | mana-0255d3e39ed737accd46cc6da02c0b9c4eecf432.tar.gz mana-0255d3e39ed737accd46cc6da02c0b9c4eecf432.tar.bz2 mana-0255d3e39ed737accd46cc6da02c0b9c4eecf432.tar.xz mana-0255d3e39ed737accd46cc6da02c0b9c4eecf432.zip |
First Version Of XML Schema For Items List
Diffstat (limited to 'data')
-rw-r--r-- | data/items.xsd | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/data/items.xsd b/data/items.xsd new file mode 100644 index 00000000..407182cc --- /dev/null +++ b/data/items.xsd @@ -0,0 +1,40 @@ +<?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="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:extension> + </xsd:simpleContent> + </xsd:complexType> + </xsd:element> + + </xsd:sequence> + </xsd:complexType> + </xsd:element> + +</xsd:schema>
\ No newline at end of file |