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,21 @@
<StrSheet_PassiveMainString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://vezel.dev/novadrop/dc/StrSheet_PassiveMainString StrSheet_PassiveMainString.xsd" xmlns="https://vezel.dev/novadrop/dc/StrSheet_PassiveMainString">
<StringGroup type="mainString">
<String id="1" name="common" string="{type}" />
<String id="2" name="me" string="{condition} {prob} {type}" />
<String id="3" name="attacked" string="{target} {condition} {prob} {type}" />
<String id="4" name="attack" string="{target} {condition} {prob} {type}" />
<String id="5" name="attackedExceptTarget" string="{condition} {prob} {type}" />
<String id="6" name="attackExceptTarget" string="{condition} {prob} {type}" />
<String id="7" name="addProb" string="{prob} {type}" />
<String id="8" name="attackedExceptCondition" string="{target} {prob} {type}" />
<String id="9" name="attackExceptCondition" string="{target} {prob} {type}" />
<String id="10" name="attacked2" string="{abnormal} : {target} 피격 시 {prob} {type}" />
<String id="11" name="attack2" string="{abnormal} : {target} 적중 시 {prob} {type}" />
<String id="12" name="attackedWithAbnormality" string="{abnormal} : {target} {condition} {prob} {type}" />
<String id="13" name="attackWithAbnormality" string="{abnormal} : {target} {condition} {prob} {type}" />
<String id="14" name="addProbWithAbnormality" string="{abnormal} : {prob} {type}" />
<String id="15" name="attackedExceptConditionWithAbnormality" string="{abnormal} : {target} {prob} {type}" />
<String id="16" name="attackExceptConditionWithAbnormality" string="{abnormal} : {target} {prob} {type}" />
<String id="17" name="attackWithCC" string="{target} {condition} {prob} {type}" />
</StringGroup>
</StrSheet_PassiveMainString>
@@ -0,0 +1,31 @@
<!-- 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/StrSheet_PassiveMainString"
targetNamespace="https://vezel.dev/novadrop/dc/StrSheet_PassiveMainString"
xsi:schemaLocation="https://vezel.dev/novadrop/dc ../DataCenter.xsd"
elementFormDefault="qualified">
<xsd:complexType name="StrSheet_PassiveMainString">
<xsd:sequence>
<xsd:element name="StringGroup" type="StrSheet_PassiveMainString_StringGroup" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="StrSheet_PassiveMainString_StringGroup">
<xsd:sequence>
<xsd:element name="String" type="StrSheet_PassiveMainString_StringGroup_String" maxOccurs="unbounded" />
</xsd:sequence>
<xsd:attribute name="type" type="xsd:string" use="required" />
</xsd:complexType>
<xsd:complexType name="StrSheet_PassiveMainString_StringGroup_String">
<xsd:attribute name="id" type="xsd:int" use="required" />
<xsd:attribute name="name" type="xsd:string" use="required" />
<xsd:attribute name="string" type="xsd:string" use="required" />
</xsd:complexType>
<xsd:element name="StrSheet_PassiveMainString" type="StrSheet_PassiveMainString" />
</xsd:schema>