├── .github ├── config.yml └── workflows │ └── pr_compile_scripts.yml ├── .gitignore ├── CG ├── scenario │ ├── description.png │ ├── description_j.png │ ├── logo.png │ ├── logo_j.png │ ├── shortcuts.png │ ├── shortcuts_j.png │ ├── title.png │ └── title_j.png └── windo_filter_adv.png ├── OGBackgrounds ├── bg_018.png └── overview │ ├── hina3b_1.png │ ├── hina3b_2.png │ ├── hina3b_3.png │ └── hina3b_4.png ├── README.md ├── Update ├── &opening.txt ├── dummy.txt ├── flow.txt ├── init.txt ├── omake_02.txt ├── wata_001.txt ├── wata_002.txt ├── wata_003.txt ├── wata_004.txt ├── wata_005.txt ├── wata_006.txt ├── wata_007.txt ├── wata_008.txt ├── wata_009.txt ├── wata_009_02.txt ├── wata_010.txt ├── wata_010_02.txt ├── wata_010_03.txt ├── wata_010_04.txt ├── wata_011.txt ├── wata_011_02.txt ├── wata_012.txt ├── wata_012_02.txt ├── wata_012_03.txt ├── wata_ep_01.txt ├── wata_ep_02.txt ├── wata_tips_01.txt ├── wata_tips_02.txt ├── wata_tips_03.txt ├── wata_tips_04.txt ├── wata_tips_05.txt ├── wata_tips_06.txt ├── wata_tips_07.txt ├── wata_tips_08.txt ├── wata_tips_09.txt ├── wata_tips_10.txt ├── wata_tips_11.txt ├── wata_tips_12.txt ├── wata_tips_13.txt ├── wata_tips_14.txt ├── wata_tips_15.txt ├── wata_tips_16.txt ├── wata_tips_17.txt ├── wata_tips_18.txt ├── wata_tips_19.txt ├── wata_tips_20.txt ├── wata_tips_21.txt ├── wata_tips_22.txt ├── wata_tips_23.txt ├── wata_tips_24.txt ├── zomake_02_vm00_n01.txt ├── zomake_02_vm0x_n01.txt ├── zwata_001_vm00_n01.txt ├── zwata_001_vm0x_n01.txt ├── zwata_002_vm00_n01.txt ├── zwata_002_vm00_n02.txt ├── zwata_002_vm0x_n01.txt ├── zwata_002_vm0x_n02.txt ├── zwata_003_vm00_n01.txt ├── zwata_003_vm0x_n01.txt ├── zwata_004_vm00_n01.txt ├── zwata_004_vm0x_n01.txt ├── zwata_005_vm00_n01.txt ├── zwata_005_vm0x_n01.txt ├── zwata_007_vm00_n01.txt ├── zwata_007_vm0x_n01.txt ├── zwata_008_vm00_n01.txt ├── zwata_008_vm00_n02.txt ├── zwata_008_vm0x_n01.txt ├── zwata_008_vm0x_n02.txt ├── zwata_009_02_vm00_n01.txt ├── zwata_009_02_vm0x_n01.txt ├── zwata_009_vm00_n01.txt ├── zwata_009_vm0x_n01.txt ├── zwata_00x_vm00_n01.txt ├── zwata_010_04_vm00_n01.txt ├── zwata_010_04_vm0x_n01.txt ├── zwata_010_vm00_n01.txt ├── zwata_010_vm0x_n01.txt ├── zwata_011_02_vm00_n01.txt ├── zwata_011_02_vm0x_n01.txt ├── zwata_012_03_vm00_n01.txt ├── zwata_012_03_vm0x_n01.txt ├── zwata_ep_02_vm00_n01.txt ├── zwata_ep_02_vm0x_n01.txt ├── zwata_tips_05_vm00_n01.txt ├── zwata_tips_05_vm0x_n01.txt ├── zwata_tips_10_vm00_n01.txt ├── zwata_tips_10_vm0x_n01.txt ├── zwata_tips_13_vm00_n01.txt ├── zwata_tips_13_vm0x_n01.txt ├── zwata_tips_24_vm00_n01.txt └── zwata_tips_24_vm0x_n01.txt ├── tips.json └── voice ├── ps2 └── 03 │ ├── 130300394.ogg │ ├── 130300404.ogg │ └── 130300405.ogg └── ps3 ├── s02 └── 02 │ ├── 130200583.ogg │ ├── 130200584.ogg │ └── 130200585.ogg └── s19 └── 03 └── 500300196.ogg /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/workflows/pr_compile_scripts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/.github/workflows/pr_compile_scripts.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/.gitignore -------------------------------------------------------------------------------- /CG/scenario/description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/CG/scenario/description.png -------------------------------------------------------------------------------- /CG/scenario/description_j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/CG/scenario/description_j.png -------------------------------------------------------------------------------- /CG/scenario/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/CG/scenario/logo.png -------------------------------------------------------------------------------- /CG/scenario/logo_j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/CG/scenario/logo_j.png -------------------------------------------------------------------------------- /CG/scenario/shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/CG/scenario/shortcuts.png -------------------------------------------------------------------------------- /CG/scenario/shortcuts_j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/CG/scenario/shortcuts_j.png -------------------------------------------------------------------------------- /CG/scenario/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/CG/scenario/title.png -------------------------------------------------------------------------------- /CG/scenario/title_j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/CG/scenario/title_j.png -------------------------------------------------------------------------------- /CG/windo_filter_adv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/CG/windo_filter_adv.png -------------------------------------------------------------------------------- /OGBackgrounds/bg_018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/OGBackgrounds/bg_018.png -------------------------------------------------------------------------------- /OGBackgrounds/overview/hina3b_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/OGBackgrounds/overview/hina3b_1.png -------------------------------------------------------------------------------- /OGBackgrounds/overview/hina3b_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/OGBackgrounds/overview/hina3b_2.png -------------------------------------------------------------------------------- /OGBackgrounds/overview/hina3b_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/OGBackgrounds/overview/hina3b_3.png -------------------------------------------------------------------------------- /OGBackgrounds/overview/hina3b_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/OGBackgrounds/overview/hina3b_4.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/README.md -------------------------------------------------------------------------------- /Update/&opening.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/&opening.txt -------------------------------------------------------------------------------- /Update/dummy.txt: -------------------------------------------------------------------------------- 1 | 2 | void main() 3 | { 4 | 5 | } -------------------------------------------------------------------------------- /Update/flow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/flow.txt -------------------------------------------------------------------------------- /Update/init.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/init.txt -------------------------------------------------------------------------------- /Update/omake_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/omake_02.txt -------------------------------------------------------------------------------- /Update/wata_001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_001.txt -------------------------------------------------------------------------------- /Update/wata_002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_002.txt -------------------------------------------------------------------------------- /Update/wata_003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_003.txt -------------------------------------------------------------------------------- /Update/wata_004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_004.txt -------------------------------------------------------------------------------- /Update/wata_005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_005.txt -------------------------------------------------------------------------------- /Update/wata_006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_006.txt -------------------------------------------------------------------------------- /Update/wata_007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_007.txt -------------------------------------------------------------------------------- /Update/wata_008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_008.txt -------------------------------------------------------------------------------- /Update/wata_009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_009.txt -------------------------------------------------------------------------------- /Update/wata_009_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_009_02.txt -------------------------------------------------------------------------------- /Update/wata_010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_010.txt -------------------------------------------------------------------------------- /Update/wata_010_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_010_02.txt -------------------------------------------------------------------------------- /Update/wata_010_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_010_03.txt -------------------------------------------------------------------------------- /Update/wata_010_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_010_04.txt -------------------------------------------------------------------------------- /Update/wata_011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_011.txt -------------------------------------------------------------------------------- /Update/wata_011_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_011_02.txt -------------------------------------------------------------------------------- /Update/wata_012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_012.txt -------------------------------------------------------------------------------- /Update/wata_012_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_012_02.txt -------------------------------------------------------------------------------- /Update/wata_012_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_012_03.txt -------------------------------------------------------------------------------- /Update/wata_ep_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_ep_01.txt -------------------------------------------------------------------------------- /Update/wata_ep_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_ep_02.txt -------------------------------------------------------------------------------- /Update/wata_tips_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_01.txt -------------------------------------------------------------------------------- /Update/wata_tips_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_02.txt -------------------------------------------------------------------------------- /Update/wata_tips_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_03.txt -------------------------------------------------------------------------------- /Update/wata_tips_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_04.txt -------------------------------------------------------------------------------- /Update/wata_tips_05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_05.txt -------------------------------------------------------------------------------- /Update/wata_tips_06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_06.txt -------------------------------------------------------------------------------- /Update/wata_tips_07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_07.txt -------------------------------------------------------------------------------- /Update/wata_tips_08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_08.txt -------------------------------------------------------------------------------- /Update/wata_tips_09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_09.txt -------------------------------------------------------------------------------- /Update/wata_tips_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_10.txt -------------------------------------------------------------------------------- /Update/wata_tips_11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_11.txt -------------------------------------------------------------------------------- /Update/wata_tips_12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_12.txt -------------------------------------------------------------------------------- /Update/wata_tips_13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_13.txt -------------------------------------------------------------------------------- /Update/wata_tips_14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_14.txt -------------------------------------------------------------------------------- /Update/wata_tips_15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_15.txt -------------------------------------------------------------------------------- /Update/wata_tips_16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_16.txt -------------------------------------------------------------------------------- /Update/wata_tips_17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_17.txt -------------------------------------------------------------------------------- /Update/wata_tips_18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_18.txt -------------------------------------------------------------------------------- /Update/wata_tips_19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_19.txt -------------------------------------------------------------------------------- /Update/wata_tips_20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_20.txt -------------------------------------------------------------------------------- /Update/wata_tips_21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_21.txt -------------------------------------------------------------------------------- /Update/wata_tips_22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_22.txt -------------------------------------------------------------------------------- /Update/wata_tips_23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_23.txt -------------------------------------------------------------------------------- /Update/wata_tips_24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/wata_tips_24.txt -------------------------------------------------------------------------------- /Update/zomake_02_vm00_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zomake_02_vm00_n01.txt -------------------------------------------------------------------------------- /Update/zomake_02_vm0x_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zomake_02_vm0x_n01.txt -------------------------------------------------------------------------------- /Update/zwata_001_vm00_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_001_vm00_n01.txt -------------------------------------------------------------------------------- /Update/zwata_001_vm0x_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_001_vm0x_n01.txt -------------------------------------------------------------------------------- /Update/zwata_002_vm00_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_002_vm00_n01.txt -------------------------------------------------------------------------------- /Update/zwata_002_vm00_n02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_002_vm00_n02.txt -------------------------------------------------------------------------------- /Update/zwata_002_vm0x_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_002_vm0x_n01.txt -------------------------------------------------------------------------------- /Update/zwata_002_vm0x_n02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_002_vm0x_n02.txt -------------------------------------------------------------------------------- /Update/zwata_003_vm00_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_003_vm00_n01.txt -------------------------------------------------------------------------------- /Update/zwata_003_vm0x_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_003_vm0x_n01.txt -------------------------------------------------------------------------------- /Update/zwata_004_vm00_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_004_vm00_n01.txt -------------------------------------------------------------------------------- /Update/zwata_004_vm0x_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_004_vm0x_n01.txt -------------------------------------------------------------------------------- /Update/zwata_005_vm00_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_005_vm00_n01.txt -------------------------------------------------------------------------------- /Update/zwata_005_vm0x_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_005_vm0x_n01.txt -------------------------------------------------------------------------------- /Update/zwata_007_vm00_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_007_vm00_n01.txt -------------------------------------------------------------------------------- /Update/zwata_007_vm0x_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_007_vm0x_n01.txt -------------------------------------------------------------------------------- /Update/zwata_008_vm00_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_008_vm00_n01.txt -------------------------------------------------------------------------------- /Update/zwata_008_vm00_n02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_008_vm00_n02.txt -------------------------------------------------------------------------------- /Update/zwata_008_vm0x_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_008_vm0x_n01.txt -------------------------------------------------------------------------------- /Update/zwata_008_vm0x_n02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_008_vm0x_n02.txt -------------------------------------------------------------------------------- /Update/zwata_009_02_vm00_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_009_02_vm00_n01.txt -------------------------------------------------------------------------------- /Update/zwata_009_02_vm0x_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_009_02_vm0x_n01.txt -------------------------------------------------------------------------------- /Update/zwata_009_vm00_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_009_vm00_n01.txt -------------------------------------------------------------------------------- /Update/zwata_009_vm0x_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_009_vm0x_n01.txt -------------------------------------------------------------------------------- /Update/zwata_00x_vm00_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_00x_vm00_n01.txt -------------------------------------------------------------------------------- /Update/zwata_010_04_vm00_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_010_04_vm00_n01.txt -------------------------------------------------------------------------------- /Update/zwata_010_04_vm0x_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_010_04_vm0x_n01.txt -------------------------------------------------------------------------------- /Update/zwata_010_vm00_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_010_vm00_n01.txt -------------------------------------------------------------------------------- /Update/zwata_010_vm0x_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_010_vm0x_n01.txt -------------------------------------------------------------------------------- /Update/zwata_011_02_vm00_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_011_02_vm00_n01.txt -------------------------------------------------------------------------------- /Update/zwata_011_02_vm0x_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_011_02_vm0x_n01.txt -------------------------------------------------------------------------------- /Update/zwata_012_03_vm00_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_012_03_vm00_n01.txt -------------------------------------------------------------------------------- /Update/zwata_012_03_vm0x_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_012_03_vm0x_n01.txt -------------------------------------------------------------------------------- /Update/zwata_ep_02_vm00_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_ep_02_vm00_n01.txt -------------------------------------------------------------------------------- /Update/zwata_ep_02_vm0x_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_ep_02_vm0x_n01.txt -------------------------------------------------------------------------------- /Update/zwata_tips_05_vm00_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_tips_05_vm00_n01.txt -------------------------------------------------------------------------------- /Update/zwata_tips_05_vm0x_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_tips_05_vm0x_n01.txt -------------------------------------------------------------------------------- /Update/zwata_tips_10_vm00_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_tips_10_vm00_n01.txt -------------------------------------------------------------------------------- /Update/zwata_tips_10_vm0x_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_tips_10_vm0x_n01.txt -------------------------------------------------------------------------------- /Update/zwata_tips_13_vm00_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_tips_13_vm00_n01.txt -------------------------------------------------------------------------------- /Update/zwata_tips_13_vm0x_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_tips_13_vm0x_n01.txt -------------------------------------------------------------------------------- /Update/zwata_tips_24_vm00_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_tips_24_vm00_n01.txt -------------------------------------------------------------------------------- /Update/zwata_tips_24_vm0x_n01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/Update/zwata_tips_24_vm0x_n01.txt -------------------------------------------------------------------------------- /tips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/tips.json -------------------------------------------------------------------------------- /voice/ps2/03/130300394.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/voice/ps2/03/130300394.ogg -------------------------------------------------------------------------------- /voice/ps2/03/130300404.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/voice/ps2/03/130300404.ogg -------------------------------------------------------------------------------- /voice/ps2/03/130300405.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/voice/ps2/03/130300405.ogg -------------------------------------------------------------------------------- /voice/ps3/s02/02/130200583.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/voice/ps3/s02/02/130200583.ogg -------------------------------------------------------------------------------- /voice/ps3/s02/02/130200584.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/voice/ps3/s02/02/130200584.ogg -------------------------------------------------------------------------------- /voice/ps3/s02/02/130200585.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/voice/ps3/s02/02/130200585.ogg -------------------------------------------------------------------------------- /voice/ps3/s19/03/500300196.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/07th-mod/watanagashi/HEAD/voice/ps3/s19/03/500300196.ogg --------------------------------------------------------------------------------