Skip to content
Snippets Groups Projects
Commit f6df421e authored by MELERIX's avatar MELERIX
Browse files

BETA: Fishing Rods Data for future usage.

parent 08025ba9
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?>
<!-- TODO: Needs Support -->
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../xsd/fishingRods.xsd">
<fishingRod fishingRodId="1" fishingRodItemId="6529" fishingRodLevel="20" fishingRodName="Baby Duck Rod" fishingRodDamage="20.0" />
<fishingRod fishingRodId="2" fishingRodItemId="6530" fishingRodLevel="40" fishingRodName="Albatross Rod" fishingRodDamage="23.0" />
<fishingRod fishingRodId="3" fishingRodItemId="6531" fishingRodLevel="50" fishingRodName="Pelican Rod" fishingRodDamage="26.0" />
<fishingRod fishingRodId="4" fishingRodItemId="6532" fishingRodLevel="60" fishingRodName="KingFisher Rod" fishingRodDamage="30.0" />
<fishingRod fishingRodId="5" fishingRodItemId="6533" fishingRodLevel="70" fishingRodName="Cygnus Pole" fishingRodDamage="35.0" />
<fishingRod fishingRodId="6" fishingRodItemId="6534" fishingRodLevel="80" fishingRodName="Triton Pole" fishingRodDamage="39.0" />
</list>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="list">
<xs:complexType>
<xs:sequence maxOccurs="1" minOccurs="1">
<xs:element name="fishingRod" maxOccurs="6" minOccurs="1">
<xs:complexType>
<xs:attribute name="fishingRodDamage" type="xs:decimal" use="required" />
<xs:attribute name="fishingRodLevel" type="xs:positiveInteger" use="required" />
<xs:attribute name="fishingRodName" type="xs:normalizedString" use="required" />
<xs:attribute name="fishingRodId" type="xs:positiveInteger" use="required" />
<xs:attribute name="fishingRodItemId" type="xs:positiveInteger" use="required" />
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment