├── .gitattributes ├── .gitignore ├── .gitmodules ├── 7zS2.sfx ├── CoZIcon.ico ├── HACKING.md ├── LauncherIcon.ico ├── Newtonsoft.Json.dll ├── README.md ├── c0data ├── _meta.json ├── bg │ └── .gitkeep ├── bgm │ └── .gitkeep ├── chara │ └── .gitkeep ├── chara_dlc │ └── .gitkeep ├── manual │ └── .gitkeep ├── movie │ └── .gitkeep ├── se │ └── .gitkeep ├── system │ └── .gitkeep └── voice │ └── .gitkeep ├── config.json ├── config.ps1.sample ├── content ├── CHNPatch-README.txt ├── languagebarrier │ ├── LICENSE │ ├── THIRDPARTY.LB.txt │ ├── THIRDPARTY.patch.txt │ ├── chaos_head_noah-extended.json │ ├── defaultconfig.json │ ├── fonts │ │ └── VL-PGothic-Regular.ttf │ ├── gamedef.json │ ├── patchdef.json │ ├── stringReplacementTable.bin │ ├── subs │ │ ├── fonts │ │ │ ├── Aozora Mincho Medium.ttf │ │ │ ├── DCC-SharpDistressBlack.otf │ │ │ ├── Doulos SIL.ttf │ │ │ ├── Eligible-Regular.ttf │ │ │ ├── Elmer.ttf │ │ │ ├── Hanazono Mincho A Regular.otf │ │ │ ├── IPAexMincho.ttf │ │ │ ├── Imprimerie.ttf │ │ │ ├── K Gothic.ttf │ │ │ ├── Leorio.ttf │ │ │ ├── MaboroshinoNijimiMincho.otf │ │ │ ├── Mamelon-4-Hi-Regular.otf │ │ │ ├── NemukeMedium.otf │ │ │ ├── NotoSerifJP-Medium.otf │ │ │ ├── RomanAntique.ttf │ │ │ ├── RoundslabSerif.ttf │ │ │ ├── Sans Mateo 2 Medium.ttf │ │ │ ├── SoukouMincho.ttf │ │ │ ├── SourceHanSerif-Regular.otf │ │ │ ├── Stop Bullying.ttf │ │ │ ├── Sweetie Pie.ttf │ │ │ ├── Togalite-Medium.otf │ │ │ ├── VL-PGothic-Regular.ttf │ │ │ ├── centabel.ttf │ │ │ ├── mikiyu-penji-p.ttf │ │ │ └── nagayama_kai08.otf │ │ ├── mvdemo.ass │ │ ├── mvdemo2.ass │ │ ├── mvdemo2_karaonly.ass │ │ ├── mvdemo2_tlonly.ass │ │ ├── mvdemo_karaonly.ass │ │ ├── mvdemo_tlonly.ass │ │ ├── mvend02.ass │ │ ├── mvend02_karaonly.ass │ │ ├── mvend02_tlonly.ass │ │ ├── mvend03.ass │ │ ├── mvend03_karaonly.ass │ │ ├── mvend03_tlonly.ass │ │ ├── mvend04.ass │ │ ├── mvend04_karaonly.ass │ │ ├── mvend04_tlonly.ass │ │ ├── mvend05.ass │ │ ├── mvend05_karaonly.ass │ │ ├── mvend05_tlonly.ass │ │ ├── mvend06.ass │ │ ├── mvend06_karaonly.ass │ │ ├── mvend06_tlonly.ass │ │ ├── mvend07.ass │ │ ├── mvend07_karaonly.ass │ │ ├── mvend07_tlonly.ass │ │ ├── mvend08.ass │ │ ├── mvend08_karaonly.ass │ │ ├── mvend08_tlonly.ass │ │ ├── mvend09.ass │ │ ├── mvend09_karaonly.ass │ │ ├── mvend09_tlonly.ass │ │ ├── mvinter01.ass │ │ ├── mvop.ass │ │ ├── mvop2.ass │ │ ├── mvop2_karaonly.ass │ │ ├── mvop2_tlonly.ass │ │ ├── mvop_karaonly.ass │ │ ├── mvop_tlonly.ass │ │ ├── mvoppsp.ass │ │ ├── mvoppsp_karaonly.ass │ │ ├── mvoppsp_tlonly.ass │ │ └── mvsword03a.ass │ └── versioninfo.json └── steam_appid.txt ├── content_steamgrid ├── 1961950.png ├── 1961950_hero.png ├── 1961950_logo.png └── 1961950p.png ├── cri-tools ├── create_archive.py └── lib │ ├── codecutils.py │ ├── cri │ ├── cpk.py │ └── table.py │ ├── tools │ └── create_archive.py │ └── toolutils.py ├── installer ├── build │ └── .gitkeep ├── noidget_build.bat ├── userdata.qrc ├── userdata │ ├── LICENSE.txt │ ├── README.txt │ ├── alert.png │ ├── bgm.mp3 │ ├── header.png │ ├── left.png │ ├── next_button.png │ ├── product.json │ ├── script.js │ └── scriptUninstaller.js └── userdataUninstaller.qrc ├── launcher ├── build │ └── .gitkeep └── realboot_build.bat ├── rcedit-x86.exe ├── terribuild.ps1 ├── update.json └── xdelta3.exe /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/.gitmodules -------------------------------------------------------------------------------- /7zS2.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/7zS2.sfx -------------------------------------------------------------------------------- /CoZIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/CoZIcon.ico -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/HACKING.md -------------------------------------------------------------------------------- /LauncherIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/LauncherIcon.ico -------------------------------------------------------------------------------- /Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/README.md -------------------------------------------------------------------------------- /c0data/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/c0data/_meta.json -------------------------------------------------------------------------------- /c0data/bg/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c0data/bgm/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c0data/chara/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c0data/chara_dlc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c0data/manual/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c0data/movie/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c0data/se/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c0data/system/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c0data/voice/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/config.json -------------------------------------------------------------------------------- /config.ps1.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/config.ps1.sample -------------------------------------------------------------------------------- /content/CHNPatch-README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/CHNPatch-README.txt -------------------------------------------------------------------------------- /content/languagebarrier/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/LICENSE -------------------------------------------------------------------------------- /content/languagebarrier/THIRDPARTY.LB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/THIRDPARTY.LB.txt -------------------------------------------------------------------------------- /content/languagebarrier/THIRDPARTY.patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/THIRDPARTY.patch.txt -------------------------------------------------------------------------------- /content/languagebarrier/chaos_head_noah-extended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/chaos_head_noah-extended.json -------------------------------------------------------------------------------- /content/languagebarrier/defaultconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/defaultconfig.json -------------------------------------------------------------------------------- /content/languagebarrier/fonts/VL-PGothic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/fonts/VL-PGothic-Regular.ttf -------------------------------------------------------------------------------- /content/languagebarrier/gamedef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/gamedef.json -------------------------------------------------------------------------------- /content/languagebarrier/patchdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/patchdef.json -------------------------------------------------------------------------------- /content/languagebarrier/stringReplacementTable.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/stringReplacementTable.bin -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/Aozora Mincho Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/Aozora Mincho Medium.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/DCC-SharpDistressBlack.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/DCC-SharpDistressBlack.otf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/Doulos SIL.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/Doulos SIL.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/Eligible-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/Eligible-Regular.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/Elmer.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/Elmer.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/Hanazono Mincho A Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/Hanazono Mincho A Regular.otf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/IPAexMincho.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/IPAexMincho.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/Imprimerie.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/Imprimerie.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/K Gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/K Gothic.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/Leorio.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/Leorio.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/MaboroshinoNijimiMincho.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/MaboroshinoNijimiMincho.otf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/Mamelon-4-Hi-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/Mamelon-4-Hi-Regular.otf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/NemukeMedium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/NemukeMedium.otf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/NotoSerifJP-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/NotoSerifJP-Medium.otf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/RomanAntique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/RomanAntique.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/RoundslabSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/RoundslabSerif.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/Sans Mateo 2 Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/Sans Mateo 2 Medium.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/SoukouMincho.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/SoukouMincho.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/SourceHanSerif-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/SourceHanSerif-Regular.otf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/Stop Bullying.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/Stop Bullying.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/Sweetie Pie.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/Sweetie Pie.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/Togalite-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/Togalite-Medium.otf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/VL-PGothic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/VL-PGothic-Regular.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/centabel.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/centabel.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/mikiyu-penji-p.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/mikiyu-penji-p.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/nagayama_kai08.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/fonts/nagayama_kai08.otf -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvdemo.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvdemo.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvdemo2.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvdemo2.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvdemo2_karaonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvdemo2_karaonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvdemo2_tlonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvdemo2_tlonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvdemo_karaonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvdemo_karaonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvdemo_tlonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvdemo_tlonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend02.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend02.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend02_karaonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend02_karaonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend02_tlonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend02_tlonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend03.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend03.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend03_karaonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend03_karaonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend03_tlonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend03_tlonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend04.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend04.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend04_karaonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend04_karaonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend04_tlonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend04_tlonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend05.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend05.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend05_karaonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend05_karaonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend05_tlonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend05_tlonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend06.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend06.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend06_karaonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend06_karaonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend06_tlonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend06_tlonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend07.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend07.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend07_karaonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend07_karaonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend07_tlonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend07_tlonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend08.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend08.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend08_karaonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend08_karaonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend08_tlonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend08_tlonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend09.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend09.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend09_karaonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend09_karaonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvend09_tlonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvend09_tlonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvinter01.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvinter01.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvop.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvop.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvop2.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvop2.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvop2_karaonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvop2_karaonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvop2_tlonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvop2_tlonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvop_karaonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvop_karaonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvop_tlonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvop_tlonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvoppsp.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvoppsp.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvoppsp_karaonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvoppsp_karaonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvoppsp_tlonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvoppsp_tlonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/mvsword03a.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/subs/mvsword03a.ass -------------------------------------------------------------------------------- /content/languagebarrier/versioninfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content/languagebarrier/versioninfo.json -------------------------------------------------------------------------------- /content/steam_appid.txt: -------------------------------------------------------------------------------- 1 | 1961950 2 | -------------------------------------------------------------------------------- /content_steamgrid/1961950.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content_steamgrid/1961950.png -------------------------------------------------------------------------------- /content_steamgrid/1961950_hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content_steamgrid/1961950_hero.png -------------------------------------------------------------------------------- /content_steamgrid/1961950_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content_steamgrid/1961950_logo.png -------------------------------------------------------------------------------- /content_steamgrid/1961950p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/content_steamgrid/1961950p.png -------------------------------------------------------------------------------- /cri-tools/create_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/cri-tools/create_archive.py -------------------------------------------------------------------------------- /cri-tools/lib/codecutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/cri-tools/lib/codecutils.py -------------------------------------------------------------------------------- /cri-tools/lib/cri/cpk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/cri-tools/lib/cri/cpk.py -------------------------------------------------------------------------------- /cri-tools/lib/cri/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/cri-tools/lib/cri/table.py -------------------------------------------------------------------------------- /cri-tools/lib/tools/create_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/cri-tools/lib/tools/create_archive.py -------------------------------------------------------------------------------- /cri-tools/lib/toolutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/cri-tools/lib/toolutils.py -------------------------------------------------------------------------------- /installer/build/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /installer/noidget_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/installer/noidget_build.bat -------------------------------------------------------------------------------- /installer/userdata.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/installer/userdata.qrc -------------------------------------------------------------------------------- /installer/userdata/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/installer/userdata/LICENSE.txt -------------------------------------------------------------------------------- /installer/userdata/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/installer/userdata/README.txt -------------------------------------------------------------------------------- /installer/userdata/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/installer/userdata/alert.png -------------------------------------------------------------------------------- /installer/userdata/bgm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/installer/userdata/bgm.mp3 -------------------------------------------------------------------------------- /installer/userdata/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/installer/userdata/header.png -------------------------------------------------------------------------------- /installer/userdata/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/installer/userdata/left.png -------------------------------------------------------------------------------- /installer/userdata/next_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/installer/userdata/next_button.png -------------------------------------------------------------------------------- /installer/userdata/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/installer/userdata/product.json -------------------------------------------------------------------------------- /installer/userdata/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/installer/userdata/script.js -------------------------------------------------------------------------------- /installer/userdata/scriptUninstaller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/installer/userdata/scriptUninstaller.js -------------------------------------------------------------------------------- /installer/userdataUninstaller.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/installer/userdataUninstaller.qrc -------------------------------------------------------------------------------- /launcher/build/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/realboot_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/launcher/realboot_build.bat -------------------------------------------------------------------------------- /rcedit-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/rcedit-x86.exe -------------------------------------------------------------------------------- /terribuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/terribuild.ps1 -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/update.json -------------------------------------------------------------------------------- /xdelta3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/chn-patch/HEAD/xdelta3.exe --------------------------------------------------------------------------------