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,8 @@
<HpGaugeColorSetting xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://vezel.dev/novadrop/dc/HpGaugeColorSetting HpGaugeColorSetting.xsd" xmlns="https://vezel.dev/novadrop/dc/HpGaugeColorSetting">
<HpGauge priority="0" stringId="default" blue="0" red="162" green="0" />
<HpGauge priority="1" stringId="enemy" blue="0" red="162" green="0" />
<HpGauge priority="2" stringId="mine" blue="197" red="0" green="78" />
<HpGauge priority="2" stringId="party" blue="197" red="0" green="78" />
<HpGauge priority="4" stringId="spirit_or_vehicleex" blue="0" red="0" green="204" />
<HpGauge priority="3" stringId="havedebuff" blue="184" red="100" green="0" />
</HpGaugeColorSetting>
@@ -0,0 +1,25 @@
<!-- 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/HpGaugeColorSetting"
targetNamespace="https://vezel.dev/novadrop/dc/HpGaugeColorSetting"
xsi:schemaLocation="https://vezel.dev/novadrop/dc ../DataCenter.xsd"
elementFormDefault="qualified">
<xsd:complexType name="HpGaugeColorSetting">
<xsd:sequence>
<xsd:element name="HpGauge" type="HpGaugeColorSetting_HpGauge" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="HpGaugeColorSetting_HpGauge">
<xsd:attribute name="blue" type="xsd:int" use="required" />
<xsd:attribute name="green" type="xsd:int" use="required" />
<xsd:attribute name="priority" type="xsd:int" use="required" />
<xsd:attribute name="red" type="xsd:int" use="required" />
<xsd:attribute name="stringId" type="xsd:string" use="required" />
</xsd:complexType>
<xsd:element name="HpGaugeColorSetting" type="HpGaugeColorSetting" />
</xsd:schema>