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,25 @@
<StrSheet_NPCGuild xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://vezel.dev/novadrop/dc/StrSheet_NPCGuild StrSheet_NPCGuild.xsd" xmlns="https://vezel.dev/novadrop/dc/StrSheet_NPCGuild">
<String id="601" toolTip="티르카이 보급소를 중심으로 활동하는 아르곤 연구세력" string="아르곤 연구소" />
<String id="602" toolTip="카노비아 전선에서 맹활약 중인 발키온 연합 산하의 군사 조직" string="카노비아 유격대" />
<String id="603" toolTip="칸스트리아의 사냥꾼 조합으로 아르고네아에서 독자적으로 활동한다." string="아르곤 헌터" />
<String id="604" toolTip="아지스 연구소에 소속된 미마스들은 신의 유물과 환경을 보호하려 한다." string="미마스" />
<String id="605" toolTip="대도시 벨리카의 상인회, 공방회, 용병단이 모여서 구성된 연합 단체" string="벨리카 연합회" />
<String id="606" toolTip="검은 틈과 관련된 일련의 사건을 조사하는 연구 세력으로 정체가 불분명하다." string="경계의 탐색자들" />
<String id="607" toolTip="마법과 기계를 융합하는 마법사와 공학자로 구성된 연구세력" string="마도 공학 연구학회" />
<String id="608" toolTip="거친 항구를 기점으로 동부 대륙상업을 부흥 시키기 위한 상인세력" string="젝스 상인 길드 연합" />
<String id="609" toolTip="시공의 균열과 데모크론의 비밀을 조사하기 위해 새로운 대륙 정찰 임무를 수행 중인 군사 조직" string="발키온 정찰대" />
<String id="610" toolTip="솧로던전에서 과제를 수행하면 획득 할 수 있습니다" string="메달" />
<String id="611" toolTip="아르보레아 대륙에서 일어나는 각종 문제를 해결하는 정예 집단" string="아르보레아의 수호자" />
<String id="612" toolTip="보석화로 인해 발생하는 문제들을 해결하기 위해 설립된 대책본부" string="대책본부 " />
<String id="613" toolTip="보석화로 인해 발생하는 문제들을 해결하기 위해 설립된 대책본부" string="대책본부 Ⅱ" />
<String id="614" toolTip="보석화로 인해 발생하는 문제들을 해결하기 위해 설립된 대책본부" string="대책본부 Ⅲ" />
<String id="616" toolTip="하이드래곤에 저항하는 나가 세력" string="리베란츠" />
<String id="617" toolTip="발키온 연합이 엑소도르 탐색과 연구를 위해 파견한 세력" string="엑소도르 특무대" />
<String id="618" toolTip="아직 알 수 없는 세력이다. 아르보레아와는 전혀 다른 차원의 기운이 느껴진다." string="????" />
<String id="629" toolTip="폐허가 된 여명의 정원을 정찰하는 임무를 수행 중인 군사 조직" string="여명의 정원 탐사대" />
<String id="901" toolTip="전장에서 용맹함을 떨치는 투사들은 명예를 최우선으로 한다." string="승리의 인도자" />
<String id="902" toolTip="싸움에 미친 전장의 투사들은 언제나 학살에 대한 욕망이 끓어 넘친다." string="광기의 학살자" />
<String id="90101" toolTip="전장에서 용맹함을 떨치는 투사들은 명예를 최우선으로 한다." string="승리의 인도자" />
<String id="90201" toolTip="싸움에 미친 전장의 투사들은 언제나 학살에 대한 욕망이 끓어 넘친다." string="광기의 학살자" />
<String id="903" toolTip="녹테늄을 조사하여 이득을 추구하는 세력" string="녹테늄 광물학회" />
</StrSheet_NPCGuild>
+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/StrSheet_NPCGuild"
targetNamespace="https://vezel.dev/novadrop/dc/StrSheet_NPCGuild"
xsi:schemaLocation="https://vezel.dev/novadrop/dc ../DataCenter.xsd"
elementFormDefault="qualified">
<xsd:complexType name="StrSheet_NPCGuild">
<xsd:sequence>
<xsd:element name="String" type="StrSheet_NPCGuild_String" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="StrSheet_NPCGuild_String">
<xsd:attribute name="id" type="xsd:int" use="required" />
<xsd:attribute name="string" type="xsd:string" use="required" />
<xsd:attribute name="toolTip" type="xsd:string" use="required" />
</xsd:complexType>
<xsd:element name="StrSheet_NPCGuild" type="StrSheet_NPCGuild" />
</xsd:schema>