├── .gitignore ├── All_Discs_sorting.csv ├── Disc_1_sorting.csv ├── Disc_2_sorting.csv ├── Disc_3_sorting.csv ├── Disc_4_sorting.csv ├── LICENSE ├── LODModS Script Editing Instructions.txt ├── README.md ├── all_text.txt ├── config_handler.py ├── disc_handler.py ├── game_file_handler.py ├── hidden_print.py ├── id_files.py ├── lod.tbl ├── lod_codec.py ├── lod_ext_codec.py ├── lodmods.config ├── lodmods.py ├── mod_handler.py └── text_handler.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/.gitignore -------------------------------------------------------------------------------- /All_Discs_sorting.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/All_Discs_sorting.csv -------------------------------------------------------------------------------- /Disc_1_sorting.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/Disc_1_sorting.csv -------------------------------------------------------------------------------- /Disc_2_sorting.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/Disc_2_sorting.csv -------------------------------------------------------------------------------- /Disc_3_sorting.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/Disc_3_sorting.csv -------------------------------------------------------------------------------- /Disc_4_sorting.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/Disc_4_sorting.csv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/LICENSE -------------------------------------------------------------------------------- /LODModS Script Editing Instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/LODModS Script Editing Instructions.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/README.md -------------------------------------------------------------------------------- /all_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/all_text.txt -------------------------------------------------------------------------------- /config_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/config_handler.py -------------------------------------------------------------------------------- /disc_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/disc_handler.py -------------------------------------------------------------------------------- /game_file_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/game_file_handler.py -------------------------------------------------------------------------------- /hidden_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/hidden_print.py -------------------------------------------------------------------------------- /id_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/id_files.py -------------------------------------------------------------------------------- /lod.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/lod.tbl -------------------------------------------------------------------------------- /lod_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/lod_codec.py -------------------------------------------------------------------------------- /lod_ext_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/lod_ext_codec.py -------------------------------------------------------------------------------- /lodmods.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/lodmods.config -------------------------------------------------------------------------------- /lodmods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/lodmods.py -------------------------------------------------------------------------------- /mod_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/mod_handler.py -------------------------------------------------------------------------------- /text_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend-of-Dragoon-Modding/lodmods/HEAD/text_handler.py --------------------------------------------------------------------------------