Mercurial > repos > IBBoard.WarFoundry.API
view dtds/system.xsd @ 187:104a683b5ef8
Re #198: Add equipment slots
* Fix problem with shared "get limit" method not handling min and max properly
* Add method to get percentage limit
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Tue, 27 Oct 2009 20:53:27 +0000 |
parents | c1caf467dd40 |
children |
line wrap: on
line source
<?xml version="1.0"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:core="http://ibboard.co.uk/warfoundry/core" xmlns:cats="http://ibboard.co.uk/warfoundry/cats" targetNamespace="http://ibboard.co.uk/warfoundry/system" xmlns="http://ibboard.co.uk/warfoundry/system" elementFormDefault="qualified"> <xs:element name="system"> <xs:complexType> <xs:all> <xs:element name="categories" type="cats:categoriestype"/> <xs:element name="sysStatsList"> <xs:complexType> <xs:sequence> <xs:element name="sysStats" maxOccurs="unbounded"> <xs:complexType> <xs:sequence> <xs:element name="sysStat" maxOccurs="unbounded"> <xs:complexType> <xs:attribute name="name" type="xs:string" use="required"/> <xs:anyAttribute/> </xs:complexType> </xs:element> </xs:sequence> <xs:attribute name="id" type="xs:ID" /> <xs:anyAttribute/> </xs:complexType> </xs:element> </xs:sequence> <xs:attribute name="defaultStats" type="xs:IDREF" use="required" /> <xs:anyAttribute/> </xs:complexType> </xs:element> <xs:element ref="core:extension" minOccurs="0" /> </xs:all> <xs:attribute name="id" type="xs:ID" /> <xs:attribute name="name" type="xs:string" use="required"/> <xs:attribute name="warn" type="xs:boolean" default="false"/> <xs:attribute name="allowAllies" type="xs:boolean" default="true"/> <xs:anyAttribute/> </xs:complexType> </xs:element> </xs:schema>