├── .gitignore ├── .gitmodules ├── cn_credits.diff ├── env-setup ├── env-setup-win32 ├── readme.md ├── tcc_winport.diff ├── text.xlsx └── tools ├── text_import_sys.py ├── text_import_text.py ├── text_import_text_ex_ctch.txt ├── text_import_text_ex_epar.txt ├── text_import_text_ex_hint.txt ├── text_import_text_ex_left.txt ├── text_import_text_ex_munt.txt ├── text_import_text_ex_sunt.txt ├── text_import_text_odctrl.txt └── text_import_text_spodctrl.txt /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnDream/pokecrystal_cn_build/HEAD/.gitmodules -------------------------------------------------------------------------------- /cn_credits.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnDream/pokecrystal_cn_build/HEAD/cn_credits.diff -------------------------------------------------------------------------------- /env-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnDream/pokecrystal_cn_build/HEAD/env-setup -------------------------------------------------------------------------------- /env-setup-win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnDream/pokecrystal_cn_build/HEAD/env-setup-win32 -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnDream/pokecrystal_cn_build/HEAD/readme.md -------------------------------------------------------------------------------- /tcc_winport.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnDream/pokecrystal_cn_build/HEAD/tcc_winport.diff -------------------------------------------------------------------------------- /text.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnDream/pokecrystal_cn_build/HEAD/text.xlsx -------------------------------------------------------------------------------- /tools/text_import_sys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnDream/pokecrystal_cn_build/HEAD/tools/text_import_sys.py -------------------------------------------------------------------------------- /tools/text_import_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnDream/pokecrystal_cn_build/HEAD/tools/text_import_text.py -------------------------------------------------------------------------------- /tools/text_import_text_ex_ctch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnDream/pokecrystal_cn_build/HEAD/tools/text_import_text_ex_ctch.txt -------------------------------------------------------------------------------- /tools/text_import_text_ex_epar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnDream/pokecrystal_cn_build/HEAD/tools/text_import_text_ex_epar.txt -------------------------------------------------------------------------------- /tools/text_import_text_ex_hint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnDream/pokecrystal_cn_build/HEAD/tools/text_import_text_ex_hint.txt -------------------------------------------------------------------------------- /tools/text_import_text_ex_left.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnDream/pokecrystal_cn_build/HEAD/tools/text_import_text_ex_left.txt -------------------------------------------------------------------------------- /tools/text_import_text_ex_munt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnDream/pokecrystal_cn_build/HEAD/tools/text_import_text_ex_munt.txt -------------------------------------------------------------------------------- /tools/text_import_text_ex_sunt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnDream/pokecrystal_cn_build/HEAD/tools/text_import_text_ex_sunt.txt -------------------------------------------------------------------------------- /tools/text_import_text_odctrl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnDream/pokecrystal_cn_build/HEAD/tools/text_import_text_odctrl.txt -------------------------------------------------------------------------------- /tools/text_import_text_spodctrl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SnDream/pokecrystal_cn_build/HEAD/tools/text_import_text_spodctrl.txt --------------------------------------------------------------------------------