This commit is contained in:
2024-07-18 22:48:21 -05:00
commit 9cc712f46d
25514 changed files with 20551518 additions and 0 deletions
+51
View File
@@ -0,0 +1,51 @@
<Tooltipstyle xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://vezel.dev/novadrop/dc/Tooltipstyle Tooltipstyle.xsd" xmlns="https://vezel.dev/novadrop/dc/Tooltipstyle">
<Style name="style1" color="#FFFFFF" fontSize="15" />
<Style name="style2" color="#cccccc" fontSize="13" />
<Style name="style3" color="#3594B3" fontSize="13" />
<Style name="style4" color="#FFA500" fontSize="13" />
<Style name="style5" color="#009900" fontSize="15" />
<Style name="style6" color="#00BFFF" fontSize="15" />
<Style name="style7" color="#FFD700" fontSize="13" />
<Style name="style8" color="#FFA500" fontSize="15" />
<Style name="style9" color="#57bb35" fontSize="13" />
<Style name="style10" color="#575c62" fontSize="13" />
<Style name="style11" color="#c51919" fontSize="13" />
<Style name="style12" color="#4a95d8" fontSize="13" />
<Style name="style13" color="#FFD7FF" fontSize="13" />
<Style name="style14" color="#4a95d8" fontSize="13" />
<Style name="style15" color="#57bb35" fontSize="13" />
<Style name="style16" color="#7bc15e" fontSize="13" />
<Style name="style17" color="#8b8c8c" fontSize="13" />
<Style name="style18" color="#0f400f" fontSize="13" />
<Style name="style19" color="#0c5278" fontSize="13" />
<Style name="style20" color="#5c3b11" fontSize="13" />
<Style name="style21" color="#5c3b11" fontSize="13" />
<Style name="style22" color="#1c3c82" fontSize="13" />
<Style name="style23" color="#494949" fontSize="13" />
<Style name="style24" color="#FF9600" fontSize="13" />
<Style name="style25" color="#DBB006" fontSize="13" />
<Style name="style26" color="#6B5B39" fontSize="13" />
<Style name="style27" color="#FFA500" fontSize="13" />
<Style name="style28" color="#D941C5" fontSize="15" />
<Style name="style29" color="#FFFFFF" fontSize="13" />
<Style name="style30" color="#009900" fontSize="13" />
<Style name="style31" color="#00BFFF" fontSize="13" />
<Style name="style32" color="#FFA500" fontSize="13" />
<Style name="style33" color="#D941C5" fontSize="13" />
<Style name="style34" color="#FFFFFF" fontSize="14" />
<Style name="style35" color="#FFD700" fontSize="13" />
<Style name="style36" color="#707070" fontSize="13" />
<Style name="CrestDisable" color="#526877" fontSize="13" />
<Style name="CrestNameOnSkill" color="#FFFFFF" fontSize="" />
<Style name="SealedCrestState" color="#7F7F7F" fontSize="" />
<Style name="UnequipedCrestState" color="#0000FF" fontSize="" />
<Style name="EquipedCrestState" color="#00FF00" fontSize="" />
<Style name="EquipedCrestStateEx" color="#FF0000" fontSize="" />
<Style name="SealClear" color="#061323" fontSize="" />
<Style name="ItemLevel" color="#2280FF" fontSize="" />
<Style name="SetItem" color="#a235ff" fontSize="" />
<Style name="ValidTerm" color="#cccccc" fontSize="10" />
<Style name="ActPointNum" color="#80e71c" fontSize="" />
<Style name="ActPointTitle" color="#FFD43F" fontSize="" />
<Style name="ActPointDisable" color="#666666" fontSize="" />
</Tooltipstyle>
+23
View File
@@ -0,0 +1,23 @@
<!-- 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/Tooltipstyle"
targetNamespace="https://vezel.dev/novadrop/dc/Tooltipstyle"
xsi:schemaLocation="https://vezel.dev/novadrop/dc ../DataCenter.xsd"
elementFormDefault="qualified">
<xsd:complexType name="Tooltipstyle">
<xsd:sequence>
<xsd:element name="Style" type="Tooltipstyle_Style" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="Tooltipstyle_Style">
<xsd:attribute name="color" type="xsd:string" use="required" />
<xsd:attribute name="fontSize" type="xsd:string" use="required" />
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
<xsd:element name="Tooltipstyle" type="Tooltipstyle" />
</xsd:schema>