diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-10 13:36:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-10 13:36:16 +0300 |
commit | fc6ac84477383cde62c14b62c8cfa8793dbfccc5 (patch) | |
tree | 075c5b043cac35e85823100b987f4f9eea7884db /itemxml/items.xsd | |
parent | 9fa9025760c597f80da97776789c8400b7b5f18c (diff) | |
download | tools-fc6ac84477383cde62c14b62c8cfa8793dbfccc5.tar.gz tools-fc6ac84477383cde62c14b62c8cfa8793dbfccc5.tar.bz2 tools-fc6ac84477383cde62c14b62c8cfa8793dbfccc5.tar.xz tools-fc6ac84477383cde62c14b62c8cfa8793dbfccc5.zip |
Remove unused xml schemes.
Diffstat (limited to 'itemxml/items.xsd')
-rw-r--r-- | itemxml/items.xsd | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/itemxml/items.xsd b/itemxml/items.xsd deleted file mode 100644 index d5e334e..0000000 --- a/itemxml/items.xsd +++ /dev/null @@ -1,44 +0,0 @@ -<?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> |