Advertisement
Motenten

baseSpellcastCommon.xsd

Sep 22nd, 2012
770
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.59 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
  3.    xmlns:xi="http://www.w3.org/2001/XInclude"
  4.    targetNamespace="http://www.windower.net/spellcast/"
  5.    xmlns="http://www.windower.net/spellcast/"
  6.    elementFormDefault="qualified">
  7.  
  8.   <xs:group name="slotList">
  9.     <xs:all>
  10.       <xs:element name="main" type="slotType" minOccurs="0"/>
  11.       <xs:element name="sub" type="slotType" minOccurs="0"/>
  12.       <xs:element name="range" type="slotType" minOccurs="0"/>
  13.       <xs:element name="ammo" type="slotType" minOccurs="0"/>
  14.       <xs:element name="head" type="slotType" minOccurs="0"/>
  15.       <xs:element name="neck" type="slotType" minOccurs="0"/>
  16.       <xs:element name="lear" type="slotType" minOccurs="0"/>
  17.       <xs:element name="rear" type="slotType" minOccurs="0"/>
  18.       <xs:element name="body" type="slotType" minOccurs="0"/>
  19.       <xs:element name="hands" type="slotType" minOccurs="0"/>
  20.       <xs:element name="lring" type="slotType" minOccurs="0"/>
  21.       <xs:element name="rring" type="slotType" minOccurs="0"/>
  22.       <xs:element name="back" type="slotType" minOccurs="0"/>
  23.       <xs:element name="waist" type="slotType" minOccurs="0"/>
  24.       <xs:element name="legs" type="slotType" minOccurs="0"/>
  25.       <xs:element name="feet" type="slotType" minOccurs="0"/>
  26.     </xs:all>
  27.   </xs:group>
  28.  
  29.   <!-- Slot element design -->
  30.   <xs:complexType name="slotType">
  31.     <xs:simpleContent>
  32.       <xs:extension base="xs:string">
  33.         <xs:attribute name="lock" type="xs:boolean"/>
  34.       </xs:extension>
  35.     </xs:simpleContent>
  36.   </xs:complexType>
  37. </xs:schema>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement