Files
2025-03-03 19:44:55 -05:00

29 lines
1.7 KiB
XML

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:dc="https://vezel.dev/novadrop/dc" xmlns="https://vezel.dev/novadrop/dc/DungeonSoundData" targetNamespace="https://vezel.dev/novadrop/dc/DungeonSoundData" xsi:schemaLocation="https://vezel.dev/novadrop/dc ../DataCenter.xsd" elementFormDefault="qualified">
<xsd:complexType name="DungeonSoundData">
<xsd:sequence>
<xsd:element name="BgmList" type="DungeonSoundData_BgmList" />
<xsd:element name="EffectSound" type="DungeonSoundData_EffectSound" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="DungeonSoundData_BgmList">
<xsd:sequence>
<xsd:element name="Sound" type="DungeonSoundData_BgmList_Sound" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="DungeonSoundData_BgmList_Sound">
<xsd:attribute name="fadeTime" type="xsd:float" use="required" />
<xsd:attribute name="resource" type="xsd:string" use="required" />
<xsd:attribute name="templateId" type="xsd:int" use="required" />
</xsd:complexType>
<xsd:complexType name="DungeonSoundData_EffectSound">
<xsd:sequence>
<xsd:element name="Sound" type="DungeonSoundData_EffectSound_Sound" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="DungeonSoundData_EffectSound_Sound">
<xsd:attribute name="resource" type="xsd:string" use="required" />
<xsd:attribute name="templateId" type="xsd:int" use="required" />
</xsd:complexType>
<xsd:element name="DungeonSoundData" type="DungeonSoundData" />
</xsd:schema>