view dtds/system.xsd @ 219:f609bcf7035b

Fixes #222: decimal comma/point not handled correctly (again?) in costMultiplier * Replace two "type.Parse" calls with XmlTools calls All decimals in WarFoundry should use the decimal point (or "period" to Americans) rather than the decimal comma because that's what XML uses in its default type definitions
author IBBoard <dev@ibboard.co.uk>
date Sat, 28 Nov 2009 16:40: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>