Replaced Fish CSV data with aCis free version XML data.

This commit is contained in:
MobiusDevelopment
2020-01-25 07:25:33 +00:00
parent 65b3f4cc1d
commit a78309f34b
19 changed files with 632 additions and 879 deletions

View File

@@ -0,0 +1,26 @@
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="list">
<xs:complexType>
<xs:sequence>
<xs:element name="fish" maxOccurs="unbounded" minOccurs="0">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute type="xs:short" name="id" use="optional"/>
<xs:attribute type="xs:byte" name="level" use="optional"/>
<xs:attribute type="xs:short" name="hp" use="optional"/>
<xs:attribute type="xs:byte" name="hpRegen" use="optional"/>
<xs:attribute type="xs:byte" name="type" use="optional"/>
<xs:attribute type="xs:byte" name="group" use="optional"/>
<xs:attribute type="xs:short" name="guts" use="optional"/>
<xs:attribute type="xs:short" name="gutsCheckTime" use="optional"/>
<xs:attribute type="xs:short" name="waitTime" use="optional"/>
<xs:attribute type="xs:int" name="combatTime" use="optional"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>