From 4b88d5fcd6a460aff16929fe0f4639c21c4ed276 Mon Sep 17 00:00:00 2001 From: KimigaiiWuyi <444835641@qq.com> Date: Sat, 17 Aug 2024 19:57:43 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20=E5=AF=BC=E5=85=A5`UIGFv4`?= =?UTF-8?q?=E6=8A=BD=E5=8D=A1=E8=AE=B0=E5=BD=95=20(#639)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../genshinuid_gachalog/export_and_import.py | 19 ++++- GenshinUID/tools/data_to_map.py | 81 ++++++++++--------- GenshinUID/utils/map/GS_MAP_PATH.py | 9 +++ GenshinUID/utils/map/data/charList_4.8.0.json | 1 + .../utils/map/data/weaponList_4.8.0.json | 1 + 5 files changed, 71 insertions(+), 40 deletions(-) create mode 100644 GenshinUID/utils/map/data/charList_4.8.0.json create mode 100644 GenshinUID/utils/map/data/weaponList_4.8.0.json diff --git a/GenshinUID/genshinuid_gachalog/export_and_import.py b/GenshinUID/genshinuid_gachalog/export_and_import.py index 1a4e1fe4..90e9d26d 100644 --- a/GenshinUID/genshinuid_gachalog/export_and_import.py +++ b/GenshinUID/genshinuid_gachalog/export_and_import.py @@ -5,8 +5,10 @@ from typing import Dict, List from httpx import get +from gsuid_core.logger import logger from ..utils.resource.RESOURCE_PATH import PLAYER_PATH +from ..utils.map.GS_MAP_PATH import charList, weaponList from .get_gachalogs import NULL_GACHA_LOG, save_gachalogs, all_gacha_type_name INT_TO_TYPE = { @@ -22,8 +24,23 @@ async def import_data(uid: str, raw_data: List[Dict]): result = deepcopy(NULL_GACHA_LOG) for item in raw_data: + if 'name' not in item and 'item_id' not in item: + logger.error(f'[导入抽卡记录] 数据格式错误!{item}') + continue + if 'name' not in item: + if int(item['item_id']) >= 100000: + char_data = charList[str(item['item_id'])] + item['name'] = char_data['CHS'] + item['rank_type'] = ( + '5' if char_data['rank'] == 'QUALITY_ORANGE' else '4' + ) + else: + weapon_data = weaponList[str(item['item_id'])] + item['name'] = weapon_data['CHS'] + item['rank_type'] = str(weapon_data['rank']) + item['uid'] = uid - item['item_id'] = '' + item['item_id'] = item['item_id'] if 'item_id' in item else '' item['count'] = '1' item['lang'] = 'zh-cn' item['id'] = str(item['id']) diff --git a/GenshinUID/tools/data_to_map.py b/GenshinUID/tools/data_to_map.py index c07f4254..89cbb520 100644 --- a/GenshinUID/tools/data_to_map.py +++ b/GenshinUID/tools/data_to_map.py @@ -13,6 +13,29 @@ get_ambr_monster_data, get_ambr_monster_list, ) +from gsuid_core.utils.api.hakush.request import ( # noqa: E402 + get_hakush_char_list, + get_hakush_weapon_list, +) + +from GenshinUID.utils.map.GS_MAP_PATH import ( # noqa: E402 + charList_fileName, + enName2Id_fileName, + icon2Name_fileName, + name2Icon_fileName, + weaponList_fileName, + skillId2Name_fileName, + artifact2attr_fileName, + avatarId2Name_fileName, + avatarId2Star_fileName, + monster2entry_fileName, + talentId2Name_fileName, + weaponId2Name_fileName, + weaponHash2Name_fileName, + weaponHash2Type_fileName, + avatarName2Weapon_fileName, + avatarName2Element_fileName, +) from ..version import Genshin_version # noqa: E402 from ..utils.ambr_to_minigg import convert_ambr_to_minigg # noqa: E402 @@ -31,47 +54,8 @@ version = Genshin_version raw_data = {} -avatarName2Element_fileName = f'avatarName2Element_mapping_{version}.json' -weaponHash2Name_fileName = f'weaponHash2Name_mapping_{version}.json' -weaponHash2Type_fileName = f'weaponHash2Type_mapping_{version}.json' -skillId2Name_fileName = f'skillId2Name_mapping_{version}.json' -talentId2Name_fileName = f'talentId2Name_mapping_{version}.json' -avatarId2Name_fileName = f'avatarId2Name_mapping_{version}.json' -enName2Id_fileName = f'enName2AvatarID_mapping_{version}.json' -avatarId2Star_fileName = f'avatarId2Star_mapping_{version}.json' -avatarName2Weapon_fileName = f'avatarName2Weapon_mapping_{version}.json' -avatarId2SkillList_fileName = f'avatarId2SkillList_mapping_{version}.json' -weaponId2Name_fileName = f'weaponId2Name_mapping_{version}.json' - -monster2entry_fileName = f'monster2entry_mapping_{version}.json' - -artifact2attr_fileName = f'artifact2attr_mapping_{version}.json' -icon2Name_fileName = f'icon2Name_mapping_{version}.json' - BETA_CHAR = { - '10000078': '艾尔海森', - '10000077': '瑶瑶', - '10000079': '迪希雅', - '10000080': '米卡', - '10000081': '卡维', - '10000082': '白术', - '10000061': '绮良良', - '10000083': '琳妮特', - '10000084': '林尼', - '10000085': '菲米尼', - '10000086': '莱欧斯利', - '10000087': '那维莱特', - '10000088': '夏洛蒂', - '10000089': '芙宁娜', - '10000090': '夏沃蕾', - '10000091': '娜维娅', - '10000092': '嘉明', - '10000093': '闲云', - '10000095': '希格雯', - '10000097': '赛索斯', - '10000098': '克洛琳德', - '10000099': '艾梅莉埃', '10000100': '卡齐娜', '10000101': '基尼奇', '10000102': '玛拉妮', @@ -458,6 +442,12 @@ async def artifact2attrJson() -> None: with open(MAP_PATH / icon2Name_fileName, 'w', encoding='UTF-8') as file: json.dump(temp, file, ensure_ascii=False) + temp_reverse = {} + for i in temp: + temp_reverse[temp[i]] = i + with open(MAP_PATH / name2Icon_fileName, 'w', encoding='UTF-8') as file: + json.dump(temp_reverse, file, ensure_ascii=False) + temp2 = {} for i in Display_data: if i['icon'].startswith('UI_RelicIcon'): @@ -483,8 +473,19 @@ async def artifact2attrJson() -> None: json.dump(temp3, file, ensure_ascii=False) +async def restore_hakush_data(): + data = await get_hakush_char_list() + data2 = await get_hakush_weapon_list() + with open(MAP_PATH / charList_fileName, 'w', encoding='UTF-8') as f: + json.dump(data, f, ensure_ascii=False) + + with open(MAP_PATH / weaponList_fileName, 'w', encoding='UTF-8') as f: + json.dump(data2, f, ensure_ascii=False) + + async def main(): # await download_new_file() + ''' global raw_data try: with open(DATA_PATH / 'TextMapCHS.json', 'r', encoding='UTF-8') as f: @@ -501,6 +502,8 @@ async def main(): await artifact2attrJson() await weaponId2Name() await avatarId2SkillGroupList() + ''' + await restore_hakush_data() asyncio.run(main()) diff --git a/GenshinUID/utils/map/GS_MAP_PATH.py b/GenshinUID/utils/map/GS_MAP_PATH.py index a297254e..3cb1f216 100644 --- a/GenshinUID/utils/map/GS_MAP_PATH.py +++ b/GenshinUID/utils/map/GS_MAP_PATH.py @@ -26,12 +26,21 @@ weaponId2Name_fileName = f'weaponId2Name_mapping_{version}.json' EXMonster_fileName = 'ExtraMonster.json' +charList_fileName = f'charList_{version}.json' +weaponList_fileName = f'weaponList_{version}.json' + class TS(TypedDict): Name: Dict[str, str] Icon: Dict[str, str] +with open(MAP / charList_fileName, 'r', encoding='UTF-8') as f: + charList = msgjson.decode(f.read(), type=Dict[str, Dict]) + +with open(MAP / weaponList_fileName, 'r', encoding='UTF-8') as f: + weaponList = msgjson.decode(f.read(), type=Dict[str, Dict[str, str]]) + with open(MAP / avatarId2Name_fileName, 'r', encoding='UTF-8') as f: avatarId2Name = msgjson.decode(f.read(), type=Dict[str, str]) diff --git a/GenshinUID/utils/map/data/charList_4.8.0.json b/GenshinUID/utils/map/data/charList_4.8.0.json new file mode 100644 index 00000000..b6b8735e --- /dev/null +++ b/GenshinUID/utils/map/data/charList_4.8.0.json @@ -0,0 +1 @@ +{"10000037": {"birth": [12, 2], "icon": "UI_AvatarIcon_Ganyu", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_BOW", "release": "2021-01-12 18:00:00", "EN": "Ganyu", "desc": "The secretary at Yuehai Pavilion. The blood of the qilin, an illuminated beast, flows within her veins.", "element": "Cryo", "KR": "감우", "CHS": "甘雨", "JP": "甘雨"}, "10000025": {"birth": [10, 9], "icon": "UI_AvatarIcon_Xingqiu", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "2020-09-15 04:00:00", "EN": "Xingqiu", "desc": "A young man carrying a longsword who is frequently seen at book booths. He has a chivalrous heart and yearns for justice and fairness for all.", "element": "Hydro", "KR": "행추", "CHS": "行秋", "JP": "行秋"}, "10000091": {"birth": [8, 16], "icon": "UI_AvatarIcon_Navia", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_CLAYMORE", "release": "2023-12-19 00:00:00", "EN": "Navia", "desc": "The current President of Spina di Rosula, who is lovely, dutiful, and a great boss.", "element": "Geo", "KR": "나비아", "CHS": "娜维娅", "JP": "ナヴィア"}, "10000007-7": {"birth": [1, 1], "icon": "UI_AvatarIcon_PlayerGirl", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "1970-01-01 00:00:00", "EN": "Traveler", "desc": "A traveler from another world who had their only kin taken away, forcing them to embark on a journey to find The Seven.", "element": "Electro", "KR": "여행자", "CHS": "旅行者", "JP": "旅人"}, "10000092": {"birth": [12, 22], "icon": "UI_AvatarIcon_Gaming", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_CLAYMORE", "release": "2024-01-30 00:00:00", "EN": "Gaming", "desc": "Guard of the Sword and Strongbox Secure Transport Agency, and the head of the \"Mighty Mythical Beasts\" Wushou troupe.", "element": "Pyro", "KR": "가명", "CHS": "嘉明", "JP": "嘉明"}, "10000032": {"birth": [2, 29], "icon": "UI_AvatarIcon_Bennett", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "2020-09-15 04:00:00", "EN": "Bennett", "desc": "A good-natured adventurer from Mondstadt who's unfortunately extremely unlucky.", "element": "Pyro", "KR": "베넷", "CHS": "班尼特", "JP": "ベネット"}, "10000050": {"birth": [1, 9], "icon": "UI_AvatarIcon_Tohma", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_POLE", "release": "2021-11-02 18:00:00", "EN": "Thoma", "desc": "The Kamisato Clan's housekeeper. A well-known \"fixer\" in Inazuma.", "element": "Pyro", "KR": "토마", "CHS": "托马", "JP": "トーマ"}, "10000085": {"birth": [9, 24], "icon": "UI_AvatarIcon_Freminet", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_CLAYMORE", "release": "2023-09-05 18:00:00", "EN": "Freminet", "desc": "A reserved young man who is well-versed in diving. Beneath his distant, icy demeanor lies a pure heart bereft of all flaws.", "element": "Cryo", "KR": "프레미네", "CHS": "菲米尼", "JP": "フレミネ"}, "10000083": {"birth": [2, 2], "icon": "UI_AvatarIcon_Linette", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "2023-08-15 00:00:00", "EN": "Lynette", "desc": "A magic assistant of few words, her emotions are as inscrutable as any cat's.", "element": "Anemo", "KR": "리넷", "CHS": "琳妮特", "JP": "リネット"}, "10000065": {"birth": [7, 27], "icon": "UI_AvatarIcon_Shinobu", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "2022-06-21 18:00:00", "EN": "Kuki Shinobu", "desc": "The capable and reliable Arataki Gang deputy leader. Please note: capable and reliable are not appellations for the \"Arataki Gang,\" but for their deputy leader in specific.", "element": "Electro", "KR": "쿠키 시노부", "CHS": "久岐忍", "JP": "久岐忍"}, "10000002": {"birth": [9, 28], "icon": "UI_AvatarIcon_Ayaka", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "2021-07-21 00:00:00", "EN": "Kamisato Ayaka", "desc": "Daughter of the Yashiro Commission's Kamisato Clan. Dignified and elegant, as well as wise and strong.", "element": "Cryo", "KR": "카미사토 아야카", "CHS": "神里绫华", "JP": "神里綾華"}, "10000015": {"birth": [11, 30], "icon": "UI_AvatarIcon_Kaeya", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "2020-09-15 04:00:00", "EN": "Kaeya", "desc": "An accomplished swordsman and a strategic thinker in the Knights of Favonius, rumored to hail from beyond Mondstadt.", "element": "Cryo", "KR": "케이아", "CHS": "凯亚", "JP": "ガイア"}, "10000042": {"birth": [11, 20], "icon": "UI_AvatarIcon_Keqing", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "2020-09-15 04:00:00", "EN": "Keqing", "desc": "The Yuheng of the Liyue Qixing. Keqing has much to say about Rex Lapis's unilateral approach to policymaking in Liyue — but in truth, gods admire skeptics such as her quite a lot.", "element": "Electro", "KR": "각청", "CHS": "刻晴", "JP": "刻晴"}, "10000043": {"birth": [11, 26], "icon": "UI_AvatarIcon_Sucrose", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_CATALYST", "release": "2020-09-15 04:00:00", "EN": "Sucrose", "desc": "An alchemist filled with curiosity about all things. She researches bio-alchemy.", "element": "Anemo", "KR": "설탕", "CHS": "砂糖", "JP": "スクロース"}, "10000100": {"birth": [4, 22], "icon": "UI_AvatarIcon_Kachina", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_POLE", "release": "1970-01-01 00:00:00", "EN": "Kachina", "desc": "A young warrior of the Nanatzcayan, given the Ancient Name of \"Uthabiti.\" Kind-hearted and insatiably persistent, she grows stronger and more capable with each setback she faces.", "element": "Geo", "KR": "카치나", "CHS": "卡齐娜", "JP": "カチーナ"}, "10000007-4": {"birth": [1, 1], "icon": "UI_AvatarIcon_PlayerGirl", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "1970-01-01 00:00:00", "EN": "Traveler", "desc": "A traveler from another world who had their only kin taken away, forcing them to embark on a journey to find The Seven.", "element": "Anemo", "KR": "여행자", "CHS": "旅行者", "JP": "旅人"}, "10000007-6": {"birth": [1, 1], "icon": "UI_AvatarIcon_PlayerGirl", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "1970-01-01 00:00:00", "EN": "Traveler", "desc": "A traveler from another world who had their only kin taken away, forcing them to embark on a journey to find The Seven.", "element": "Geo", "KR": "여행자", "CHS": "旅行者", "JP": "旅人"}, "10000095": {"birth": [3, 30], "icon": "UI_AvatarIcon_Sigewinne", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_BOW", "release": "2024-06-26 18:00:00", "EN": "Sigewinne", "desc": "A Melusine and the Fortress of Meropide's head nurse. She cares equally for every convict locked in the undersea prison.", "element": "Hydro", "KR": "시그윈", "CHS": "希格雯", "JP": "シグウィン"}, "10000033": {"birth": [7, 20], "icon": "UI_AvatarIcon_Tartaglia", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_BOW", "release": "2020-11-11 04:00:00", "EN": "Tartaglia", "desc": "No. 11 of The Harbingers, also known as \"Childe.\" His name is highly feared on the battlefield.", "element": "Hydro", "KR": "타르탈리아", "CHS": "达达利亚", "JP": "タルタリヤ"}, "10000073": {"birth": [10, 27], "icon": "UI_AvatarIcon_Nahida", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_CATALYST", "release": "2022-11-01 00:00:00", "EN": "Nahida", "desc": "A caged bird secluded within the confines of the Sanctuary of Surasthana who can only see the world in her dreams.", "element": "Dendro", "KR": "나히다", "CHS": "纳西妲", "JP": "ナヒーダ"}, "10000071": {"birth": [6, 23], "icon": "UI_AvatarIcon_Cyno", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_POLE", "release": "2022-09-27 00:00:00", "EN": "Cyno", "desc": "The General Mahamatra in charge of supervising the researchers of the Akademiya. It is said that when he gets down to work, the General Mahamatra is even more efficient than the \"Great Vayuvyastra\" made by the Kshahrewar.", "element": "Electro", "KR": "사이노", "CHS": "赛诺", "JP": "セノ"}, "10000006": {"birth": [6, 9], "icon": "UI_AvatarIcon_Lisa", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_CATALYST", "release": "2020-09-15 04:00:00", "EN": "Lisa", "desc": "The languid but knowledgeable Librarian of the Knights of Favonius, deemed by Sumeru Akademiya to be their most distinguished graduate in the past two centuries.", "element": "Electro", "KR": "리사", "CHS": "丽莎", "JP": "リサ"}, "10000007-3": {"birth": [1, 1], "icon": "UI_AvatarIcon_PlayerGirl", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "1970-01-01 00:00:00", "EN": "Traveler", "desc": "A traveler from another world who had their only kin taken away, forcing them to embark on a journey to find The Seven.", "element": "Hydro", "KR": "여행자", "CHS": "旅行者", "JP": "旅人"}, "10000088": {"birth": [4, 10], "icon": "UI_AvatarIcon_Charlotte", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_CATALYST", "release": "2023-11-07 00:00:00", "EN": "Charlotte", "desc": "Indefatigable reporter of The Steambird, constantly on the hunt for the \"truth.\"", "element": "Cryo", "KR": "샤를로트", "CHS": "夏洛蒂", "JP": "シャルロット"}, "10000094": {"birth": [8, 17], "icon": "UI_AvatarIcon_Chiori", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "2024-03-12 00:00:00", "EN": "Chiori", "desc": "The owner of Chioriya Boutique. A tailor renowned throughout Fontaine.", "element": "Geo", "KR": "치오리", "CHS": "千织", "JP": "千織"}, "10000044": {"birth": [10, 16], "icon": "UI_AvatarIcon_Xinyan", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_CLAYMORE", "release": "2020-12-02 04:00:00", "EN": "Xinyan", "desc": "Liyue's sole rock 'n' roll musician. She rebels against ossified prejudices using her music and passionate singing.", "element": "Pyro", "KR": "신염", "CHS": "辛焱", "JP": "辛炎"}, "10000075": {"birth": [1, 3], "icon": "UI_AvatarIcon_Wanderer", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_CATALYST", "release": "2022-12-06 00:00:00", "EN": "Wanderer", "desc": "A wayfaring figure whose identity is a mystery. He dresses like a mountain ascetic, but he certainly does not act the part.", "element": "Anemo", "KR": "방랑자", "CHS": "流浪者", "JP": "放浪者"}, "10000052": {"birth": [6, 26], "icon": "UI_AvatarIcon_Shougun", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_POLE", "release": "2021-09-01 00:00:00", "EN": "Raiden Shogun", "desc": "Her Excellency, the Almighty Narukami Ogosho, who promised the people of Inazuma an unchanging Eternity.", "element": "Electro", "KR": "라이덴 쇼군", "CHS": "雷电将军", "JP": "雷電将軍"}, "10000102": {"birth": [8, 3], "icon": "UI_AvatarIcon_Mualani", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_CATALYST", "release": "1970-01-01 00:00:00", "EN": "Mualani", "desc": "A well-known guide in Natlan who owns a watersports shop, and expert in all forms of wave-chasing.", "element": "Hydro", "KR": "말라니", "CHS": "玛拉妮", "JP": "ムアラニ"}, "10000021": {"birth": [8, 10], "icon": "UI_AvatarIcon_Ambor", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_BOW", "release": "2020-09-15 04:00:00", "EN": "Amber", "desc": "Always energetic and full of life, Amber's the best — albeit only — Outrider of the Knights of Favonius.", "element": "Pyro", "KR": "엠버", "CHS": "安柏", "JP": "アンバー"}, "10000054": {"birth": [2, 22], "icon": "UI_AvatarIcon_Kokomi", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_CATALYST", "release": "2021-09-21 18:00:00", "EN": "Sangonomiya Kokomi", "desc": "The Divine Priestess of Watatsumi Island. All of the island's affairs are at this young lady's fingertips.", "element": "Hydro", "KR": "산고노미야 코코미", "CHS": "珊瑚宫心海", "JP": "珊瑚宮心海"}, "10000058": {"birth": [6, 27], "icon": "UI_AvatarIcon_Yae", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_CATALYST", "release": "2022-02-16 00:00:00", "EN": "Yae Miko", "desc": "Lady Guuji of the Grand Narukami Shrine. Also serves as the editor-in-chief of Yae Publishing House. Unimaginable intelligence and cunning are hidden under her beautiful appearance.", "element": "Electro", "KR": "야에 미코", "CHS": "八重神子", "JP": "八重神子"}, "10000046": {"birth": [7, 15], "icon": "UI_AvatarIcon_Hutao", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_POLE", "release": "2021-03-02 18:00:00", "EN": "Hu Tao", "desc": "The 77th Director of the Wangsheng Funeral Parlor. She took over the business at a rather young age.", "element": "Pyro", "KR": "호두", "CHS": "胡桃", "JP": "胡桃"}, "10000034": {"birth": [3, 21], "icon": "UI_AvatarIcon_Noel", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_CLAYMORE", "release": "2020-09-15 04:00:00", "EN": "Noelle", "desc": "A maid who faithfully serves the Knights of Favonius. She dreams of joining their ranks someday.", "element": "Geo", "KR": "노엘", "CHS": "诺艾尔", "JP": "ノエル"}, "10000093": {"birth": [4, 11], "icon": "UI_AvatarIcon_Liuyun", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_CATALYST", "release": "2024-01-30 00:00:00", "EN": "Xianyun", "desc": "One of the Mighty and Illuminated Adepti of Jueyun, known as \"Cloud Retainer.\" Expert in all kinds of mechanical contraptions, her heart now turns towards the affairs of the mortal world, through which she walks under the name \"Xianyun.\"", "element": "Anemo", "KR": "한운", "CHS": "闲云", "JP": "閑雲"}, "10000007-8": {"birth": [1, 1], "icon": "UI_AvatarIcon_PlayerGirl", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "1970-01-01 00:00:00", "EN": "Traveler", "desc": "A traveler from another world who had their only kin taken away, forcing them to embark on a journey to find The Seven.", "element": "Dendro", "KR": "여행자", "CHS": "旅行者", "JP": "旅人"}, "10000096": {"birth": [8, 22], "icon": "UI_AvatarIcon_Arlecchino", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_POLE", "release": "2024-04-23 00:00:00", "EN": "Arlecchino", "desc": "\"The Knave,\" Fourth of the Fatui Harbingers. A poised, ruthless diplomat. To the children in the House of the Hearth, she is their feared yet dependable \"Father.\"", "element": "Pyro", "KR": "아를레키노", "CHS": "阿蕾奇诺", "JP": "アルレッキーノ"}, "10000082": {"birth": [4, 25], "icon": "UI_AvatarIcon_Baizhuer", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_CATALYST", "release": "2023-05-02 18:00:00", "EN": "Baizhu", "desc": "The owner of Bubu Pharmacy, who is rarely seen without the white snake named Changsheng. His medicinal knowledge is encyclopedic, and his personal intrigues subtle.", "element": "Dendro", "KR": "백출", "CHS": "白术", "JP": "白朮"}, "10000036": {"birth": [9, 7], "icon": "UI_AvatarIcon_Chongyun", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_CLAYMORE", "release": "2020-09-15 04:00:00", "EN": "Chongyun", "desc": "A young exorcist from a family of exorcists. He does everything he can to suppress his abundance of yang energy.", "element": "Cryo", "KR": "중운", "CHS": "重云", "JP": "重雲"}, "10000049": {"birth": [6, 21], "icon": "UI_AvatarIcon_Yoimiya", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_BOW", "release": "2021-08-10 18:00:00", "EN": "Yoimiya", "desc": "Owner of Naganohara Fireworks. Known as the \"Queen of the Summer Festival,\" she excels in her craft of creating fireworks that symbolize people's hopes and dreams.", "element": "Pyro", "KR": "요이미야", "CHS": "宵宫", "JP": "宵宮"}, "10000089": {"birth": [10, 13], "icon": "UI_AvatarIcon_Furina", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "2023-11-07 00:00:00", "EN": "Furina", "desc": "The absolute focus of the stage of judgment, until the final applause sounds.", "element": "Hydro", "KR": "푸리나", "CHS": "芙宁娜", "JP": "フリーナ"}, "10000051": {"birth": [10, 25], "icon": "UI_AvatarIcon_Eula", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_CLAYMORE", "release": "2021-05-18 18:00:00", "EN": "Eula", "desc": "The Spindrift Knight, a scion of the old aristocracy, and the Captain of the Knights of Favonius Reconnaissance Company. The reason for which a descendant of the ancient nobles might join the Knights remains a great mystery in Mondstadt to this very day.", "element": "Cryo", "KR": "유라", "CHS": "优菈", "JP": "エウルア"}, "10000064": {"birth": [5, 21], "icon": "UI_AvatarIcon_Yunjin", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_POLE", "release": "2022-01-05 00:00:00", "EN": "Yun Jin", "desc": "A renowned Liyue opera singer who is skilled in both playwriting and singing. Her style is one-of-a-kind, exquisite and delicate, much like the person herself.", "element": "Geo", "KR": "운근", "CHS": "云堇", "JP": "雲菫"}, "10000076": {"birth": [8, 20], "icon": "UI_AvatarIcon_Faruzan", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_BOW", "release": "2022-12-06 00:00:00", "EN": "Faruzan", "desc": "A researcher from \"one hundred years ago.\" She enjoys self-identifying as everyone's senior, and has significant knowledge of ancient scripts and machines of all kinds.", "element": "Anemo", "KR": "파루잔", "CHS": "珐露珊", "JP": "ファルザン"}, "10000063": {"birth": [3, 10], "icon": "UI_AvatarIcon_Shenhe", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_POLE", "release": "2022-01-05 00:00:00", "EN": "Shenhe", "desc": "An adepti disciple with a most unusual air about her. Having spent much time cultivating in isolation in Liyue's mountains, she has become every bit as cool and distant as the adepti themselves.", "element": "Cryo", "KR": "신학", "CHS": "申鹤", "JP": "申鶴"}, "10000003": {"birth": [3, 14], "icon": "UI_AvatarIcon_Qin", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "2020-09-15 04:00:00", "EN": "Jean", "desc": "The righteous and rigorous Dandelion Knight, and Acting Grand Master of Mondstadt's Knights of Favonius.", "element": "Anemo", "KR": "진", "CHS": "琴", "JP": "ジン"}, "10000060": {"birth": [4, 20], "icon": "UI_AvatarIcon_Yelan", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_BOW", "release": "2022-05-31 00:00:00", "EN": "Yelan", "desc": "A mysterious person who claims to work for the Ministry of Civil Affairs, but is a \"non-entity\" on the Ministry of Civil Affairs' list.", "element": "Hydro", "KR": "야란", "CHS": "夜兰", "JP": "夜蘭"}, "10000067": {"birth": [5, 8], "icon": "UI_AvatarIcon_Collei", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_BOW", "release": "2022-08-24 00:00:00", "EN": "Collei", "desc": "A trainee ranger active in Avidya Forest. Behind her enthusiastic words and actions hides a slightly introverted personality.", "element": "Dendro", "KR": "콜레이", "CHS": "柯莱", "JP": "コレイ"}, "10000027": {"birth": [8, 26], "icon": "UI_AvatarIcon_Ningguang", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_CATALYST", "release": "2020-09-15 04:00:00", "EN": "Ningguang", "desc": "The Tianquan of the Liyue Qixing. Her wealth is unsurpassed in all of Teyvat.", "element": "Geo", "KR": "응광", "CHS": "凝光", "JP": "凝光"}, "10000029": {"birth": [7, 27], "icon": "UI_AvatarIcon_Klee", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_CATALYST", "release": "2020-09-15 04:00:00", "EN": "Klee", "desc": "An explosives expert and a regular at the Knights of Favonius's confinement room. Also known as Fleeing Sunlight.", "element": "Pyro", "KR": "클레", "CHS": "可莉", "JP": "クレー"}, "10000005-6": {"birth": [1, 1], "icon": "UI_AvatarIcon_PlayerBoy", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "1970-01-01 00:00:00", "EN": "Traveler", "desc": "A traveler from another world who had their only kin taken away, forcing them to embark on a journey to find The Seven.", "element": "Geo", "KR": "여행자", "CHS": "旅行者", "JP": "旅人"}, "10000057": {"birth": [6, 1], "icon": "UI_AvatarIcon_Itto", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_CLAYMORE", "release": "2021-12-14 18:00:00", "EN": "Arataki Itto", "desc": "The first and greatest head of the Arataki Gang, famed throughout Inazuma City's Hanamizaka... Wait, what? You've never heard of them? Are you trying to be funny here?", "element": "Geo", "KR": "아라타키 이토", "CHS": "荒泷一斗", "JP": "荒瀧一斗"}, "10000066": {"birth": [3, 26], "icon": "UI_AvatarIcon_Ayato", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "2022-03-30 00:00:00", "EN": "Kamisato Ayato", "desc": "The young but highly accomplished head of the Yashiro Commission's Kamisato Clan. Cultured and polite, he is a man of many ways and means.", "element": "Hydro", "KR": "카미사토 아야토", "CHS": "神里绫人", "JP": "神里綾人"}, "10000077": {"birth": [3, 6], "icon": "UI_AvatarIcon_Yaoyao", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_POLE", "release": "2023-01-17 00:00:00", "EN": "Yaoyao", "desc": "Streetward Rambler's youngest disciple. A gentle and caring \"little adult.\"", "element": "Dendro", "KR": "요요", "CHS": "瑶瑶", "JP": "ヨォーヨ"}, "10000038": {"birth": [9, 13], "icon": "UI_AvatarIcon_Albedo", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "2020-12-22 00:00:00", "EN": "Albedo", "desc": "A genius known as the Kreideprinz, he is the Chief Alchemist and Captain of the Investigation Team of the Knights of Favonius.", "element": "Geo", "KR": "알베도", "CHS": "阿贝多", "JP": "アルベド"}, "10000098": {"birth": [9, 20], "icon": "UI_AvatarIcon_Clorinde", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "2024-06-04 00:00:00", "EN": "Clorinde", "desc": "An undefeated Champion Duelist. Sword in hand, she defends justice in the Court of Fontaine.", "element": "Electro", "KR": "클로린드", "CHS": "克洛琳德", "JP": "クロリンデ"}, "10000101": {"birth": [11, 11], "icon": "UI_AvatarIcon_Kinich", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_CLAYMORE", "release": "1970-01-01 00:00:00", "EN": "Kinich", "desc": "A Huitztlan Saurian Hunter skilled at counting costs.", "element": "Dendro", "KR": "키니치", "CHS": "基尼奇", "JP": "キィニチ"}, "10000005-3": {"birth": [1, 1], "icon": "UI_AvatarIcon_PlayerBoy", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "1970-01-01 00:00:00", "EN": "Traveler", "desc": "A traveler from another world who had their only kin taken away, forcing them to embark on a journey to find The Seven.", "element": "Hydro", "KR": "여행자", "CHS": "旅行者", "JP": "旅人"}, "10000074": {"birth": [12, 19], "icon": "UI_AvatarIcon_Layla", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "2022-11-18 18:00:00", "EN": "Layla", "desc": "A Rtawahist student who specializes in Theoretical Astrology. Heavily prone to somnambulism and locked in a grinding war with sleep deprivation, the problem of restful slumber is a most troubling one to her.", "element": "Cryo", "KR": "레일라", "CHS": "莱依拉", "JP": "レイラ"}, "10000014": {"birth": [7, 5], "icon": "UI_AvatarIcon_Barbara", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_CATALYST", "release": "2020-09-15 04:00:00", "EN": "Barbara", "desc": "Every citizen of Mondstadt adores Barbara. She learned the word \"idol\" from a magazine.", "element": "Hydro", "KR": "바바라", "CHS": "芭芭拉", "JP": "バーバラ"}, "10000024": {"birth": [2, 14], "icon": "UI_AvatarIcon_Beidou", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_CLAYMORE", "release": "2020-09-15 04:00:00", "EN": "Beidou", "desc": "Captain of her crew, The Crux. She's quite an unbound and forthright woman.", "element": "Electro", "KR": "북두", "CHS": "北斗", "JP": "北斗"}, "10000072": {"birth": [5, 3], "icon": "UI_AvatarIcon_Candace", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_POLE", "release": "2022-09-27 00:00:00", "EN": "Candace", "desc": "A descendant of King Deshret with an amber left eye. The defender of Aaru Village.", "element": "Hydro", "KR": "캔디스", "CHS": "坎蒂丝", "JP": "キャンディス"}, "10000099": {"birth": [9, 22], "icon": "UI_AvatarIcon_Emilie", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_POLE", "release": "2024-08-06 18:00:00", "EN": "Emilie", "desc": "A Fontainian perfumer, one who bottles secrets.", "element": "Dendro", "KR": "에밀리", "CHS": "艾梅莉埃", "JP": "エミリエ"}, "10000061": {"birth": [1, 22], "icon": "UI_AvatarIcon_Momoka", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "2023-05-23 00:00:00", "EN": "Kirara", "desc": "A courier for Komaniya Express, a delivery company in Inazuma. A nekomata who loves her job and human society.", "element": "Dendro", "KR": "키라라", "CHS": "绮良良", "JP": "綺良々"}, "10000005-7": {"birth": [1, 1], "icon": "UI_AvatarIcon_PlayerBoy", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "1970-01-01 00:00:00", "EN": "Traveler", "desc": "A traveler from another world who had their only kin taken away, forcing them to embark on a journey to find The Seven.", "element": "Electro", "KR": "여행자", "CHS": "旅行者", "JP": "旅人"}, "10000020": {"birth": [9, 9], "icon": "UI_AvatarIcon_Razor", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_CLAYMORE", "release": "2020-09-15 04:00:00", "EN": "Razor", "desc": "A boy who lives among the wolves in Wolvendom of Mondstadt, away from human civilization. As agile as lightning.", "element": "Electro", "KR": "레이저", "CHS": "雷泽", "JP": "レザー"}, "10000048": {"birth": [7, 28], "icon": "UI_AvatarIcon_Feiyan", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_CATALYST", "release": "2021-04-27 00:00:00", "EN": "Yanfei", "desc": "A well-known legal adviser active in Liyue Harbor. A brilliant young lady in whose veins runs the blood of an illuminated beast.", "element": "Pyro", "KR": "연비", "CHS": "烟绯", "JP": "煙緋"}, "10000068": {"birth": [12, 21], "icon": "UI_AvatarIcon_Dori", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_CLAYMORE", "release": "2022-09-09 18:00:00", "EN": "Dori", "desc": "An elusive merchant who has a fondness for glittering Mora.", "element": "Electro", "KR": "도리", "CHS": "多莉", "JP": "ドリー"}, "10000022": {"birth": [6, 16], "icon": "UI_AvatarIcon_Venti", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_BOW", "release": "2020-09-15 04:00:00", "EN": "Venti", "desc": "One of the many bards of Mondstadt, who freely wanders the city's streets and alleys.", "element": "Anemo", "KR": "벤티", "CHS": "温迪", "JP": "ウェンティ"}, "10000080": {"birth": [8, 11], "icon": "UI_AvatarIcon_Mika", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_POLE", "release": "2023-03-21 18:00:00", "EN": "Mika", "desc": "A young knight born to an ordinary family. He serves as a Front-Line Surveyor in his Company. He is a low-key and cautious character.", "element": "Cryo", "KR": "미카", "CHS": "米卡", "JP": "ミカ"}, "10000055": {"birth": [5, 18], "icon": "UI_AvatarIcon_Gorou", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_BOW", "release": "2021-12-14 18:00:00", "EN": "Gorou", "desc": "The great general of Watatsumi Island's forces. He is deeply trusted by his subordinates.", "element": "Geo", "KR": "고로", "CHS": "五郎", "JP": "ゴロー"}, "10000026": {"birth": [4, 17], "icon": "UI_AvatarIcon_Xiao", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_POLE", "release": "2021-02-02 00:00:00", "EN": "Xiao", "desc": "A yaksha adeptus who defends Liyue. Also heralded as the \"Conqueror of Demons\" and \"Vigilant Yaksha.\"", "element": "Anemo", "KR": "소", "CHS": "魈", "JP": "魈"}, "10000081": {"birth": [7, 9], "icon": "UI_AvatarIcon_Kaveh", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_CLAYMORE", "release": "2023-05-02 18:00:00", "EN": "Kaveh", "desc": "A renowned architect from Sumeru who perhaps cares a bit too much about too many things. He is an aesthete troubled by reality.", "element": "Dendro", "KR": "카베", "CHS": "卡维", "JP": "カーヴェ"}, "10000078": {"birth": [2, 11], "icon": "UI_AvatarIcon_Alhatham", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "2023-01-17 00:00:00", "EN": "Alhaitham", "desc": "The current scribe of the Sumeru Akademiya, a man endowed with extraordinary intelligence and talent. He lives free — free from the searching eyes of ordinary people, anyway.", "element": "Dendro", "KR": "알하이탐", "CHS": "艾尔海森", "JP": "アルハイゼン"}, "10000090": {"birth": [1, 10], "icon": "UI_AvatarIcon_Chevreuse", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_POLE", "release": "2024-01-09 18:00:00", "EN": "Chevreuse", "desc": "The captain of the Special Security and Surveillance Patrol, who wears justice as an ever-present seal upon her heart. Her musket shall only ever point at the guilty.", "element": "Pyro", "KR": "슈브르즈", "CHS": "夏沃蕾", "JP": "シュヴルーズ"}, "10000097": {"birth": [5, 31], "icon": "UI_AvatarIcon_Sethos", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_BOW", "release": "2024-06-04 00:00:00", "EN": "Sethos", "desc": "The Temple of Silence's heir. Burdened with secrets, he comes from the sands.", "element": "Electro", "KR": "세토스", "CHS": "赛索斯", "JP": "セトス"}, "10000053": {"birth": [10, 19], "icon": "UI_AvatarIcon_Sayu", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_CLAYMORE", "release": "2021-08-10 18:00:00", "EN": "Sayu", "desc": "A pint-sized ninja attached to the Shuumatsuban, who always seems sleep-deprived.", "element": "Anemo", "KR": "사유", "CHS": "早柚", "JP": "早柚"}, "10000070": {"birth": [12, 3], "icon": "UI_AvatarIcon_Nilou", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "2022-10-14 18:00:00", "EN": "Nilou", "desc": "The star of the Zubayr Theater. She is full of warmth and innocence, and her dances are lively and elegant.", "element": "Hydro", "KR": "닐루", "CHS": "妮露", "JP": "ニィロウ"}, "10000031": {"birth": [5, 27], "icon": "UI_AvatarIcon_Fischl", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_BOW", "release": "2020-09-15 04:00:00", "EN": "Fischl", "desc": "A mysterious girl who calls herself \"Prinzessin der Verurteilung\" and travels with a night raven named Oz.", "element": "Electro", "KR": "피슬", "CHS": "菲谢尔", "JP": "フィッシュル"}, "10000045": {"birth": [1, 24], "icon": "UI_AvatarIcon_Rosaria", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_POLE", "release": "2021-04-06 18:00:00", "EN": "Rosaria", "desc": "A sister of the church, though you wouldn't know it if it weren't for her attire. Known for her sharp, cold words and manner, she often works alone.", "element": "Cryo", "KR": "로자리아", "CHS": "罗莎莉亚", "JP": "ロサリア"}, "10000079": {"birth": [4, 7], "icon": "UI_AvatarIcon_Dehya", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_CLAYMORE", "release": "2023-02-28 00:00:00", "EN": "Dehya", "desc": "A member of the Eremites, a mercenary organization that roams the sands of Sumeru. Valiant and powerful, she enjoys great fame amongst her fellow Eremites.", "element": "Pyro", "KR": "데히야", "CHS": "迪希雅", "JP": "ディシア"}, "10000035": {"birth": [3, 3], "icon": "UI_AvatarIcon_Qiqi", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "2020-09-15 04:00:00", "EN": "Qiqi", "desc": "An apprentice and herb gatherer at Bubu Pharmacy. An undead with a bone-white complexion, she seldom has much in the way of words or emotion.", "element": "Cryo", "KR": "치치", "CHS": "七七", "JP": "七七"}, "10000047": {"birth": [10, 29], "icon": "UI_AvatarIcon_Kazuha", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "2021-06-29 18:00:00", "EN": "Kaedehara Kazuha", "desc": "A wandering samurai from Inazuma who is currently with Liyue's Crux Fleet. A gentle and carefree soul whose heart hides a great many burdens from the past.", "element": "Anemo", "KR": "카에데하라 카즈하", "CHS": "枫原万叶", "JP": "楓原万葉"}, "10000086": {"birth": [11, 23], "icon": "UI_AvatarIcon_Wriothesley", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_CATALYST", "release": "2023-10-17 18:00:00", "EN": "Wriothesley", "desc": "Duke of the Fortress of Meropide, Lord Incognito of the murky depths.", "element": "Cryo", "KR": "라이오슬리", "CHS": "莱欧斯利", "JP": "リオセスリ"}, "10000005-4": {"birth": [1, 1], "icon": "UI_AvatarIcon_PlayerBoy", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "1970-01-01 00:00:00", "EN": "Traveler", "desc": "A traveler from another world who had their only kin taken away, forcing them to embark on a journey to find The Seven.", "element": "Anemo", "KR": "여행자", "CHS": "旅行者", "JP": "旅人"}, "10000087": {"birth": [12, 18], "icon": "UI_AvatarIcon_Neuvillette", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_CATALYST", "release": "2023-09-26 00:00:00", "EN": "Neuvillette", "desc": "The Chief Justice of Fontaine, known as the Iudex, is renowned for his unassailable impartiality.", "element": "Hydro", "KR": "느비예트", "CHS": "那维莱特", "JP": "ヌヴィレット"}, "10000023": {"birth": [11, 2], "icon": "UI_AvatarIcon_Xiangling", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_POLE", "release": "2020-09-15 04:00:00", "EN": "Xiangling", "desc": "A renowned chef from Liyue. She's extremely passionate about cooking and excels at making her signature hot and spicy dishes.", "element": "Pyro", "KR": "향릉", "CHS": "香菱", "JP": "香菱"}, "10000041": {"birth": [8, 31], "icon": "UI_AvatarIcon_Mona", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_CATALYST", "release": "2020-09-15 04:00:00", "EN": "Mona", "desc": "A mysterious young astrologer who proclaims herself to be \"Astrologist Mona Megistus,\" and who possesses abilities to match the title. Erudite, but prideful.", "element": "Hydro", "KR": "모나", "CHS": "莫娜", "JP": "モナ"}, "10000005-8": {"birth": [1, 1], "icon": "UI_AvatarIcon_PlayerBoy", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_SWORD_ONE_HAND", "release": "1970-01-01 00:00:00", "EN": "Traveler", "desc": "A traveler from another world who had their only kin taken away, forcing them to embark on a journey to find The Seven.", "element": "Dendro", "KR": "여행자", "CHS": "旅行者", "JP": "旅人"}, "10000056": {"birth": [7, 14], "icon": "UI_AvatarIcon_Sara", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_BOW", "release": "2021-09-01 00:00:00", "EN": "Kujou Sara", "desc": "A general of the Tenryou Commission. Bold, decisive, and skilled in battle.", "element": "Electro", "KR": "쿠죠 사라", "CHS": "九条裟罗", "JP": "九条裟羅"}, "10000039": {"birth": [1, 18], "icon": "UI_AvatarIcon_Diona", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_BOW", "release": "2020-11-11 04:00:00", "EN": "Diona", "desc": "A young lady who has inherited trace amounts of non-human blood. She is the incredibly popular bartender of the Cat's Tail tavern.", "element": "Cryo", "KR": "디오나", "CHS": "迪奥娜", "JP": "ディオナ"}, "10000062": {"birth": [4, 4], "icon": "UI_AvatarIcon_Aloy", "rank": "QUALITY_ORANGE_SP", "weapon": "WEAPON_BOW", "release": "2021-09-01 00:00:00", "EN": "Aloy", "desc": "Formerly an outcast, now a hunter of unparalleled skill. Ready to do the right thing at any time.", "element": "Cryo", "KR": "에일로이", "CHS": "埃洛伊", "JP": "アーロイ"}, "10000069": {"birth": [12, 29], "icon": "UI_AvatarIcon_Tighnari", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_BOW", "release": "2022-08-24 00:00:00", "EN": "Tighnari", "desc": "A young researcher well-versed in botany who currently serves as a Forest Watcher in Avidya Forest. He is a straight shooter with a warm heart — and a dab hand at guiding even the dullest of pupils.", "element": "Dendro", "KR": "타이나리", "CHS": "提纳里", "JP": "ティナリ"}, "10000016": {"birth": [4, 30], "icon": "UI_AvatarIcon_Diluc", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_CLAYMORE", "release": "2020-09-15 04:00:00", "EN": "Diluc", "desc": "The tycoon of a winery empire in Mondstadt, unmatched in every possible way.", "element": "Pyro", "KR": "다이루크", "CHS": "迪卢克", "JP": "ディルック"}, "10000059": {"birth": [7, 24], "icon": "UI_AvatarIcon_Heizo", "rank": "QUALITY_PURPLE", "weapon": "WEAPON_CATALYST", "release": "2022-07-13 00:00:00", "EN": "Shikanoin Heizou", "desc": "A young prodigy detective from the Tenryou Commission. His senses are sharp and his thoughts are clear.", "element": "Anemo", "KR": "시카노인 헤이조", "CHS": "鹿野院平藏", "JP": "鹿野院平蔵"}, "10000084": {"birth": [2, 2], "icon": "UI_AvatarIcon_Liney", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_BOW", "release": "2023-08-15 00:00:00", "EN": "Lyney", "desc": "A famed Fontainian magician who possesses great stage presence as well as gift of the gab. Audiences are enthralled by his exquisite skills, and they hang on to his every clever word.", "element": "Pyro", "KR": "리니", "CHS": "林尼", "JP": "リネ"}, "10000030": {"birth": [12, 31], "icon": "UI_AvatarIcon_Zhongli", "rank": "QUALITY_ORANGE", "weapon": "WEAPON_POLE", "release": "2020-12-02 04:00:00", "EN": "Zhongli", "desc": "A mysterious expert contracted by the Wangsheng Funeral Parlor. Extremely knowledgeable in all things.", "element": "Geo", "KR": "종려", "CHS": "钟离", "JP": "鍾離"}} \ No newline at end of file diff --git a/GenshinUID/utils/map/data/weaponList_4.8.0.json b/GenshinUID/utils/map/data/weaponList_4.8.0.json new file mode 100644 index 00000000..4190223f --- /dev/null +++ b/GenshinUID/utils/map/data/weaponList_4.8.0.json @@ -0,0 +1 @@ +{"15303": {"icon": "UI_EquipIcon_Bow_Curve", "rank": 3, "type": "WEAPON_BOW", "EN": "Recurve Bow", "desc": "It is said that this bow can shoot down eagles in flight, but ultimately how true that is depends on the skill of the archer.", "KR": "곡궁", "CHS": "反曲弓", "JP": "リカーブボウ"}, "12418": {"icon": "UI_EquipIcon_Claymore_Fleurfair", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "Mailed Flower", "desc": "A graceful and elegant greatsword that is decorated with flowers and ribbons.", "KR": "꽃 장식 대검", "CHS": "饰铁之花", "JP": "鉄彩の花"}, "15414": {"icon": "UI_EquipIcon_Bow_Bakufu", "rank": 4, "type": "WEAPON_BOW", "EN": "Hamayumi", "desc": "A certain shrine maiden once owned this warbow. It was made with surpassing skill, and is both intricate and sturdy.", "KR": "파마궁", "CHS": "破魔之弓", "JP": "破魔の弓"}, "13426": {"icon": "UI_EquipIcon_Pole_Caduceus", "rank": 4, "type": "WEAPON_POLE", "EN": "Dialogues of the Desert Sages", "desc": "A caduceus symbolizing the glory of alchemy, made from special alloys to match its special status. It is exceedingly rigid and heavy, and would probably hurt pretty bad if used as a cudgel.", "KR": "위대한 사막 현자의 대답", "CHS": "沙中伟贤的对答", "JP": "砂中の賢者達の問答"}, "13419": {"icon": "UI_EquipIcon_Pole_Windvane", "rank": 4, "type": "WEAPON_POLE", "EN": "Missive Windspear", "desc": "A beacon that shows the direction of the wind. Not every idyll carried on the breeze remains a gentle thing...", "KR": "날카로운 바람의 서신", "CHS": "风信之锋", "JP": "風信の矛"}, "11302": {"icon": "UI_EquipIcon_Sword_Dawn", "rank": 3, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Harbinger of Dawn", "desc": "A sword that once shone like the sun. The wielder of this sword will be blessed with a \"feel-good\" buff. The reflective material on the blade has long worn off.", "KR": "여명신검", "CHS": "黎明神剑", "JP": "黎明の神剣"}, "12411": {"icon": "UI_EquipIcon_Claymore_Dragonfell", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "Snow-Tombed Starsilver", "desc": "An ancient greatsword that was stored between frescoes. Forged from Starsilver, it has the power to cleave through ice and snow.", "KR": "설장의 성은", "CHS": "雪葬的星银", "JP": "雪葬の星銀"}, "11502": {"icon": "UI_EquipIcon_Sword_Dvalin", "rank": 5, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Skyward Blade", "desc": "The sword of a knight that symbolizes the restored honor of Dvalin. The blessings of the Anemo Archon rest on the fuller of the blade, imbuing the sword with the powers of the sky and the wind.", "KR": "천공의 검", "CHS": "天空之刃", "JP": "天空の刃"}, "11418": {"icon": "UI_EquipIcon_Sword_Pleroma", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Xiphos' Moonlight", "desc": "This ancient double-edged sword glimmers with moonlight. It is said that a now-silent Jinni dwells within it.", "KR": "크시포스의 달빛", "CHS": "西福斯的月光", "JP": "サイフォスの月明かり"}, "13401": {"icon": "UI_EquipIcon_Pole_Stardust", "rank": 4, "type": "WEAPON_POLE", "EN": "Dragon's Bane", "desc": "A polearm decorated with an entwining golden dragon. Light and sharp, this weapon may very well kill dragons with ease.", "KR": "용학살창", "CHS": "匣里灭辰", "JP": "匣中滅龍"}, "13415": {"icon": "UI_EquipIcon_Pole_Mori", "rank": 4, "type": "WEAPON_POLE", "EN": "\"The Catch\"", "desc": "In the distant past, this was the beloved spear of a famed Inazuman bandit.", "KR": "「어획」", "CHS": "「渔获」", "JP": "「漁獲」"}, "12431": {"icon": "UI_EquipIcon_Claymore_Isikhulu", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "Earth Shaker", "desc": "A heavy blade that people claim was beloved by the hero known as the Firethief. They say that even the Lord of Cinder Keep's flames could not burn it away.", "KR": "대지를 울리는 자", "CHS": "撼地者", "JP": "アースシェイカー"}, "11515": {"icon": "UI_EquipIcon_Sword_Estoc", "rank": 5, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Absolution", "desc": "A rapier once wielded by a deceiver who had forsaken everything. In the past, it was primarily used as a tool when he had to disguise his identity.", "KR": "사면", "CHS": "赦罪", "JP": "赦罪"}, "14401": {"icon": "UI_EquipIcon_Catalyst_Zephyrus", "rank": 4, "type": "WEAPON_CATALYST", "EN": "Favonius Codex", "desc": "A secret tome that belonged to the scholars of the Knights of Favonius. It describes the logic and power of elements and matter.", "KR": "페보니우스 비전", "CHS": "西风秘典", "JP": "西風秘典"}, "13407": {"icon": "UI_EquipIcon_Pole_Zephyrus", "rank": 4, "type": "WEAPON_POLE", "EN": "Favonius Lance", "desc": "A polearm made in the style of the Knights of Favonius. Its shaft is straight, and its tip flows lightly like the wind.", "KR": "페보니우스 장창", "CHS": "西风长枪", "JP": "西風長槍"}, "13402": {"icon": "UI_EquipIcon_Pole_Proto", "rank": 4, "type": "WEAPON_POLE", "EN": "Prototype Starglitter", "desc": "A hooked spear discovered hidden away in the Blackcliff Forge. The glimmers along the sharp edge are like stars in the night.", "KR": "별의 낫 프로토타입", "CHS": "试作星镰", "JP": "星鎌·試作"}, "11426": {"icon": "UI_EquipIcon_Sword_Machination", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Fleuve Cendre Ferryman", "desc": "A handy length of abandoned copper pipe that was once used as a weapon. It was famous — or infamous, depending — in some circles.", "KR": "잿빛의 강 뱃사공", "CHS": "灰河渡手", "JP": "サーンドルの渡し守"}, "12426": {"icon": "UI_EquipIcon_Claymore_Champion", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "\"Ultimate Overlord's Mega Magic Sword\"", "desc": "A magical sword that can only be wielded by the ultimate overlord who rules the seas. As it has been made with special water-resistant materials, it will not get ruined by water damage even after being immersed. Why, one might even call it invincible!", "KR": "「슈퍼 울트라 패왕 마검」", "CHS": "「究极霸王超级魔剑」", "JP": "「スーパーアルティメット覇王魔剣」"}, "15406": {"icon": "UI_EquipIcon_Bow_Proto", "rank": 4, "type": "WEAPON_BOW", "EN": "Prototype Crescent", "desc": "A prototype longbow discovered in the Blackcliff Forge. The arrow fired from this bow glimmers like a ray of moonlight.", "KR": "담월 프로토타입", "CHS": "试作澹月", "JP": "澹月·試作"}, "12401": {"icon": "UI_EquipIcon_Claymore_Zephyrus", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "Favonius Greatsword", "desc": "A heavy ceremonial sword of the Knights of Favonius. It channels elemental power easily and is highly destructive.", "KR": "페보니우스 대검", "CHS": "西风大剑", "JP": "西風大剣"}, "13424": {"icon": "UI_EquipIcon_Pole_Shanty", "rank": 4, "type": "WEAPON_POLE", "EN": "Ballad of the Fjords", "desc": "A polearm used by those seeking to catch fish in the tundra. It lets none escape.", "KR": "협만의 노래", "CHS": "峡湾长歌", "JP": "フィヨルドの歌"}, "11501": {"icon": "UI_EquipIcon_Sword_Falcon", "rank": 5, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Aquila Favonia", "desc": "The soul of the Knights of Favonius. Millennia later, it still calls on the winds of swift justice to vanquish all evil — just like the last heroine who wielded it.", "KR": "매의 검", "CHS": "风鹰剑", "JP": "風鷹剣"}, "13501": {"icon": "UI_EquipIcon_Pole_Homa", "rank": 5, "type": "WEAPON_POLE", "EN": "Staff of Homa", "desc": "A \"firewood staff\" that was once used in ancient and long-lost rituals.", "KR": "호마의 지팡이", "CHS": "护摩之杖", "JP": "護摩の杖"}, "12503": {"icon": "UI_EquipIcon_Claymore_Widsith", "rank": 5, "type": "WEAPON_CLAYMORE", "EN": "Song of Broken Pines", "desc": "A greatsword as light as the sigh of grass in the breeze, yet as merciless to the corrupt as a typhoon.", "KR": "송뢰가 울릴 무렵", "CHS": "松籁响起之时", "JP": "松韻の響く頃"}, "12403": {"icon": "UI_EquipIcon_Claymore_Fossil", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "Sacrificial Greatsword", "desc": "A ceremonial greatsword that has become petrified over time. The trinkets on it are still visible. It grants the wielder the power to withstand the winds of time.", "KR": "제례 대검", "CHS": "祭礼大剑", "JP": "祭礼の大剣"}, "11415": {"icon": "UI_EquipIcon_Sword_Opus", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Cinnabar Spindle", "desc": "A sword made from materials that do not belong in this world. The power within might even be able to withstand the corruption of a venom that could corrode a mighty dragon.", "KR": "진사의 방추", "CHS": "辰砂之纺锤", "JP": "シナバースピンドル"}, "13417": {"icon": "UI_EquipIcon_Pole_Arakalari", "rank": 4, "type": "WEAPON_POLE", "EN": "Moonpiercer", "desc": "A weapon you obtained from an Aranara tale. It is shaped like a giant arrow and can be used as a spear.", "KR": "달을 꿰뚫는 화살", "CHS": "贯月矢", "JP": "ムーンピアサー"}, "12404": {"icon": "UI_EquipIcon_Claymore_Theocrat", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "Royal Greatsword", "desc": "An old greatsword that belonged to the erstwhile rulers of Mondstadt. It is made from the finest-quality materials and has stood the test of time. A weapon for use by the nobility only.", "KR": "왕실의 대검", "CHS": "宗室大剑", "JP": "旧貴族大剣"}, "11505": {"icon": "UI_EquipIcon_Sword_Morax", "rank": 5, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Primordial Jade Cutter", "desc": "A ceremonial sword masterfully carved from pure jade. There almost seems to be an audible sigh in the wind as it is swung.", "KR": "반암결록", "CHS": "磐岩结绿", "JP": "磐岩結緑"}, "11416": {"icon": "UI_EquipIcon_Sword_Youtou", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Kagotsurube Isshin", "desc": "This famed blade was born in a nation to the far north. But in the name of \"Isshin,\" it was stained with many a dark deed on its home-bound journey.", "KR": "카고츠루베 잇신", "CHS": "笼钓瓶一心", "JP": "籠釣瓶一心"}, "11428": {"icon": "UI_EquipIcon_Sword_Purewill", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Sword of Narzissenkreuz", "desc": "A sword whose power faded when the story ended. It will now embark upon a new journey with the power that remains within it, which commemorates a certain great dream.", "KR": "수선화 십자검", "CHS": "水仙十字之剑", "JP": "水仙十字の剣"}, "12201": {"icon": "UI_EquipIcon_Claymore_Oyaji", "rank": 2, "type": "WEAPON_CLAYMORE", "EN": "Old Merc's Pal", "desc": "A battle-tested greatsword that has seen better days and worse.", "KR": "용병 중검", "CHS": "佣兵重剑", "JP": "傭兵の重剣"}, "11414": {"icon": "UI_EquipIcon_Sword_Bakufu", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Amenoma Kageuchi", "desc": "A blade custom made for a famed samurai who could strike down a tengu warrior, known for their incredible agility, in midair.", "KR": "아메노마 카게우치가타나", "CHS": "天目影打刀", "JP": "天目影打"}, "13414": {"icon": "UI_EquipIcon_Pole_Bakufu", "rank": 4, "type": "WEAPON_POLE", "EN": "Kitain Cross Spear", "desc": "A special lance that was once used by a famed warrior who guarded the Tatarigami on Yashiori Island.", "KR": "키타인 십자창", "CHS": "喜多院十文字", "JP": "喜多院十文字槍"}, "14512": {"icon": "UI_EquipIcon_Catalyst_Alaya", "rank": 5, "type": "WEAPON_CATALYST", "EN": "Tulaytullah's Remembrance", "desc": "A bell crafted of deep sapphire and sterling silver. Its echoes are as crisp as they are distant.", "KR": "툴레이툴라의 기억", "CHS": "图莱杜拉的回忆", "JP": "トゥライトゥーラの記憶"}, "15409": {"icon": "UI_EquipIcon_Bow_Viridescent", "rank": 4, "type": "WEAPON_BOW", "EN": "The Viridescent Hunt", "desc": "A pure green hunting bow. This once belonged to a certain hunter whose home was the forest.", "KR": "청록의 사냥활", "CHS": "苍翠猎弓", "JP": "蒼翠の狩猟弓"}, "11511": {"icon": "UI_EquipIcon_Sword_Deshret", "rank": 5, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Key of Khaj-Nisut", "desc": "One of a paired set of scepters fashioned from obsidian. They say that this can be used as a key to open the gate to a paradise that lies at the end of the ocean of sand.", "KR": "성현의 열쇠", "CHS": "圣显之钥", "JP": "聖顕の鍵"}, "11422": {"icon": "UI_EquipIcon_Sword_Kasabouzu", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Toukabou Shigure", "desc": "A rather special oil-paper umbrella. While long wanderings may make one used to the wind and the rain, there might be some fun in admiring a rainy scene beneath this parasol.", "KR": "꽃잎비", "CHS": "东花坊时雨", "JP": "東花坊時雨"}, "13405": {"icon": "UI_EquipIcon_Pole_Gladiator", "rank": 4, "type": "WEAPON_POLE", "EN": "Deathmatch", "desc": "A sharp crimson polearm that was once a gladiator's priceless treasure. Its awl has been stained by the blood of countless beasts and men.", "KR": "결투의 창", "CHS": "决斗之枪", "JP": "死闘の槍"}, "14504": {"icon": "UI_EquipIcon_Catalyst_Kunwu", "rank": 5, "type": "WEAPON_CATALYST", "EN": "Memory of Dust", "desc": "A stone dumbbell containing distant memories. Its endless transformations reveal the power within.", "KR": "속세의 자물쇠", "CHS": "尘世之锁", "JP": "浮世の錠"}, "11413": {"icon": "UI_EquipIcon_Sword_Magnum", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Festering Desire", "desc": "A creepy straight sword that almost seems to yearn for life. It drips with a shriveling venom that could even corrupt a mighty dragon.", "KR": "부식의 검", "CHS": "腐殖之剑", "JP": "腐植の剣"}, "13431": {"icon": "UI_EquipIcon_Pole_Isikhulu", "rank": 4, "type": "WEAPON_POLE", "EN": "Footprint of the Rainbow", "desc": "A keen polearm forged from jade. It gives off rainbow-hued light when exposed to sunlight.", "KR": "무지개의 행적", "CHS": "虹的行迹", "JP": "虹の行方"}, "14101": {"icon": "UI_EquipIcon_Catalyst_Apprentice", "rank": 1, "type": "WEAPON_CATALYST", "EN": "Apprentice's Notes", "desc": "Notes left behind by a top student. Many useful spells are listed, and the handwriting is beautiful.", "KR": "학도의 노트", "CHS": "学徒笔记", "JP": "生徒ノート"}, "14502": {"icon": "UI_EquipIcon_Catalyst_Fourwinds", "rank": 5, "type": "WEAPON_CATALYST", "EN": "Lost Prayer to the Sacred Winds", "desc": "An educational tome written by anonymous early inhabitants who worshiped the wind. It has been blessed by the wind for its faithfulness and influence over the millennia.", "KR": "사풍 원서", "CHS": "四风原典", "JP": "四風原典"}, "15418": {"icon": "UI_EquipIcon_Bow_Fin", "rank": 4, "type": "WEAPON_BOW", "EN": "End of the Line", "desc": "This seems to be a now-extinct fish. Its body is sufficiently elastic that a string may be attached to it to let it serve as a bow.", "KR": "메마른 연못", "CHS": "竭泽", "JP": "竭沢"}, "12303": {"icon": "UI_EquipIcon_Claymore_Tin", "rank": 3, "type": "WEAPON_CLAYMORE", "EN": "White Iron Greatsword", "desc": "A claymore made from white iron. Lightweight without compromising on power. Effective even when wielded by one of average strength, it is extremely deadly in the hands of a physically stronger wielder.", "KR": "백철 대검", "CHS": "白铁大剑", "JP": "白鉄の大剣"}, "11301": {"icon": "UI_EquipIcon_Sword_Steel", "rank": 3, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Cool Steel", "desc": "A reliable steel-forged weapon that serves as a testament to the great adventures of its old master.", "KR": "차가운 칼날", "CHS": "冷刃", "JP": "冷刃"}, "14515": {"icon": "UI_EquipIcon_Catalyst_MountainGale", "rank": 5, "type": "WEAPON_CATALYST", "EN": "Crane's Echoing Call", "desc": "A fan carved from pure jade, around which swirls an ancient aura of adeptal energy.", "KR": "학의 여음", "CHS": "鹤鸣余音", "JP": "鶴鳴の余韻"}, "15513": {"icon": "UI_EquipIcon_Bow_Arcdange", "rank": 5, "type": "WEAPON_BOW", "EN": "Silvershower Heartstrings", "desc": "Legendary bow of the fairies. Whether on the stage or the battlefield, it can easily touch the hearts of the listener.", "KR": "심금을 울리는 하얀 비", "CHS": "白雨心弦", "JP": "白雨心弦"}, "15408": {"icon": "UI_EquipIcon_Bow_Blackrock", "rank": 4, "type": "WEAPON_BOW", "EN": "Blackcliff Warbow", "desc": "A bow made of blackcliff that features extremely sturdy bow limbs. It requires an archer with a strong bow arm to use.", "KR": "흑암 배틀 보우", "CHS": "黑岩战弓", "JP": "黒岩の戦弓"}, "11514": {"icon": "UI_EquipIcon_Sword_Needle", "rank": 5, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Uraku Misugiri", "desc": "This famous blade was once created by the hand of Urakusai, the renowned literatus. Legend has it that it has never cut any living creature in all these hundreds of years.", "KR": "우라쿠의 미스기리", "CHS": "有乐御簾切", "JP": "有楽御簾切"}, "14424": {"icon": "UI_EquipIcon_Catalyst_Yue", "rank": 4, "type": "WEAPON_CATALYST", "EN": "Sacrificial Jade", "desc": "An ancient jade pendant that gleams like clear water. It seems to have been used in ancient ceremonies.", "KR": "제사의 옥", "CHS": "遗祀玉珑", "JP": "古祠の瓏"}, "14413": {"icon": "UI_EquipIcon_Catalyst_Ludiharpastum", "rank": 4, "type": "WEAPON_CATALYST", "EN": "Dodoco Tales", "desc": "A children's book filled with childish short stories at which one cannot help but laugh.\\nEven those readers who have long reached adulthood cannot help but be absorbed by the innocent, naive little adventures portrayed within.", "KR": "도도코 이야기집", "CHS": "嘟嘟可故事集", "JP": "ドドコの物語"}, "11405": {"icon": "UI_EquipIcon_Sword_Rockkiller", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Lion's Roar", "desc": "A sharp blade with extravagant carvings that somehow does not compromise on durability and sharpness. It roars like a lion as it cuts through the air.", "KR": "용의 포효", "CHS": "匣里龙吟", "JP": "匣中龍吟"}, "15503": {"icon": "UI_EquipIcon_Bow_Widsith", "rank": 5, "type": "WEAPON_BOW", "EN": "Elegy for the End", "desc": "A bow as lovely as any bard's lyre, its arrows pierce the heart like a lamenting sigh.", "KR": "종말 탄식의 노래", "CHS": "终末嗟叹之诗", "JP": "終焉を嘆く詩"}, "12302": {"icon": "UI_EquipIcon_Claymore_Siegfry", "rank": 3, "type": "WEAPON_CLAYMORE", "EN": "Bloodtainted Greatsword", "desc": "A steel sword that is said to have been coated with dragon blood, rendering it invulnerable to damage. This effect is not extended to its wielder, however.", "KR": "드래곤 블러드 소드", "CHS": "沐浴龙血的剑", "JP": "龍血を浴びた剣"}, "14506": {"icon": "UI_EquipIcon_Catalyst_Kaleido", "rank": 5, "type": "WEAPON_CATALYST", "EN": "Everlasting Moonglow", "desc": "A string of lovely jasper from the deep sea. It shines with a pure radiance like that of the moon, and just as ever-distant.", "KR": "불멸의 달빛", "CHS": "不灭月华", "JP": "不滅の月華"}, "15401": {"icon": "UI_EquipIcon_Bow_Zephyrus", "rank": 4, "type": "WEAPON_BOW", "EN": "Favonius Warbow", "desc": "A standard-issue recurve bow of the Knights of Favonius. Only the best archers can unleash its full potential.", "KR": "페보니우스 활", "CHS": "西风猎弓", "JP": "西風猟弓"}, "11417": {"icon": "UI_EquipIcon_Sword_Arakalari", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Sapwood Blade", "desc": "A weapon you obtained from an Aranara tale. It has taken on the shape of a blade that can cut down the foes of the forest.", "KR": "원목 검", "CHS": "原木刀", "JP": "原木刀"}, "12305": {"icon": "UI_EquipIcon_Claymore_Reasoning", "rank": 3, "type": "WEAPON_CLAYMORE", "EN": "Debate Club", "desc": "A handy club made of fine steel. The most persuasive line of reasoning in any debater's arsenal.", "KR": "훌륭한 대화수단", "CHS": "以理服人", "JP": "理屈責め"}, "11304": {"icon": "UI_EquipIcon_Sword_Darker", "rank": 3, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Dark Iron Sword", "desc": "A perfectly ordinary iron sword, just slightly darker than most.", "KR": "암철검", "CHS": "暗铁剑", "JP": "暗鉄剣"}, "11409": {"icon": "UI_EquipIcon_Sword_Bloodstained", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "The Black Sword", "desc": "A pitch-black longsword that thirsts for violence and conflict. It is said that this weapon can cause its user to become drunk on the red wine of slaughter.", "KR": "칠흑검", "CHS": "黑剑", "JP": "黒剣"}, "11303": {"icon": "UI_EquipIcon_Sword_Traveler", "rank": 3, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Traveler's Handy Sword", "desc": "A handy steel sword which contains scissors, a magnifying glass, tinder, and other useful items in its sheath.", "KR": "여행자의 검", "CHS": "旅行剑", "JP": "旅道の剣"}, "14412": {"icon": "UI_EquipIcon_Catalyst_Everfrost", "rank": 4, "type": "WEAPON_CATALYST", "EN": "Frostbearer", "desc": "A fruit that possesses a strange, frosty will. A faint sense of agony emanates from it.", "KR": "인동의 열매", "CHS": "忍冬之果", "JP": "冬忍びの実"}, "15101": {"icon": "UI_EquipIcon_Bow_Hunters", "rank": 1, "type": "WEAPON_BOW", "EN": "Hunter's Bow", "desc": "A hunter's music consists of but two sounds: the twang of the bowstring and the whoosh of soaring arrows.", "KR": "사냥활", "CHS": "猎弓", "JP": "狩猟弓"}, "14303": {"icon": "UI_EquipIcon_Catalyst_Lightnov", "rank": 3, "type": "WEAPON_CATALYST", "EN": "Otherworldly Story", "desc": "A cheap fantasy novel with no value whatsoever. Any claim that it possesses the power of catalysis is also pure fantasy.", "KR": "이세계 여행기", "CHS": "异世界行记", "JP": "異世界旅行記"}, "15511": {"icon": "UI_EquipIcon_Bow_Ayus", "rank": 5, "type": "WEAPON_BOW", "EN": "Hunter's Path", "desc": "This gilded bow was made using precious white branches. It has felled countless wicked beasts attempting to infiltrate the woods.", "KR": "사냥꾼의 길", "CHS": "猎人之径", "JP": "狩人の道"}, "11427": {"icon": "UI_EquipIcon_Sword_Mechanic", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "The Dockhand's Assistant", "desc": "A convenient cutting tool that you can rarely find nowadays. You can replace the blades as they are dulled by usage.", "KR": "뱃도랑 장검", "CHS": "船坞长剑", "JP": "船渠剣"}, "12406": {"icon": "UI_EquipIcon_Claymore_Proto", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "Prototype Archaic", "desc": "An ancient greatsword discovered in the Blackcliff Forge. It swings with such an immense force that one feels it could cut straight through reality itself.", "KR": "고화 프로토타입", "CHS": "试作古华", "JP": "古華·試作"}, "13504": {"icon": "UI_EquipIcon_Pole_Kunwu", "rank": 5, "type": "WEAPON_POLE", "EN": "Vortex Vanquisher", "desc": "This sharp polearm can seemingly pierce through anything. When swung, one can almost see the rift it tears in the air.", "KR": "관홍의 창", "CHS": "贯虹之槊", "JP": "破天の槍"}, "11406": {"icon": "UI_EquipIcon_Sword_Proto", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Prototype Rancour", "desc": "An ancient longsword discovered in the Blackcliff Forge that cuts through rocks like a hot knife through butter.", "KR": "참암 프로토타입", "CHS": "试作斩岩", "JP": "斬岩·試作"}, "12306": {"icon": "UI_EquipIcon_Claymore_Mitsurugi", "rank": 3, "type": "WEAPON_CLAYMORE", "EN": "Skyrider Greatsword", "desc": "A reliable steel sword. The legendary Skyrider once tried to ride it as a flying sword... for the second time.", "KR": "비천대어검", "CHS": "飞天大御剑", "JP": "飛天大御剣"}, "12424": {"icon": "UI_EquipIcon_Claymore_BeastTamer", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "Talking Stick", "desc": "Most people will find this obsidian-inlaid club quite convincing indeed.", "KR": "대화봉", "CHS": "聊聊棒", "JP": "話死合い棒"}, "14302": {"icon": "UI_EquipIcon_Catalyst_Pulpfic", "rank": 3, "type": "WEAPON_CATALYST", "EN": "Thrilling Tales of Dragon Slayers", "desc": "A fictional story of a band of five heroes who go off on a dragon hunt. It is poorly written and structurally incoherent. Its value lies in the many lessons that can be learned from failure.", "KR": "드래곤 슬레이어 영웅담", "CHS": "讨龙英杰谭", "JP": "龍殺しの英傑譚"}, "13509": {"icon": "UI_EquipIcon_Pole_Narukami", "rank": 5, "type": "WEAPON_POLE", "EN": "Engulfing Lightning", "desc": "A naginata used to \"cut grass.\" Any army that stands before this weapon will probably be likewise cut down...", "KR": "예초의 번개", "CHS": "薙草之稻光", "JP": "草薙の稲光"}, "14431": {"icon": "UI_EquipIcon_Catalyst_Isikhulu", "rank": 4, "type": "WEAPON_CATALYST", "EN": "Ring of Yaxche", "desc": "This jade vessel was created by a hero of yesteryear. Legend has it that it once shot the giant dragon that dwelt in the volcano down from the skies.", "KR": "약스체의 고리", "CHS": "木棉之环", "JP": "ヤシュチェの環"}, "15305": {"icon": "UI_EquipIcon_Bow_Msg", "rank": 3, "type": "WEAPON_BOW", "EN": "Messenger", "desc": "A basic wooden bow. It is said to have once been used as a tool for long-distance communication.", "KR": "전령", "CHS": "信使", "JP": "文使い"}, "14407": {"icon": "UI_EquipIcon_Catalyst_Exotic", "rank": 4, "type": "WEAPON_CATALYST", "EN": "Mappa Mare", "desc": "A nautical chart featuring nearby currents and climates that somehow found its way into Liyue via foreign traders.", "KR": "만국 항해용해도", "CHS": "万国诸海图谱", "JP": "万国諸海の図譜"}, "15302": {"icon": "UI_EquipIcon_Bow_Arjuna", "rank": 3, "type": "WEAPON_BOW", "EN": "Sharpshooter's Oath", "desc": "This superior bow once belonged to a master archer. However, it gives off a strong scent, thus making it unsuitable for hunting.", "KR": "신궁의 서약", "CHS": "神射手之誓", "JP": "シャープシューターの誓い"}, "14516": {"icon": "UI_EquipIcon_Catalyst_MechaPufferfish", "rank": 5, "type": "WEAPON_CATALYST", "EN": "Surf's Up", "desc": "A commemorative item originally reserved for the champion of the \"First All-Tribe Surfing Championship.\" Since said tournament is currently in its preparatory phases, the prize is in temporary storage at the Leisurely Puffer, with the shop owner as its custodian.", "KR": "서핑 타임", "CHS": "冲浪时光", "JP": "サーフィンタイム"}, "11412": {"icon": "UI_EquipIcon_Sword_Psalmus", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Sword of Descension", "desc": "A sword of unique craftsmanship. It does not appear to belong to this world.", "KR": "강림의 검", "CHS": "降临之剑", "JP": "降臨の剣"}, "15416": {"icon": "UI_EquipIcon_Bow_Maria", "rank": 4, "type": "WEAPON_BOW", "EN": "Mouun's Moon", "desc": "A lovely warbow made from seashells and coral. A mournful brilliance flows along its moonlight-colored arms.", "KR": "모운의 달", "CHS": "曚云之月", "JP": "曚雲の月"}, "12504": {"icon": "UI_EquipIcon_Claymore_Kunwu", "rank": 5, "type": "WEAPON_CLAYMORE", "EN": "The Unforged", "desc": "Capable of driving away evil spirits and wicked people alike, this edgeless claymore seems to possess divine might.", "KR": "무공의 검", "CHS": "无工之剑", "JP": "無工の剣"}, "12512": {"icon": "UI_EquipIcon_Claymore_GoldenVerdict", "rank": 5, "type": "WEAPON_CLAYMORE", "EN": "Verdict", "desc": "A weapon once used by a young maiden who forsook her family name, stained with the blood of enemies and loved ones both.", "KR": "판정", "CHS": "裁断", "JP": "裁断"}, "12412": {"icon": "UI_EquipIcon_Claymore_MillenniaTuna", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "Luxurious Sea-Lord", "desc": "The great king of the ocean. Having been air-dried, it makes for a fine weapon as well as emergency sustenance.", "KR": "진주를 문 해황", "CHS": "衔珠海皇", "JP": "銜玉の海皇"}, "15304": {"icon": "UI_EquipIcon_Bow_Sling", "rank": 3, "type": "WEAPON_BOW", "EN": "Slingshot", "desc": "A bow, despite the name. After countless experiments and improvements to the design, the creator of the ultimate slingshot found himself to have made what was actually a bow.", "KR": "탄궁", "CHS": "弹弓", "JP": "弾弓"}, "15404": {"icon": "UI_EquipIcon_Bow_Theocrat", "rank": 4, "type": "WEAPON_BOW", "EN": "Royal Bow", "desc": "An old longbow that belonged to the erstwhile aristocratic rulers of Mondstadt. Countless generations later, the bowstring is still tight and can still fire arrows with great force.", "KR": "왕실의 장궁", "CHS": "宗室长弓", "JP": "旧貴族長弓"}, "13416": {"icon": "UI_EquipIcon_Pole_Maria", "rank": 4, "type": "WEAPON_POLE", "EN": "Wavebreaker's Fin", "desc": "A naginata forged from luminescent material deep in the ocean depths. It was once the possession of the tengu race.", "KR": "파도 베는 지느러미", "CHS": "断浪长鳍", "JP": "斬波のひれ長"}, "15405": {"icon": "UI_EquipIcon_Bow_Recluse", "rank": 4, "type": "WEAPON_BOW", "EN": "Rust", "desc": "A completely rusted iron greatbow. The average person would lack the strength to even lift it, let alone fire it.", "KR": "녹슨 활", "CHS": "弓藏", "JP": "弓蔵"}, "12513": {"icon": "UI_EquipIcon_Claymore_EmeraldSword", "rank": 5, "type": "WEAPON_CLAYMORE", "EN": "Fang of the Mountain King", "desc": "A giant sword forged from pure turquoise. Due to its greater weight than most ordinary weapons, it was named for Kongomato the Mountain King.", "KR": "산왕의 엄니", "CHS": "山王长牙", "JP": "山の王の長牙"}, "15512": {"icon": "UI_EquipIcon_Bow_Pledge", "rank": 5, "type": "WEAPON_BOW", "EN": "The First Great Magic", "desc": "A stage prop once used by a past \"Great Magician.\" Its final secret was that it was also a weapon beyond the pale.", "KR": "최초의 대마술", "CHS": "最初的大魔术", "JP": "始まりの大魔術"}, "13425": {"icon": "UI_EquipIcon_Pole_Vorpal", "rank": 4, "type": "WEAPON_POLE", "EN": "Rightful Reward", "desc": "A sharp spear. Only its tip remains freshly bloodstained.", "KR": "공의의 보상", "CHS": "公义的酬报", "JP": "正義の報酬"}, "15426": {"icon": "UI_EquipIcon_Bow_Ultimatum", "rank": 4, "type": "WEAPON_BOW", "EN": "Cloudforged", "desc": "A prototype for a standard-issue weapon the Yuheng commissioned from Blackcliff Forge after having analyzed the ancient mechanisms that protected the adeptal abode upon Tianheng.", "KR": "축운", "CHS": "筑云", "JP": "築雲"}, "13301": {"icon": "UI_EquipIcon_Pole_Ruby", "rank": 3, "type": "WEAPON_POLE", "EN": "White Tassel", "desc": "A standard-issue weapon of the Millelith soldiers. It has a sturdy shaft and sharp spearhead. It's a reliable weapon.", "KR": "백술창", "CHS": "白缨枪", "JP": "白纓槍"}, "15502": {"icon": "UI_EquipIcon_Bow_Amos", "rank": 5, "type": "WEAPON_BOW", "EN": "Amos' Bow", "desc": "An extremely ancient bow that has retained its power despite its original master being long gone. It draws power from everyone and everything in the world, and the further away you are from that which your heart desires, the more powerful it is.", "KR": "아모스의 활", "CHS": "阿莫斯之弓", "JP": "アモスの弓"}, "12408": {"icon": "UI_EquipIcon_Claymore_Blackrock", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "Blackcliff Slasher", "desc": "An extremely sturdy greatsword from the Blackcliff Forge. It has a dark crimson color from the blade to pommel.", "KR": "흑암참도", "CHS": "黑岩斩刀", "JP": "黒岩の斬刀"}, "15507": {"icon": "UI_EquipIcon_Bow_Worldbane", "rank": 5, "type": "WEAPON_BOW", "EN": "Polar Star", "desc": "A pristine bow that is as sharp as the glaciers of the far north.", "KR": "극지의 별", "CHS": "冬极白星", "JP": "冬極の白星"}, "12417": {"icon": "UI_EquipIcon_Claymore_Arakalari", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "Forest Regalia", "desc": "A weapon you obtained from an Aranara tale. It has taken on the shape of a greatsword that shall cut down the foes of the forest.", "KR": "숲의 리게일리어", "CHS": "森林王器", "JP": "森林のレガリア"}, "15509": {"icon": "UI_EquipIcon_Bow_Narukami", "rank": 5, "type": "WEAPON_BOW", "EN": "Thundering Pulse", "desc": "A longbow that was a gift from the Shogun. Eternal lightning crackles all around it.", "KR": "비뢰의 고동", "CHS": "飞雷之弦振", "JP": "飛雷の鳴弦"}, "14414": {"icon": "UI_EquipIcon_Catalyst_Bakufu", "rank": 4, "type": "WEAPON_CATALYST", "EN": "Hakushin Ring", "desc": "A catalyst that carries the memory of the Kitsune Saiguu of ancient times. However, this device is but an impoverished vessel for the full breadth of her thought.", "KR": "하쿠신의 고리", "CHS": "白辰之环", "JP": "白辰の輪"}, "14505": {"icon": "UI_EquipIcon_Catalyst_Morax", "rank": 5, "type": "WEAPON_CATALYST", "EN": "Jadefall's Splendor", "desc": "A ritual vessel carved from jade that reflects the luster of the skies and the clear waters.", "KR": "벽락의 옥", "CHS": "碧落之珑", "JP": "碧落の瓏"}, "11306": {"icon": "UI_EquipIcon_Sword_Mitsurugi", "rank": 3, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Skyrider Sword", "desc": "A reliable steel sword. The legendary Skyrider once tried to ride it as a flying sword...", "KR": "비천어검", "CHS": "飞天御剑", "JP": "飛天御剣"}, "15431": {"icon": "UI_EquipIcon_Bow_Isikhulu", "rank": 4, "type": "WEAPON_BOW", "EN": "Chain Breaker", "desc": "A jade-adorned longbow. The gentle winds always seem to swirl gently about its string. Legends claim that this weapon was made in a far more ancient era by a dragon artisan.", "KR": "사슬 파괴자", "CHS": "碎链", "JP": "チェーンブレイカー"}, "14403": {"icon": "UI_EquipIcon_Catalyst_Fossil", "rank": 4, "type": "WEAPON_CATALYST", "EN": "Sacrificial Fragments", "desc": "A weathered script, the text of which is no longer legible. A cursed item eroded by the winds of time.", "KR": "제례의 악장", "CHS": "祭礼残章", "JP": "祭礼の断片"}, "14408": {"icon": "UI_EquipIcon_Catalyst_Blackrock", "rank": 4, "type": "WEAPON_CATALYST", "EN": "Blackcliff Agate", "desc": "A mysterious catalyst made of a material known as \"blackcliff.\" It has an ominous crimson glow that seems to pulse in synchronization with the tremors from deep within the earth.", "KR": "흑암 홍옥", "CHS": "黑岩绯玉", "JP": "黒岩の緋玉"}, "12409": {"icon": "UI_EquipIcon_Claymore_Kione", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "Serpent Spine", "desc": "A rare weapon whose origin is the ancient ocean. One can hear the sound of the ageless waves as one swings it.", "KR": "이무기 검", "CHS": "螭骨剑", "JP": "螭龍の剣"}, "14514": {"icon": "UI_EquipIcon_Catalyst_Iudex", "rank": 5, "type": "WEAPON_CATALYST", "EN": "Tome of the Eternal Flow", "desc": "A manual that was once passed down from generation to generation within an underwater priory. Today, none know of its existence.", "KR": "영원히 샘솟는 법전", "CHS": "万世流涌大典", "JP": "久遠流転の大典"}, "12425": {"icon": "UI_EquipIcon_Claymore_Vorpal", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "Tidal Shadow", "desc": "An exquisitely-crafted, standard-model sword forged for the high-ranking officers and flagship captains of Fontaine's old navy.", "KR": "파도 그림자 대검", "CHS": "浪影阔剑", "JP": "タイダル·シャドー"}, "12427": {"icon": "UI_EquipIcon_Claymore_Mechanic", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "Portable Power Saw", "desc": "An old-school power saw that you can rarely find nowadays. It was once a cutting tool trusted by workers all around.", "KR": "휴대용 체인톱", "CHS": "便携动力锯", "JP": "携帯型チェーンソー"}, "11424": {"icon": "UI_EquipIcon_Sword_Boreas", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Wolf-Fang", "desc": "Legend has it that this longsword was once used by a wandering knight in the distant past.", "KR": "늑대 송곳니", "CHS": "狼牙", "JP": "狼牙"}, "12501": {"icon": "UI_EquipIcon_Claymore_Dvalin", "rank": 5, "type": "WEAPON_CLAYMORE", "EN": "Skyward Pride", "desc": "A claymore that symbolizes the pride of Dvalin soaring through the skies. When swung, it emits a deep hum as the full force of Dvalin's command of the sky and the wind is unleashed.", "KR": "천공의 긍지", "CHS": "天空之傲", "JP": "天空の傲"}, "15419": {"icon": "UI_EquipIcon_Bow_Ibis", "rank": 4, "type": "WEAPON_BOW", "EN": "Ibis Piercer", "desc": "A golden bow forged from the description in the story. If you use it as a normal weapon, you can also view it as a part of a fictional world that has made it off the pages.", "KR": "꿰뚫는 따오기 부리", "CHS": "鹮穿之喙", "JP": "トキの嘴"}, "11101": {"icon": "UI_EquipIcon_Sword_Blunt", "rank": 1, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Dull Blade", "desc": "Youthful dreams and the thrill of adventure. If this isn't enough, then make it up with valiance.", "KR": "무인검", "CHS": "无锋剑", "JP": "無鋒の剣"}, "14305": {"icon": "UI_EquipIcon_Catalyst_Phoney", "rank": 3, "type": "WEAPON_CATALYST", "EN": "Twin Nephrite", "desc": "A jade pendant formed by piecing together two jade stones.", "KR": "1급 보옥", "CHS": "甲级宝珏", "JP": "特級の宝玉"}, "15424": {"icon": "UI_EquipIcon_Bow_Gurabad", "rank": 4, "type": "WEAPON_BOW", "EN": "Scion of the Blazing Sun", "desc": "An ancient longbow that is a remnant of King Deshret's ancient era. An indecipherable ancient text and solemn patterns have been carved into it.", "KR": "뜨거운 태양의 후손", "CHS": "烈阳之嗣", "JP": "烈日の後嗣"}, "11401": {"icon": "UI_EquipIcon_Sword_Zephyrus", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Favonius Sword", "desc": "A standard-issue longsword of the Knights of Favonius. When you're armed with this agile and sharp weapon, channeling the power of the elements has never been so easy!", "KR": "페보니우스 검", "CHS": "西风剑", "JP": "西風剣"}, "15425": {"icon": "UI_EquipIcon_Bow_Vorpal", "rank": 4, "type": "WEAPON_BOW", "EN": "Song of Stillness", "desc": "A strange longbow that resembles a sea creature. Its string makes no sound at all.", "KR": "고요한 노래", "CHS": "静谧之曲", "JP": "静寂の唄"}, "14511": {"icon": "UI_EquipIcon_Catalyst_Ayus", "rank": 5, "type": "WEAPON_CATALYST", "EN": "A Thousand Floating Dreams", "desc": "This lamp illuminates the dreams that float up over a thousand nights, and in its emerald-green light flows a song of ancient days.", "KR": "떠오르는 천일 밤의 꿈", "CHS": "千夜浮梦", "JP": "千夜に浮かぶ夢"}, "11425": {"icon": "UI_EquipIcon_Sword_Vorpal", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Finale of the Deep", "desc": "This longsword is as silent as the mysterious ocean depths. It is even more ancient than its stylings might imply.", "KR": "해연의 피날레", "CHS": "海渊终曲", "JP": "海淵のフィナーレ"}, "11305": {"icon": "UI_EquipIcon_Sword_Sashimi", "rank": 3, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Fillet Blade", "desc": "A sharp filleting knife. The blade is long, thin, and incredibly sharp.", "KR": "흘호 생선회칼", "CHS": "吃虎鱼刀", "JP": "チ虎魚の刀"}, "12416": {"icon": "UI_EquipIcon_Claymore_Maria", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "Akuoumaru", "desc": "The beloved sword of the legendary \"Akuou.\" The blade is huge and majestic, but is surprisingly easy to wield.", "KR": "아쿠오마루", "CHS": "恶王丸", "JP": "惡王丸"}, "13303": {"icon": "UI_EquipIcon_Pole_Noire", "rank": 3, "type": "WEAPON_POLE", "EN": "Black Tassel", "desc": "An exceptionally powerful polearm that also offers a simple but elegant solution to the issue of the easily stained white tassel.", "KR": "흑술창", "CHS": "黑缨枪", "JP": "黒纓槍"}, "11503": {"icon": "UI_EquipIcon_Sword_Widsith", "rank": 5, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Freedom-Sworn", "desc": "A straight sword, azure as antediluvian song, and as keen as the oaths of freedom taken in the Land of Wind.", "KR": "오래된 자유의 서약", "CHS": "苍古自由之誓", "JP": "蒼古なる自由への誓い"}, "15301": {"icon": "UI_EquipIcon_Bow_Crowfeather", "rank": 3, "type": "WEAPON_BOW", "EN": "Raven Bow", "desc": "Ravens are known to be the ferrymen of the dead. This bow's limb is decorated with raven feathers, which forebode the imminent death of its target.", "KR": "까마귀깃 활", "CHS": "鸦羽弓", "JP": "鴉羽の弓"}, "14426": {"icon": "UI_EquipIcon_Catalyst_DandelionPoem", "rank": 4, "type": "WEAPON_CATALYST", "EN": "Ballad of the Boundless Blue", "desc": "An anthology of exquisite poetry. It contains quite a few poems beloved by Mondstadters, concerning the skies, dandelions, and other such topics.", "KR": "끝없는 쪽빛의 노래", "CHS": "无垠蔚蓝之歌", "JP": "果てなき紺碧の唄"}, "11510": {"icon": "UI_EquipIcon_Sword_Amenoma", "rank": 5, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Haran Geppaku Futsu", "desc": "A famed work by the Futsu line of smiths. The name \"Haran\" comes from the manner in which it resembles the violent, roiling waves.", "KR": "하란 월백의 후츠", "CHS": "波乱月白经津", "JP": "波乱月白経津"}, "14402": {"icon": "UI_EquipIcon_Catalyst_Troupe", "rank": 4, "type": "WEAPON_CATALYST", "EN": "The Widsith", "desc": "A heavy notebook filled with musical scores. Though suffering from moth damage and heavy wear-and-tear, there is still much power to be found among the hand-written words within.", "KR": "음유시인의 악장", "CHS": "流浪乐章", "JP": "流浪楽章"}, "13511": {"icon": "UI_EquipIcon_Pole_Deshret", "rank": 5, "type": "WEAPON_POLE", "EN": "Staff of the Scarlet Sands", "desc": "One of a paired set of scepters fashioned from obsidian. Legend has it that these staves grant the right to lead the people of the desert, but no retainer now lives who can verify the proper appearance of these regalia.", "KR": "적색 사막의 지팡이", "CHS": "赤沙之杖", "JP": "赤砂の杖"}, "13427": {"icon": "UI_EquipIcon_Pole_Mechanic", "rank": 4, "type": "WEAPON_POLE", "EN": "Prospector's Drill", "desc": "A long-handled drill that you can rarely find nowadays. It was often used in delving and in carving stones.", "KR": "탐사용 드릴", "CHS": "勘探钻机", "JP": "プロスペクタードリル"}, "11408": {"icon": "UI_EquipIcon_Sword_Blackrock", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Blackcliff Longsword", "desc": "A sword made of a material known as \"blackcliff.\" It has a dark crimson glow on its black blade.", "KR": "흑암 장검", "CHS": "黑岩长剑", "JP": "黒岩の長剣"}, "15427": {"icon": "UI_EquipIcon_Bow_Mechanic", "rank": 4, "type": "WEAPON_BOW", "EN": "Range Gauge", "desc": "A measuring instrument that you can rarely find nowadays. It is capable of firing arrows.", "KR": "거리 측정기", "CHS": "测距规", "JP": "レンジゲージ"}, "11201": {"icon": "UI_EquipIcon_Sword_Silver", "rank": 2, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Silver Sword", "desc": "A sword for exorcising demons. Everyone knows it's made of a silver alloy, not pure silver.", "KR": "실버 소드", "CHS": "银剑", "JP": "銀の剣"}, "13101": {"icon": "UI_EquipIcon_Pole_Gewalt", "rank": 1, "type": "WEAPON_POLE", "EN": "Beginner's Protector", "desc": "A polearm as straight as a flag pole. Well suited to most combat situations, it has an imposing presence when swung.", "KR": "초보자의 장창", "CHS": "新手长枪", "JP": "新米の長槍"}, "12101": {"icon": "UI_EquipIcon_Claymore_Aniki", "rank": 1, "type": "WEAPON_CLAYMORE", "EN": "Waster Greatsword", "desc": "A sturdy sheet of iron that may be powerful enough to break apart mountains if wielded with enough willpower.", "KR": "훈련용 대검", "CHS": "训练大剑", "JP": "訓練用大剣"}, "11410": {"icon": "UI_EquipIcon_Sword_Outlaw", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "The Alley Flash", "desc": "A straight sword as black as the night. It once belonged to a thief who roamed the benighted streets.", "KR": "뒷골목의 섬광", "CHS": "暗巷闪光", "JP": "ダークアレイの閃光"}, "14509": {"icon": "UI_EquipIcon_Catalyst_Narukami", "rank": 5, "type": "WEAPON_CATALYST", "EN": "Kagura's Verity", "desc": "The bells used when performing the Kagura Dance, blessed by the Guuji herself. The scent of the Sacred Sakura tree lingers on it.", "KR": "카구라의 진의", "CHS": "神乐之真意", "JP": "神楽の真意"}, "15413": {"icon": "UI_EquipIcon_Bow_Fleurfair", "rank": 4, "type": "WEAPON_BOW", "EN": "Windblume Ode", "desc": "A bow adorned with nameless flowers that bears the earnest hopes of an equally nameless person.", "KR": "바람 꽃의 노래", "CHS": "风花之颂", "JP": "風花の頌歌"}, "13302": {"icon": "UI_EquipIcon_Pole_Halberd", "rank": 3, "type": "WEAPON_POLE", "EN": "Halberd", "desc": "A polearm with an axe blade mounted on top that can deal quite a lot of damage. It's favored by the Millelith officers.", "KR": "미늘창", "CHS": "钺矛", "JP": "鉾槍"}, "11512": {"icon": "UI_EquipIcon_Sword_Ayus", "rank": 5, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Light of Foliar Incision", "desc": "This gilded blade was made using precious white branches. It was once used to destroy countless poisons that infested the forest.", "KR": "잎을 가르는 빛", "CHS": "裁叶萃光", "JP": "萃光の裁葉"}, "14417": {"icon": "UI_EquipIcon_Catalyst_Arakalari", "rank": 4, "type": "WEAPON_CATALYST", "EN": "Fruit of Fulfillment", "desc": "A fruit you obtained from an Aranara tale. It holds the potential to conquer any crisis.", "KR": "충만의 열매", "CHS": "盈满之实", "JP": "満悦の実"}, "14416": {"icon": "UI_EquipIcon_Catalyst_Pleroma", "rank": 4, "type": "WEAPON_CATALYST", "EN": "Wandering Evenstar", "desc": "This was originally a device used by researchers to observe and perform calculations on celestial phenomena. It serves as a conduit and catalyst.", "KR": "방랑하는 저녁별", "CHS": "流浪的晚星", "JP": "彷徨える星"}, "15417": {"icon": "UI_EquipIcon_Bow_Arakalari", "rank": 4, "type": "WEAPON_BOW", "EN": "King's Squire", "desc": "A weapon you obtained from an Aranara tale. It has taken on the shape of a bow that can shoot the enemies of the forest down.", "KR": "왕의 측근", "CHS": "王下近侍", "JP": "王の近侍"}, "13408": {"icon": "UI_EquipIcon_Pole_Theocrat", "rank": 4, "type": "WEAPON_POLE", "EN": "Royal Spear", "desc": "This polearm was once cherished by a member of the old nobility that governed Mondstadt long ago. Although it has never seen the light of day, it is still incomparably sharp.", "KR": "왕실의 장창", "CHS": "宗室猎枪", "JP": "旧貴族猟槍"}, "12402": {"icon": "UI_EquipIcon_Claymore_Troupe", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "The Bell", "desc": "A heavy greatsword. A clock is embedded within it, though its internal mechanisms have long been damaged.", "KR": "시간의 검", "CHS": "钟剑", "JP": "鐘の剣"}, "12415": {"icon": "UI_EquipIcon_Claymore_Pleroma", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "Makhaira Aquamarine", "desc": "An ancient greatsword that gleams like the waters themselves. A thousand years of sand erosion has not dulled its unnaturally sharp edge one bit.", "KR": "물빛 마카이라", "CHS": "玛海菈的水色", "JP": "マカイラの水色"}, "14415": {"icon": "UI_EquipIcon_Catalyst_Jyanome", "rank": 4, "type": "WEAPON_CATALYST", "EN": "Oathsworn Eye", "desc": "A national treasure of Byakuyakoku stored in the Dainichi Mikoshi. With the coming of the Serpent God, this item was used to notarize great oaths and wishes.", "KR": "맹세의 눈동자", "CHS": "证誓之明瞳", "JP": "誓いの明瞳"}, "14304": {"icon": "UI_EquipIcon_Catalyst_Jade", "rank": 3, "type": "WEAPON_CATALYST", "EN": "Emerald Orb", "desc": "A catalyst carved out of the hard jade from Jueyun Karst north of Liyue. Small, light, and durable, it is known more colloquially as the \"jade ball.\"", "KR": "비취 오브", "CHS": "翡玉法球", "JP": "翡玉法珠"}, "14410": {"icon": "UI_EquipIcon_Catalyst_Outlaw", "rank": 4, "type": "WEAPON_CATALYST", "EN": "Wine and Song", "desc": "A songbook from the bygone aristocratic era, whose composer has become forgotten. It chronicles the tale of a certain heroic outlaw.", "KR": "뒷골목의 술과 시", "CHS": "暗巷的酒与诗", "JP": "ダークアレイの酒と詩"}, "11402": {"icon": "UI_EquipIcon_Sword_Troupe", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "The Flute", "desc": "Beneath its rusty exterior is a lavishly decorated thin blade. It swings as swiftly as the wind.", "KR": "피리검", "CHS": "笛剑", "JP": "笛の剣"}, "12510": {"icon": "UI_EquipIcon_Claymore_Itadorimaru", "rank": 5, "type": "WEAPON_CLAYMORE", "EN": "Redhorn Stonethresher", "desc": "According to its previous owner, this weapon is the \"Mighty Redhorn Stoic Stonethreshing Gilded Goldcrushing Lion Lord\" that can send any monster packing with its tail between its legs.", "KR": "쇄석의 붉은 뿔", "CHS": "赤角石溃杵", "JP": "赤角石塵滅砕"}, "13502": {"icon": "UI_EquipIcon_Pole_Dvalin", "rank": 5, "type": "WEAPON_POLE", "EN": "Skyward Spine", "desc": "A polearm that symbolizes Dvalin's firm resolve. The upright shaft of this weapon points towards the heavens, clad in the might of sky and wind.", "KR": "천공의 마루", "CHS": "天空之脊", "JP": "天空の脊"}, "11403": {"icon": "UI_EquipIcon_Sword_Fossil", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Sacrificial Sword", "desc": "A ceremonial sword that has become petrified over time. The trinkets on it are still visible. It grants the wielder the power to withstand the winds of time.", "KR": "제례검", "CHS": "祭礼剑", "JP": "祭礼の剣"}, "12405": {"icon": "UI_EquipIcon_Claymore_Perdue", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "Rainslasher", "desc": "A fluorescent greatsword with no sharp edge that crushes enemies with brute force and raw power.", "KR": "빗물 베기", "CHS": "雨裁", "JP": "雨裁"}, "11513": {"icon": "UI_EquipIcon_Sword_Regalis", "rank": 5, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Splendor of Tranquil Waters", "desc": "A scepter around which swirls pure water. In days long past, it once symbolized the highest authority over the seas.", "KR": "고요히 샘솟는 빛", "CHS": "静水流涌之辉", "JP": "静水流転の輝き"}, "15201": {"icon": "UI_EquipIcon_Bow_Old", "rank": 2, "type": "WEAPON_BOW", "EN": "Seasoned Hunter's Bow", "desc": "A bow that has been well-polished by time and meticulously cared for by its owner. It feels almost like an extension of the archer's arm.", "KR": "노련의 사냥활", "CHS": "历练的猎弓", "JP": "歴戦の狩猟弓"}, "12502": {"icon": "UI_EquipIcon_Claymore_Wolfmound", "rank": 5, "type": "WEAPON_CLAYMORE", "EN": "Wolf's Gravestone", "desc": "A longsword used by the Wolf Knight. Originally just a heavy sheet of iron given to the knight by a blacksmith from the city, it became endowed with legendary power owing to his friendship with the wolves.", "KR": "늑대의 말로", "CHS": "狼的末路", "JP": "狼の末路"}, "14409": {"icon": "UI_EquipIcon_Catalyst_Truelens", "rank": 4, "type": "WEAPON_CATALYST", "EN": "Eye of Perception", "desc": "A dim black glaze pearl that is said to have the power to read the purity of one's heart.", "KR": "소심", "CHS": "昭心", "JP": "昭心"}, "13507": {"icon": "UI_EquipIcon_Pole_Santika", "rank": 5, "type": "WEAPON_POLE", "EN": "Calamity Queller", "desc": "A keenly honed weapon forged from some strange crystal. Its faint blue light seems to whisper of countless matters now past.", "KR": "식재", "CHS": "息灾", "JP": "息災"}, "14427": {"icon": "UI_EquipIcon_Catalyst_ConchSprayer", "rank": 4, "type": "WEAPON_CATALYST", "EN": "Ash-Graven Drinking Horn", "desc": "A ritual vessel passed down amongst the Meztli. They say that this was once a treasure much-valued, yet never used, by the \"giant\" hero Tupac.", "KR": "푸른 문양 뿔잔", "CHS": "苍纹角杯", "JP": "蒼紋の角杯"}, "15508": {"icon": "UI_EquipIcon_Bow_Kirin", "rank": 5, "type": "WEAPON_BOW", "EN": "Aqua Simulacra", "desc": "This longbow's color is unpredictable. Under the light, it takes on a lustrous, watery blue.", "KR": "약수", "CHS": "若水", "JP": "若水"}, "13505": {"icon": "UI_EquipIcon_Pole_Morax", "rank": 5, "type": "WEAPON_POLE", "EN": "Primordial Jade Winged-Spear", "desc": "A jade polearm made by the archons, capable of slaying ancient beasts.", "KR": "화박연", "CHS": "和璞鸢", "JP": "和璞鳶"}, "15501": {"icon": "UI_EquipIcon_Bow_Dvalin", "rank": 5, "type": "WEAPON_BOW", "EN": "Skyward Harp", "desc": "A greatbow that symbolizes Dvalin's affiliation with the Anemo Archon. The sound of the bow firing is music to the Anemo Archon's ears. It contains the power of the sky and wind within.", "KR": "천공의 날개", "CHS": "天空之翼", "JP": "天空の翼"}, "13512": {"icon": "UI_EquipIcon_Pole_BloodMoon", "rank": 5, "type": "WEAPON_POLE", "EN": "Crimson Moon's Semblance", "desc": "A keen-edged weapon, luster dazzling as the crimson moon. It is said that an ancient dynasty once regarded it as a ritual object that could bridge two worlds, but none still remember the beliefs and ceremonies of that bygone age.", "KR": "붉은 달의 형상", "CHS": "赤月之形", "JP": "赤月のシルエット"}, "15402": {"icon": "UI_EquipIcon_Bow_Troupe", "rank": 4, "type": "WEAPON_BOW", "EN": "The Stringless", "desc": "A bow that once served as an extraordinary instrument. It is no longer capable of getting people up and dancing.", "KR": "절현", "CHS": "绝弦", "JP": "絶弦"}, "14425": {"icon": "UI_EquipIcon_Catalyst_Vorpal", "rank": 4, "type": "WEAPON_CATALYST", "EN": "Flowing Purity", "desc": "A strangely-shaped anthology of scripts. All the scripts written by Coppelius are recorded within.", "KR": "순수한 달빛 물결", "CHS": "纯水流华", "JP": "純水流華"}, "15410": {"icon": "UI_EquipIcon_Bow_Outlaw", "rank": 4, "type": "WEAPON_BOW", "EN": "Alley Hunter", "desc": "An intricate, opulent longbow. It once belonged to a gentleman thief who was never caught.", "KR": "뒷골목 사냥꾼", "CHS": "暗巷猎手", "JP": "ダークアレイの狩人"}, "11431": {"icon": "UI_EquipIcon_Sword_Isikhulu", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Flute of Ezpitzal", "desc": "A peculiarly shaped jade longsword that has been passed down amongst the Masters of the Night-Wind as a \"priestly flute.\"", "KR": "에스피찰의 피리", "CHS": "息燧之笛", "JP": "エズピツァルの笛"}, "13406": {"icon": "UI_EquipIcon_Pole_Lapis", "rank": 4, "type": "WEAPON_POLE", "EN": "Lithic Spear", "desc": "A spear forged from the rocks of the Guyun Stone Forest. Its hardness knows no equal.", "KR": "천암장창", "CHS": "千岩长枪", "JP": "千岩長槍"}, "13513": {"icon": "UI_EquipIcon_Pole_Muguet", "rank": 5, "type": "WEAPON_POLE", "EN": "Lumidouce Elegy", "desc": "A magnificent polearm adorned with azure crystal. It is said to have been a certain legendary Champion Duelist's treasure — and yet, not once was it ever used.", "KR": "등방울꽃의 애가", "CHS": "柔灯挽歌", "JP": "ルミドゥースの挽歌"}, "14201": {"icon": "UI_EquipIcon_Catalyst_Pocket", "rank": 2, "type": "WEAPON_CATALYST", "EN": "Pocket Grimoire", "desc": "A carefully compiled notebook featuring the essentials needed to pass a magic exam.", "KR": "포켓 주술서", "CHS": "口袋魔导书", "JP": "ポケット魔導書"}, "12511": {"icon": "UI_EquipIcon_Claymore_Deshret", "rank": 5, "type": "WEAPON_CLAYMORE", "EN": "Beacon of the Reed Sea", "desc": "A large, flat-tipped sword designed in to fit as the weapon of an ancient king or some ceremonial instrument.", "KR": "갈대 바다의 등대", "CHS": "苇海信标", "JP": "葦海の標"}, "15411": {"icon": "UI_EquipIcon_Bow_Fallensun", "rank": 4, "type": "WEAPON_BOW", "EN": "Fading Twilight", "desc": "A precious bow made of platinum, inlaid with an orb that shimmers with the light of eventide.", "KR": "노을", "CHS": "落霞", "JP": "落霞"}, "11404": {"icon": "UI_EquipIcon_Sword_Theocrat", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Royal Longsword", "desc": "An old longsword that belonged to the erstwhile rulers of Mondstadt. Exquisitely crafted, the carvings and embellishments testify to the stature of its owner.", "KR": "왕실의 장검", "CHS": "宗室长剑", "JP": "旧貴族長剣"}, "14501": {"icon": "UI_EquipIcon_Catalyst_Dvalin", "rank": 5, "type": "WEAPON_CATALYST", "EN": "Skyward Atlas", "desc": "A cloud atlas symbolizing Dvalin and his former master, the Anemo Archon. It details the winds and clouds of the northern regions and contains the powers of the sky and wind.", "KR": "천공의 두루마리", "CHS": "天空之卷", "JP": "天空の巻"}, "13404": {"icon": "UI_EquipIcon_Pole_Blackrock", "rank": 4, "type": "WEAPON_POLE", "EN": "Blackcliff Pole", "desc": "A weapon made of blackcliff and aerosiderite. There is a dark crimson glow on its cold black sheen.", "KR": "흑암창", "CHS": "黑岩刺枪", "JP": "黒岩の突槍"}, "14301": {"icon": "UI_EquipIcon_Catalyst_Intro", "rank": 3, "type": "WEAPON_CATALYST", "EN": "Magic Guide", "desc": "Version 12. A reprint featuring corrections to Version 11 and brand-new additions based on recent developments.", "KR": "마도 서론", "CHS": "魔导绪论", "JP": "魔導緒論"}, "14513": {"icon": "UI_EquipIcon_Catalyst_Wheatley", "rank": 5, "type": "WEAPON_CATALYST", "EN": "Cashflow Supervision", "desc": "A floating device that can monitor certain phenomena. It was picked up and modified to serve other purposes following its abandonment.", "KR": "현금 흐름 감독", "CHS": "金流监督", "JP": "凛流の監視者"}, "11509": {"icon": "UI_EquipIcon_Sword_Narukami", "rank": 5, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Mistsplitter Reforged", "desc": "A sword that blazes with a fierce violet light. The name \"Reforged\" comes from it having been broken once before.", "KR": "안개를 가르는 회광", "CHS": "雾切之回光", "JP": "霧切の廻光"}, "14404": {"icon": "UI_EquipIcon_Catalyst_Theocrat", "rank": 4, "type": "WEAPON_CATALYST", "EN": "Royal Grimoire", "desc": "A book that once belonged to a court mage of Mondstadt who served the nobility. It contains faithful and comprehensive historical accounts as well as magic spells.", "KR": "왕실의 비전록", "CHS": "宗室秘法录", "JP": "旧貴族秘法録"}, "12414": {"icon": "UI_EquipIcon_Claymore_Bakufu", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "Katsuragikiri Nagamasa", "desc": "A blade that was once made in Tatarasuna. Heavy and tough.", "KR": "카츠라기를 벤 나가마사", "CHS": "桂木斩长正", "JP": "桂木斬長正"}, "14405": {"icon": "UI_EquipIcon_Catalyst_Resurrection", "rank": 4, "type": "WEAPON_CATALYST", "EN": "Solar Pearl", "desc": "A dull, golden pearl made of an unknown substance that harbors the light of the sun and the moon and pulses with a warm strength.", "KR": "일월의 정수", "CHS": "匣里日月", "JP": "匣中日月"}, "13201": {"icon": "UI_EquipIcon_Pole_Rod", "rank": 2, "type": "WEAPON_POLE", "EN": "Iron Point", "desc": "Sharp and pointy at one end, it is a balanced weapon that is quite popular among travelers.", "KR": "철촉창", "CHS": "铁尖枪", "JP": "鉄尖槍"}, "15415": {"icon": "UI_EquipIcon_Bow_Predator", "rank": 4, "type": "WEAPON_BOW", "EN": "Predator", "desc": "A uniquely-designed bow. This should not belong in this world.", "KR": "포식자", "CHS": "掠食者", "JP": "プレデター"}, "13409": {"icon": "UI_EquipIcon_Pole_Everfrost", "rank": 4, "type": "WEAPON_POLE", "EN": "Dragonspine Spear", "desc": "A spear created from the fang of a dragon. It is oddly warm to the touch.", "KR": "용의 척추", "CHS": "龙脊长枪", "JP": "ドラゴンスピア"}, "15412": {"icon": "UI_EquipIcon_Bow_Nachtblind", "rank": 4, "type": "WEAPON_BOW", "EN": "Mitternachts Waltz", "desc": "A bow painted the color of transgression and nights of illusion.", "KR": "유야의 왈츠", "CHS": "幽夜华尔兹", "JP": "幽夜のワルツ"}, "11407": {"icon": "UI_EquipIcon_Sword_Exotic", "rank": 4, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Iron Sting", "desc": "An exotic long-bladed rapier that somehow found its way into Liyue via foreign traders. It is light, agile, and sharp.", "KR": "강철 벌침", "CHS": "铁蜂刺", "JP": "鉄蜂の刺し"}, "14406": {"icon": "UI_EquipIcon_Catalyst_Proto", "rank": 4, "type": "WEAPON_CATALYST", "EN": "Prototype Amber", "desc": "A dully gilded catalyst secretly guarded in the Blackcliff Forge. It seems to glow with the very light from the sky.", "KR": "황금 호박 프로토타입", "CHS": "试作金珀", "JP": "金珀·試作"}, "12301": {"icon": "UI_EquipIcon_Claymore_Glaive", "rank": 3, "type": "WEAPON_CLAYMORE", "EN": "Ferrous Shadow", "desc": "A replica of the famed sword of Arundolyn, the Lion of Light. Feel the power of a legendary hero as you hold this sword in your hand! Imagine yourself as the great warrior himself! Note: Daydreaming not recommended in live combat.", "KR": "강철의 그림자", "CHS": "铁影阔剑", "JP": "鉄影段平"}, "12410": {"icon": "UI_EquipIcon_Claymore_Lapis", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "Lithic Blade", "desc": "A greatsword carved and chiseled from the very bedrock of Liyue.", "KR": "천암고검", "CHS": "千岩古剑", "JP": "千岩古剣"}, "15407": {"icon": "UI_EquipIcon_Bow_Exotic", "rank": 4, "type": "WEAPON_BOW", "EN": "Compound Bow", "desc": "An exotic metallic bow from a distant land. Though extremely difficult to maintain, it is easy to nock and fires with tremendous force.", "KR": "강철궁", "CHS": "钢轮弓", "JP": "リングボウ"}, "12407": {"icon": "UI_EquipIcon_Claymore_Exotic", "rank": 4, "type": "WEAPON_CLAYMORE", "EN": "Whiteblind", "desc": "An exotic sword with one section of the blade left blunt. It made its way into Liyue via the hands of foreign traders. Incredibly powerful in the hands of someone who knows how to use it.", "KR": "백영검", "CHS": "白影剑", "JP": "白影の剣"}, "13403": {"icon": "UI_EquipIcon_Pole_Exotic", "rank": 4, "type": "WEAPON_POLE", "EN": "Crescent Pike", "desc": "An exotic weapon with an extremely long blade on the top and a crescent blade at the bottom. It found its way into Liyue through foreign traders. With practice, it can deal heavy damage.", "KR": "유월창", "CHS": "流月针", "JP": "流月の針"}, "11504": {"icon": "UI_EquipIcon_Sword_Kunwu", "rank": 5, "type": "WEAPON_SWORD_ONE_HAND", "EN": "Summit Shaper", "desc": "A symbol of a legendary pact, this sharp blade once cut off the peak of a mountain.", "KR": "참봉의 칼날", "CHS": "斫峰之刃", "JP": "斬山の刃"}, "15403": {"icon": "UI_EquipIcon_Bow_Fossil", "rank": 4, "type": "WEAPON_BOW", "EN": "Sacrificial Bow", "desc": "A ceremonial hunting bow that has become petrified over time. The trinkets on it are still visible. It grants the wielder the power to withstand the winds of time.", "KR": "제례활", "CHS": "祭礼弓", "JP": "祭礼の弓"}} \ No newline at end of file