This commit is contained in:
2024-07-18 22:48:21 -05:00
commit 9cc712f46d
25514 changed files with 20551518 additions and 0 deletions
@@ -0,0 +1,13 @@
<ClassExceptionData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://vezel.dev/novadrop/dc/ClassExceptionData ClassExceptionData.xsd" xmlns="https://vezel.dev/novadrop/dc/ClassExceptionData">
<Condition class="soulless" minLevel="1" maxLevel="57" />
<Condition class="soulless" minLevel="58" maxLevel="70" />
<Condition class="engineer" minLevel="1" maxLevel="70" />
<Condition class="fighter" minLevel="1" maxLevel="70" />
<Condition class="assassin" minLevel="1" maxLevel="70" />
<Condition class="glaiver" minLevel="1" maxLevel="70" />
<DeathPostProcess class="soulless" abnormalityId="10151090" postprocessId="12">
<Action time="0" duration="500" from="0" to="0.9" materialName="S1_ShadowOfNight_PPMI" param="Strength" />
<Action time="500" duration="2000" from="0.9" to="0.9" materialName="S1_ShadowOfNight_PPMI" param="Strength" />
<Action time="2500" duration="4500" from="0.9" to="0" materialName="S1_ShadowOfNight_PPMI" param="Strength" />
</DeathPostProcess>
</ClassExceptionData>
+43
View File
@@ -0,0 +1,43 @@
<!-- SPDX-License-Identifier: 0BSD -->
<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/ClassExceptionData"
targetNamespace="https://vezel.dev/novadrop/dc/ClassExceptionData"
xsi:schemaLocation="https://vezel.dev/novadrop/dc ../DataCenter.xsd"
elementFormDefault="qualified">
<xsd:complexType name="ClassExceptionData">
<xsd:sequence>
<xsd:element name="Condition" type="ClassExceptionData_Condition" maxOccurs="unbounded" />
<xsd:element name="DeathPostProcess" type="ClassExceptionData_DeathPostProcess" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="ClassExceptionData_Condition">
<xsd:attribute name="class" type="xsd:string" use="required" />
<xsd:attribute name="maxLevel" type="xsd:int" use="required" />
<xsd:attribute name="minLevel" type="xsd:int" use="required" />
</xsd:complexType>
<xsd:complexType name="ClassExceptionData_DeathPostProcess">
<xsd:sequence>
<xsd:element name="Action" type="ClassExceptionData_DeathPostProcess_Action" maxOccurs="unbounded" />
</xsd:sequence>
<xsd:attribute name="abnormalityId" type="xsd:int" use="required" />
<xsd:attribute name="class" type="xsd:string" use="required" />
<xsd:attribute name="postprocessId" type="xsd:int" use="required" />
</xsd:complexType>
<xsd:complexType name="ClassExceptionData_DeathPostProcess_Action">
<xsd:attribute name="duration" type="xsd:float" use="required" />
<xsd:attribute name="from" type="xsd:float" use="required" />
<xsd:attribute name="materialName" type="xsd:string" use="required" />
<xsd:attribute name="param" type="xsd:string" use="required" />
<xsd:attribute name="time" type="xsd:float" use="required" />
<xsd:attribute name="to" type="xsd:float" use="required" />
</xsd:complexType>
<xsd:element name="ClassExceptionData" type="ClassExceptionData" />
</xsd:schema>