├── .github └── workflows │ └── release.yml ├── .gitignore ├── .prettierrc.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── dict │ ├── item │ │ ├── artifact.md │ │ ├── food.md │ │ ├── material.md │ │ ├── tool.md │ │ └── weapon.md │ ├── person │ │ ├── fontaine.md │ │ ├── inazuma.md │ │ ├── khaenriah.md │ │ ├── liyue.md │ │ ├── mondstadt.md │ │ ├── natlan.md │ │ ├── nodkrai.md │ │ ├── snezhnaya.md │ │ ├── sumeru.md │ │ └── unknown.md │ ├── region │ │ ├── dragonspine.md │ │ ├── fontaine.md │ │ ├── golden_apple.md │ │ ├── inazuma.md │ │ ├── khaenriah.md │ │ ├── liyue.md │ │ ├── mondstadt.md │ │ ├── natlan.md │ │ ├── nodkrai.md │ │ ├── simulanka.md │ │ ├── snezhnaya.md │ │ ├── sumeru.md │ │ ├── teyvat.md │ │ └── the_chasm.md │ └── world │ │ ├── boss.md │ │ ├── cardgame.md │ │ ├── creature.md │ │ ├── enemy.md │ │ ├── event.md │ │ ├── system.md │ │ └── teyvat.md ├── dict_data.md └── img │ ├── mac_pref_add_dict.png │ ├── mac_pref_keyboard.png │ ├── mac_pref_userdict.png │ ├── win_addword.png │ ├── win_ime_menu.png │ ├── win_userdict_success.png │ └── win_userdict_tool.png ├── genshin-dictionary ├── 原神辞書_Windows.txt ├── 原神辞書_macOS.txt └── 原神辞書_macOS_ユーザ辞書.plist ├── package.json ├── scripts ├── build.ts ├── generate_release.ts └── lib │ ├── docgen.ts │ ├── japanese.test.ts │ ├── japanese.ts │ ├── platform.ts │ ├── validate.test.ts │ └── validate.ts ├── tsconfig.json └── worddata ├── data ├── item │ ├── artifact.ts │ ├── food.ts │ ├── material.ts │ ├── tool.ts │ └── weapon.ts ├── person │ ├── fontaine.ts │ ├── inazuma.ts │ ├── khaenriah.ts │ ├── liyue.ts │ ├── mondstadt.ts │ ├── natlan.ts │ ├── nodkrai.ts │ ├── snezhnaya.ts │ ├── sumeru.ts │ └── unknown.ts ├── region │ ├── dragonspine.ts │ ├── fontaine.ts │ ├── golden_apple.ts │ ├── inazuma.ts │ ├── khaenriah.ts │ ├── liyue.ts │ ├── mondstadt.ts │ ├── natlan.ts │ ├── nodkrai.ts │ ├── simulanka.ts │ ├── snezhnaya.ts │ ├── sumeru.ts │ ├── teyvat.ts │ └── the_chasm.ts └── world │ ├── boss.ts │ ├── cardgame.ts │ ├── creature.ts │ ├── enemy.ts │ ├── event.ts │ ├── system.ts │ └── teyvat.ts ├── dict.d.ts └── index.ts /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | .DS_Store 3 | RELEASE_NOTE_GENERATED.md -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution Guide 2 | 3 | WIP -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/README.md -------------------------------------------------------------------------------- /docs/dict/item/artifact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/item/artifact.md -------------------------------------------------------------------------------- /docs/dict/item/food.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/item/food.md -------------------------------------------------------------------------------- /docs/dict/item/material.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/item/material.md -------------------------------------------------------------------------------- /docs/dict/item/tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/item/tool.md -------------------------------------------------------------------------------- /docs/dict/item/weapon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/item/weapon.md -------------------------------------------------------------------------------- /docs/dict/person/fontaine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/person/fontaine.md -------------------------------------------------------------------------------- /docs/dict/person/inazuma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/person/inazuma.md -------------------------------------------------------------------------------- /docs/dict/person/khaenriah.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/person/khaenriah.md -------------------------------------------------------------------------------- /docs/dict/person/liyue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/person/liyue.md -------------------------------------------------------------------------------- /docs/dict/person/mondstadt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/person/mondstadt.md -------------------------------------------------------------------------------- /docs/dict/person/natlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/person/natlan.md -------------------------------------------------------------------------------- /docs/dict/person/nodkrai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/person/nodkrai.md -------------------------------------------------------------------------------- /docs/dict/person/snezhnaya.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/person/snezhnaya.md -------------------------------------------------------------------------------- /docs/dict/person/sumeru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/person/sumeru.md -------------------------------------------------------------------------------- /docs/dict/person/unknown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/person/unknown.md -------------------------------------------------------------------------------- /docs/dict/region/dragonspine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/region/dragonspine.md -------------------------------------------------------------------------------- /docs/dict/region/fontaine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/region/fontaine.md -------------------------------------------------------------------------------- /docs/dict/region/golden_apple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/region/golden_apple.md -------------------------------------------------------------------------------- /docs/dict/region/inazuma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/region/inazuma.md -------------------------------------------------------------------------------- /docs/dict/region/khaenriah.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/region/khaenriah.md -------------------------------------------------------------------------------- /docs/dict/region/liyue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/region/liyue.md -------------------------------------------------------------------------------- /docs/dict/region/mondstadt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/region/mondstadt.md -------------------------------------------------------------------------------- /docs/dict/region/natlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/region/natlan.md -------------------------------------------------------------------------------- /docs/dict/region/nodkrai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/region/nodkrai.md -------------------------------------------------------------------------------- /docs/dict/region/simulanka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/region/simulanka.md -------------------------------------------------------------------------------- /docs/dict/region/snezhnaya.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/region/snezhnaya.md -------------------------------------------------------------------------------- /docs/dict/region/sumeru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/region/sumeru.md -------------------------------------------------------------------------------- /docs/dict/region/teyvat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/region/teyvat.md -------------------------------------------------------------------------------- /docs/dict/region/the_chasm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/region/the_chasm.md -------------------------------------------------------------------------------- /docs/dict/world/boss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/world/boss.md -------------------------------------------------------------------------------- /docs/dict/world/cardgame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/world/cardgame.md -------------------------------------------------------------------------------- /docs/dict/world/creature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/world/creature.md -------------------------------------------------------------------------------- /docs/dict/world/enemy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/world/enemy.md -------------------------------------------------------------------------------- /docs/dict/world/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/world/event.md -------------------------------------------------------------------------------- /docs/dict/world/system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/world/system.md -------------------------------------------------------------------------------- /docs/dict/world/teyvat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict/world/teyvat.md -------------------------------------------------------------------------------- /docs/dict_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/dict_data.md -------------------------------------------------------------------------------- /docs/img/mac_pref_add_dict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/img/mac_pref_add_dict.png -------------------------------------------------------------------------------- /docs/img/mac_pref_keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/img/mac_pref_keyboard.png -------------------------------------------------------------------------------- /docs/img/mac_pref_userdict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/img/mac_pref_userdict.png -------------------------------------------------------------------------------- /docs/img/win_addword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/img/win_addword.png -------------------------------------------------------------------------------- /docs/img/win_ime_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/img/win_ime_menu.png -------------------------------------------------------------------------------- /docs/img/win_userdict_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/img/win_userdict_success.png -------------------------------------------------------------------------------- /docs/img/win_userdict_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/docs/img/win_userdict_tool.png -------------------------------------------------------------------------------- /genshin-dictionary/原神辞書_Windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/genshin-dictionary/原神辞書_Windows.txt -------------------------------------------------------------------------------- /genshin-dictionary/原神辞書_macOS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/genshin-dictionary/原神辞書_macOS.txt -------------------------------------------------------------------------------- /genshin-dictionary/原神辞書_macOS_ユーザ辞書.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/genshin-dictionary/原神辞書_macOS_ユーザ辞書.plist -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/scripts/build.ts -------------------------------------------------------------------------------- /scripts/generate_release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/scripts/generate_release.ts -------------------------------------------------------------------------------- /scripts/lib/docgen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/scripts/lib/docgen.ts -------------------------------------------------------------------------------- /scripts/lib/japanese.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/scripts/lib/japanese.test.ts -------------------------------------------------------------------------------- /scripts/lib/japanese.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/scripts/lib/japanese.ts -------------------------------------------------------------------------------- /scripts/lib/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/scripts/lib/platform.ts -------------------------------------------------------------------------------- /scripts/lib/validate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/scripts/lib/validate.test.ts -------------------------------------------------------------------------------- /scripts/lib/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/scripts/lib/validate.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/tsconfig.json -------------------------------------------------------------------------------- /worddata/data/item/artifact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/item/artifact.ts -------------------------------------------------------------------------------- /worddata/data/item/food.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/item/food.ts -------------------------------------------------------------------------------- /worddata/data/item/material.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/item/material.ts -------------------------------------------------------------------------------- /worddata/data/item/tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/item/tool.ts -------------------------------------------------------------------------------- /worddata/data/item/weapon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/item/weapon.ts -------------------------------------------------------------------------------- /worddata/data/person/fontaine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/person/fontaine.ts -------------------------------------------------------------------------------- /worddata/data/person/inazuma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/person/inazuma.ts -------------------------------------------------------------------------------- /worddata/data/person/khaenriah.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/person/khaenriah.ts -------------------------------------------------------------------------------- /worddata/data/person/liyue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/person/liyue.ts -------------------------------------------------------------------------------- /worddata/data/person/mondstadt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/person/mondstadt.ts -------------------------------------------------------------------------------- /worddata/data/person/natlan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/person/natlan.ts -------------------------------------------------------------------------------- /worddata/data/person/nodkrai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/person/nodkrai.ts -------------------------------------------------------------------------------- /worddata/data/person/snezhnaya.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/person/snezhnaya.ts -------------------------------------------------------------------------------- /worddata/data/person/sumeru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/person/sumeru.ts -------------------------------------------------------------------------------- /worddata/data/person/unknown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/person/unknown.ts -------------------------------------------------------------------------------- /worddata/data/region/dragonspine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/region/dragonspine.ts -------------------------------------------------------------------------------- /worddata/data/region/fontaine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/region/fontaine.ts -------------------------------------------------------------------------------- /worddata/data/region/golden_apple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/region/golden_apple.ts -------------------------------------------------------------------------------- /worddata/data/region/inazuma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/region/inazuma.ts -------------------------------------------------------------------------------- /worddata/data/region/khaenriah.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/region/khaenriah.ts -------------------------------------------------------------------------------- /worddata/data/region/liyue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/region/liyue.ts -------------------------------------------------------------------------------- /worddata/data/region/mondstadt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/region/mondstadt.ts -------------------------------------------------------------------------------- /worddata/data/region/natlan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/region/natlan.ts -------------------------------------------------------------------------------- /worddata/data/region/nodkrai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/region/nodkrai.ts -------------------------------------------------------------------------------- /worddata/data/region/simulanka.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/region/simulanka.ts -------------------------------------------------------------------------------- /worddata/data/region/snezhnaya.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/region/snezhnaya.ts -------------------------------------------------------------------------------- /worddata/data/region/sumeru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/region/sumeru.ts -------------------------------------------------------------------------------- /worddata/data/region/teyvat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/region/teyvat.ts -------------------------------------------------------------------------------- /worddata/data/region/the_chasm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/region/the_chasm.ts -------------------------------------------------------------------------------- /worddata/data/world/boss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/world/boss.ts -------------------------------------------------------------------------------- /worddata/data/world/cardgame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/world/cardgame.ts -------------------------------------------------------------------------------- /worddata/data/world/creature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/world/creature.ts -------------------------------------------------------------------------------- /worddata/data/world/enemy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/world/enemy.ts -------------------------------------------------------------------------------- /worddata/data/world/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/world/event.ts -------------------------------------------------------------------------------- /worddata/data/world/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/world/system.ts -------------------------------------------------------------------------------- /worddata/data/world/teyvat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/data/world/teyvat.ts -------------------------------------------------------------------------------- /worddata/dict.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/dict.d.ts -------------------------------------------------------------------------------- /worddata/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotofurumiya/genshin-dict/HEAD/worddata/index.ts --------------------------------------------------------------------------------