Mercurial > repos > snowblizz-super-API-ideas
comparison dtds/system.xsd @ 21:1e18de815472
Re #32 - Migrate WarFoundry to schemas
* Add "WarFoundry-Core" schema to define numerical types with -1 taking a special value
* Add "WarFoundry-Cats" to store common category definition between race and system
* Add full system schema
* Add partial implementation of race schema
Re #34 - Remove choices and base/increment
* "WarFoundry-Cats" schema only includes min/max points and percentage
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 07 Mar 2009 20:47:32 +0000 |
parents | |
children | 28e99aa0053f |
comparison
equal
deleted
inserted
replaced
20:b7c93a5821cd | 21:1e18de815472 |
---|---|
1 <?xml version="1.0"?> | |
2 <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" | |
3 targetNamespace="http://ibboard.co.uk/warfoundry/system" xmlns="http://ibboard.co.uk/warfoundry/system" elementFormDefault="qualified"> | |
4 <xs:element name="system"> | |
5 <xs:complexType> | |
6 <xs:sequence> | |
7 <xs:element name="categories" type="cats:categoriestype"/> | |
8 <xs:element name="sysStatsList" type="statslisttype"/> | |
9 </xs:sequence> | |
10 <xs:attribute name="id" type="xs:ID" /> | |
11 <xs:attribute name="name" type="xs:string" use="required"/> | |
12 <xs:attribute name="warn" type="xs:boolean" default="false"/> | |
13 <xs:attribute name="allowAllies" type="xs:boolean" default="true"/> | |
14 </xs:complexType> | |
15 </xs:element> | |
16 <xs:complexType name="statslisttype"> | |
17 <xs:sequence> | |
18 <xs:element name="sysStats" type="sysstatstype" minOccurs="1" maxOccurs="unbounded"/> | |
19 </xs:sequence> | |
20 </xs:complexType> | |
21 <xs:complexType name="sysstatstype"> | |
22 <xs:sequence> | |
23 <xs:element name="sysStat" type="sysstattype" minOccurs="1" maxOccurs="unbounded"/> | |
24 </xs:sequence> | |
25 <xs:attribute name="id" type="xs:ID" /> | |
26 </xs:complexType> | |
27 <xs:complexType name="sysstattype"> | |
28 <xs:attribute name="name" type="xs:string" use="required"/> | |
29 </xs:complexType> | |
30 </xs:schema> |