commit e8d5b518044501561a7bd552e78141071d4ca4e9 Author: Dazed Date: Wed Nov 22 10:52:14 2023 -0600 Initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..85117dc --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +# Ignore all files +*.* + +# Except +!*.json +!*.js +!*.zip +!*.7z +!*.csv +!*.ks +!.gitignore +!srp.pac +!README.md + +# Images diff --git a/README.md b/README.md new file mode 100644 index 0000000..3ba175d --- /dev/null +++ b/README.md @@ -0,0 +1,49 @@ +# Apply Patch +1. Click Code +2. Click Download ZIP +3. Extract to game folder and Replace All. + +# How To Contribute +TLDR 3 steps. + + Fork the repository. + Make the changes. + Submit a pull request to the project owner. + +If everything looks good and doesn't break things I'll merge it in. + +Longer Version: + +Things that are needed: +* [VSCode](https://code.visualstudio.com/) Make sure you check all the boxes for context menus. ![image](https://github.com/DazedMTL/Dungeon-With-Girl/assets/96628874/7a84b624-32fe-4845-a0f6-2b9f39795070) +* The Game +* [Git](https://git-scm.com/downloads) (Use the default for everything. Just keep clicking Next) +* Motivation to learn + +Installation: +1. Fork the repo using the fork button at the top. Click Code > HTTPS > Copy URL. +2. Right click on the game folder and click 'Open with VSCode' (Shift+Right_Click if you are on Windows 11) +3. Click on the Source Control Button and click initialize repository. + +![image](https://github.com/DazedMTL/Dungeon-With-Girl/assets/96628874/61e818e6-11f9-450d-9d7d-263d109dbf56) + +4. At the top click on Terminal > New Terminal. Enter the following: `git clone [URL_YOU_COPIED_ABOVE]`. +5. Copy the contents of the new folder created with git clone into the game folder and replace all. +6. Your source control menu should be good to go and look like this. + +![image](https://github.com/DazedMTL/Dungeon-With-Girl/assets/96628874/c19787a0-172d-4a08-a37a-e3b56e70e86a) + +Now you are all setup, all you need to do is play the game and look for any changes that need to be made. Stuff like spelling errors, wrong names, inconsistencies, spacing issues, etc. + +7. Use the FIND functionality to search for what you are trying to fix. For example if a character's name is wrong, type that into the search menu and start looking, then make the change. Try not to mess with any scripts or variables you might see. + +![image](https://github.com/DazedMTL/Dungeon-With-Girl/assets/96628874/589eccaf-7f86-43f7-a917-7e6e477b381a) + +8. After you are satisfied with your changes it's time to put in a PR. Go to source control to see all your changes. Add a message and click the `Commit` button to save them all. + +![image](https://github.com/DazedMTL/Dungeon-With-Girl/assets/96628874/a9a8973b-bc01-4184-bea9-63a925d961a2) + +8. Click Sync to push your changes to your fork. Now all that's left is to put in a pull request. +9. Go to Pull Requests > New Pull Requests. Look at the arrow, your fork should be pointing to the original repo (mine). Add in details on what you fixed and Submit. If everything looks good I'll merge it in and you would have successfully contributed. + +Got questions? Just shoot me a message, more than happy to walk you through any of the tools. diff --git a/data/brand/brand.ks b/data/brand/brand.ks new file mode 100644 index 0000000..de8da65 Binary files /dev/null and b/data/brand/brand.ks differ diff --git a/data/map/actinit.ks b/data/map/actinit.ks new file mode 100644 index 0000000..f5f222a Binary files /dev/null and b/data/map/actinit.ks differ diff --git a/data/map/g5s00状態1.ks b/data/map/g5s00状態1.ks new file mode 100644 index 0000000..76442cd Binary files /dev/null and b/data/map/g5s00状態1.ks differ diff --git a/data/map/g5s00状態2.ks b/data/map/g5s00状態2.ks new file mode 100644 index 0000000..f7e02c7 Binary files /dev/null and b/data/map/g5s00状態2.ks differ diff --git a/data/map/g5s00状態2B.ks b/data/map/g5s00状態2B.ks new file mode 100644 index 0000000..4a663a1 Binary files /dev/null and b/data/map/g5s00状態2B.ks differ diff --git a/data/map/g5s00状態3.ks b/data/map/g5s00状態3.ks new file mode 100644 index 0000000..92cf17e Binary files /dev/null and b/data/map/g5s00状態3.ks differ diff --git a/data/map/g5s00状態4.ks b/data/map/g5s00状態4.ks new file mode 100644 index 0000000..b1161a6 Binary files /dev/null and b/data/map/g5s00状態4.ks differ diff --git a/data/map/g5s00状態5.ks b/data/map/g5s00状態5.ks new file mode 100644 index 0000000..76732b2 Binary files /dev/null and b/data/map/g5s00状態5.ks differ diff --git a/data/map/g5s01状態A1.ks b/data/map/g5s01状態A1.ks new file mode 100644 index 0000000..4a5b98c Binary files /dev/null and b/data/map/g5s01状態A1.ks differ diff --git a/data/map/g5s01状態A2.ks b/data/map/g5s01状態A2.ks new file mode 100644 index 0000000..eb8d355 Binary files /dev/null and b/data/map/g5s01状態A2.ks differ diff --git a/data/map/g5s01状態A3.ks b/data/map/g5s01状態A3.ks new file mode 100644 index 0000000..e078bbb Binary files /dev/null and b/data/map/g5s01状態A3.ks differ diff --git a/data/map/g5s01状態B1.ks b/data/map/g5s01状態B1.ks new file mode 100644 index 0000000..611d37b Binary files /dev/null and b/data/map/g5s01状態B1.ks differ diff --git a/data/map/g5s01状態B2.ks b/data/map/g5s01状態B2.ks new file mode 100644 index 0000000..4f4075a Binary files /dev/null and b/data/map/g5s01状態B2.ks differ diff --git a/data/map/g5s01状態C1.ks b/data/map/g5s01状態C1.ks new file mode 100644 index 0000000..b54dc03 Binary files /dev/null and b/data/map/g5s01状態C1.ks differ diff --git a/data/map/g5s01状態C2.ks b/data/map/g5s01状態C2.ks new file mode 100644 index 0000000..fd2bed8 Binary files /dev/null and b/data/map/g5s01状態C2.ks differ diff --git a/data/map/g5s01状態C3.ks b/data/map/g5s01状態C3.ks new file mode 100644 index 0000000..83e25b0 Binary files /dev/null and b/data/map/g5s01状態C3.ks differ diff --git a/data/map/g5s02状態A1.ks b/data/map/g5s02状態A1.ks new file mode 100644 index 0000000..5071a1c Binary files /dev/null and b/data/map/g5s02状態A1.ks differ diff --git a/data/map/g5s02状態A2.ks b/data/map/g5s02状態A2.ks new file mode 100644 index 0000000..800c0de Binary files /dev/null and b/data/map/g5s02状態A2.ks differ diff --git a/data/map/g5s02状態A3.ks b/data/map/g5s02状態A3.ks new file mode 100644 index 0000000..f29c409 Binary files /dev/null and b/data/map/g5s02状態A3.ks differ diff --git a/data/map/g5s02状態A4.ks b/data/map/g5s02状態A4.ks new file mode 100644 index 0000000..0dbb248 Binary files /dev/null and b/data/map/g5s02状態A4.ks differ diff --git a/data/map/g5s02状態A5.ks b/data/map/g5s02状態A5.ks new file mode 100644 index 0000000..d52ff3b Binary files /dev/null and b/data/map/g5s02状態A5.ks differ diff --git a/data/map/g5s02状態A6.ks b/data/map/g5s02状態A6.ks new file mode 100644 index 0000000..8e4f2ca Binary files /dev/null and b/data/map/g5s02状態A6.ks differ diff --git a/data/map/g5s02状態B1.ks b/data/map/g5s02状態B1.ks new file mode 100644 index 0000000..df5c34c Binary files /dev/null and b/data/map/g5s02状態B1.ks differ diff --git a/data/map/g5s02状態B2.ks b/data/map/g5s02状態B2.ks new file mode 100644 index 0000000..968f39e Binary files /dev/null and b/data/map/g5s02状態B2.ks differ diff --git a/data/map/g5s02状態B3.ks b/data/map/g5s02状態B3.ks new file mode 100644 index 0000000..ecedc4b Binary files /dev/null and b/data/map/g5s02状態B3.ks differ diff --git a/data/map/g5s03状態A1.ks b/data/map/g5s03状態A1.ks new file mode 100644 index 0000000..1d937ae Binary files /dev/null and b/data/map/g5s03状態A1.ks differ diff --git a/data/map/g5s03状態A1B.ks b/data/map/g5s03状態A1B.ks new file mode 100644 index 0000000..ab464f7 Binary files /dev/null and b/data/map/g5s03状態A1B.ks differ diff --git a/data/map/g5s03状態A2.ks b/data/map/g5s03状態A2.ks new file mode 100644 index 0000000..44a537a Binary files /dev/null and b/data/map/g5s03状態A2.ks differ diff --git a/data/map/g5s03状態A3.ks b/data/map/g5s03状態A3.ks new file mode 100644 index 0000000..3488981 Binary files /dev/null and b/data/map/g5s03状態A3.ks differ diff --git a/data/map/g5s03状態A4.ks b/data/map/g5s03状態A4.ks new file mode 100644 index 0000000..3fb2382 Binary files /dev/null and b/data/map/g5s03状態A4.ks differ diff --git a/data/map/g5s03状態A5.ks b/data/map/g5s03状態A5.ks new file mode 100644 index 0000000..a77dd1e Binary files /dev/null and b/data/map/g5s03状態A5.ks differ diff --git a/data/map/g5s03状態A6.ks b/data/map/g5s03状態A6.ks new file mode 100644 index 0000000..4a41a62 Binary files /dev/null and b/data/map/g5s03状態A6.ks differ diff --git a/data/map/g5s03状態B1.ks b/data/map/g5s03状態B1.ks new file mode 100644 index 0000000..a9a9f3d Binary files /dev/null and b/data/map/g5s03状態B1.ks differ diff --git a/data/map/g5s03状態B2.ks b/data/map/g5s03状態B2.ks new file mode 100644 index 0000000..a340883 Binary files /dev/null and b/data/map/g5s03状態B2.ks differ diff --git a/data/map/g5s03状態B3.ks b/data/map/g5s03状態B3.ks new file mode 100644 index 0000000..17812b9 Binary files /dev/null and b/data/map/g5s03状態B3.ks differ diff --git a/data/map/g5s03状態B4.ks b/data/map/g5s03状態B4.ks new file mode 100644 index 0000000..f2cec20 Binary files /dev/null and b/data/map/g5s03状態B4.ks differ diff --git a/data/map/g5s04状態A0.ks b/data/map/g5s04状態A0.ks new file mode 100644 index 0000000..7ac011b Binary files /dev/null and b/data/map/g5s04状態A0.ks differ diff --git a/data/map/g5s04状態A1.ks b/data/map/g5s04状態A1.ks new file mode 100644 index 0000000..4d75567 Binary files /dev/null and b/data/map/g5s04状態A1.ks differ diff --git a/data/map/g5s04状態A2.ks b/data/map/g5s04状態A2.ks new file mode 100644 index 0000000..9a60df2 Binary files /dev/null and b/data/map/g5s04状態A2.ks differ diff --git a/data/map/g5s04状態A3.ks b/data/map/g5s04状態A3.ks new file mode 100644 index 0000000..7d88c9e Binary files /dev/null and b/data/map/g5s04状態A3.ks differ diff --git a/data/map/g5s04状態A4.ks b/data/map/g5s04状態A4.ks new file mode 100644 index 0000000..97024d1 Binary files /dev/null and b/data/map/g5s04状態A4.ks differ diff --git a/data/map/g5s04状態A5.ks b/data/map/g5s04状態A5.ks new file mode 100644 index 0000000..7799350 Binary files /dev/null and b/data/map/g5s04状態A5.ks differ diff --git a/data/map/g5s04状態A6.ks b/data/map/g5s04状態A6.ks new file mode 100644 index 0000000..7d996c2 Binary files /dev/null and b/data/map/g5s04状態A6.ks differ diff --git a/data/map/g5s04状態A7.ks b/data/map/g5s04状態A7.ks new file mode 100644 index 0000000..010ed3c Binary files /dev/null and b/data/map/g5s04状態A7.ks differ diff --git a/data/map/g5s04状態A8.ks b/data/map/g5s04状態A8.ks new file mode 100644 index 0000000..68fef22 Binary files /dev/null and b/data/map/g5s04状態A8.ks differ diff --git a/data/map/g5s04状態B7.ks b/data/map/g5s04状態B7.ks new file mode 100644 index 0000000..494590c Binary files /dev/null and b/data/map/g5s04状態B7.ks differ diff --git a/data/map/g5s05状態A1.ks b/data/map/g5s05状態A1.ks new file mode 100644 index 0000000..f7860a5 Binary files /dev/null and b/data/map/g5s05状態A1.ks differ diff --git a/data/map/g5s05状態A2.ks b/data/map/g5s05状態A2.ks new file mode 100644 index 0000000..18097cd Binary files /dev/null and b/data/map/g5s05状態A2.ks differ diff --git a/data/map/g5s05状態A2B.ks b/data/map/g5s05状態A2B.ks new file mode 100644 index 0000000..f84924c Binary files /dev/null and b/data/map/g5s05状態A2B.ks differ diff --git a/data/map/g5s05状態A2C.ks b/data/map/g5s05状態A2C.ks new file mode 100644 index 0000000..6859ff1 Binary files /dev/null and b/data/map/g5s05状態A2C.ks differ diff --git a/data/map/g5s05状態A3.ks b/data/map/g5s05状態A3.ks new file mode 100644 index 0000000..43967a7 Binary files /dev/null and b/data/map/g5s05状態A3.ks differ diff --git a/data/map/g5s05状態A3B.ks b/data/map/g5s05状態A3B.ks new file mode 100644 index 0000000..0203dd7 Binary files /dev/null and b/data/map/g5s05状態A3B.ks differ diff --git a/data/map/g5s05状態A3C.ks b/data/map/g5s05状態A3C.ks new file mode 100644 index 0000000..5903193 Binary files /dev/null and b/data/map/g5s05状態A3C.ks differ diff --git a/data/map/g5s05状態A4.ks b/data/map/g5s05状態A4.ks new file mode 100644 index 0000000..fd66277 Binary files /dev/null and b/data/map/g5s05状態A4.ks differ diff --git a/data/map/g5s06状態A1.ks b/data/map/g5s06状態A1.ks new file mode 100644 index 0000000..ad5d7c4 Binary files /dev/null and b/data/map/g5s06状態A1.ks differ diff --git a/data/map/g5s06状態A2.ks b/data/map/g5s06状態A2.ks new file mode 100644 index 0000000..a5890cb Binary files /dev/null and b/data/map/g5s06状態A2.ks differ diff --git a/data/map/g5s06状態A2B.ks b/data/map/g5s06状態A2B.ks new file mode 100644 index 0000000..b172eb1 Binary files /dev/null and b/data/map/g5s06状態A2B.ks differ diff --git a/data/map/g5s06状態A3.ks b/data/map/g5s06状態A3.ks new file mode 100644 index 0000000..b42f3fe Binary files /dev/null and b/data/map/g5s06状態A3.ks differ diff --git a/data/map/g5s06状態A4.ks b/data/map/g5s06状態A4.ks new file mode 100644 index 0000000..b912dc6 Binary files /dev/null and b/data/map/g5s06状態A4.ks differ diff --git a/data/map/g5s06状態A5.ks b/data/map/g5s06状態A5.ks new file mode 100644 index 0000000..69c0207 Binary files /dev/null and b/data/map/g5s06状態A5.ks differ diff --git a/data/map/g5s07状態A1.ks b/data/map/g5s07状態A1.ks new file mode 100644 index 0000000..06e05a1 Binary files /dev/null and b/data/map/g5s07状態A1.ks differ diff --git a/data/map/g5s07状態A2.ks b/data/map/g5s07状態A2.ks new file mode 100644 index 0000000..09b9699 Binary files /dev/null and b/data/map/g5s07状態A2.ks differ diff --git a/data/map/g5s07状態A3.ks b/data/map/g5s07状態A3.ks new file mode 100644 index 0000000..6c3d4f6 Binary files /dev/null and b/data/map/g5s07状態A3.ks differ diff --git a/data/map/g5s07状態A4.ks b/data/map/g5s07状態A4.ks new file mode 100644 index 0000000..9bd469b Binary files /dev/null and b/data/map/g5s07状態A4.ks differ diff --git a/data/map/g5s07状態A4B.ks b/data/map/g5s07状態A4B.ks new file mode 100644 index 0000000..d61c792 Binary files /dev/null and b/data/map/g5s07状態A4B.ks differ diff --git a/data/map/g5s07状態A4C.ks b/data/map/g5s07状態A4C.ks new file mode 100644 index 0000000..89a5313 Binary files /dev/null and b/data/map/g5s07状態A4C.ks differ diff --git a/data/map/g5s07状態A4D.ks b/data/map/g5s07状態A4D.ks new file mode 100644 index 0000000..36bb2da Binary files /dev/null and b/data/map/g5s07状態A4D.ks differ diff --git a/data/map/g5s07状態A4E.ks b/data/map/g5s07状態A4E.ks new file mode 100644 index 0000000..6d9d96c Binary files /dev/null and b/data/map/g5s07状態A4E.ks differ diff --git a/data/map/g5s07状態A4F.ks b/data/map/g5s07状態A4F.ks new file mode 100644 index 0000000..749bd65 Binary files /dev/null and b/data/map/g5s07状態A4F.ks differ diff --git a/data/map/g5s07状態A5.ks b/data/map/g5s07状態A5.ks new file mode 100644 index 0000000..224f48b Binary files /dev/null and b/data/map/g5s07状態A5.ks differ diff --git a/data/map/g5s07状態A5B.ks b/data/map/g5s07状態A5B.ks new file mode 100644 index 0000000..dcce37f Binary files /dev/null and b/data/map/g5s07状態A5B.ks differ diff --git a/data/map/g5s07状態A5C.ks b/data/map/g5s07状態A5C.ks new file mode 100644 index 0000000..f83e1a8 Binary files /dev/null and b/data/map/g5s07状態A5C.ks differ diff --git a/data/map/g5s08状態A1.ks b/data/map/g5s08状態A1.ks new file mode 100644 index 0000000..e2e995e Binary files /dev/null and b/data/map/g5s08状態A1.ks differ diff --git a/data/map/g5s08状態A2.ks b/data/map/g5s08状態A2.ks new file mode 100644 index 0000000..77ab654 Binary files /dev/null and b/data/map/g5s08状態A2.ks differ diff --git a/data/map/g5s08状態A3.ks b/data/map/g5s08状態A3.ks new file mode 100644 index 0000000..c9fd289 Binary files /dev/null and b/data/map/g5s08状態A3.ks differ diff --git a/data/map/g5s08状態B1.ks b/data/map/g5s08状態B1.ks new file mode 100644 index 0000000..b781d6d Binary files /dev/null and b/data/map/g5s08状態B1.ks differ diff --git a/data/map/g5s08状態B1B.ks b/data/map/g5s08状態B1B.ks new file mode 100644 index 0000000..eee8b87 Binary files /dev/null and b/data/map/g5s08状態B1B.ks differ diff --git a/data/map/g5s08状態B2.ks b/data/map/g5s08状態B2.ks new file mode 100644 index 0000000..bfdd8e9 Binary files /dev/null and b/data/map/g5s08状態B2.ks differ diff --git a/data/map/g5s08状態B3.ks b/data/map/g5s08状態B3.ks new file mode 100644 index 0000000..64f5ef7 Binary files /dev/null and b/data/map/g5s08状態B3.ks differ diff --git a/data/map/g5s08状態B3B.ks b/data/map/g5s08状態B3B.ks new file mode 100644 index 0000000..7f304dc Binary files /dev/null and b/data/map/g5s08状態B3B.ks differ diff --git a/data/map/g5s08状態B4.ks b/data/map/g5s08状態B4.ks new file mode 100644 index 0000000..b1331fd Binary files /dev/null and b/data/map/g5s08状態B4.ks differ diff --git a/data/map/g5s09状態A1.ks b/data/map/g5s09状態A1.ks new file mode 100644 index 0000000..86fa4bf Binary files /dev/null and b/data/map/g5s09状態A1.ks differ diff --git a/data/map/g5s09状態A2.ks b/data/map/g5s09状態A2.ks new file mode 100644 index 0000000..0d4f90e Binary files /dev/null and b/data/map/g5s09状態A2.ks differ diff --git a/data/map/g5s09状態A3.ks b/data/map/g5s09状態A3.ks new file mode 100644 index 0000000..ad023e5 Binary files /dev/null and b/data/map/g5s09状態A3.ks differ diff --git a/data/map/g5s09状態A4.ks b/data/map/g5s09状態A4.ks new file mode 100644 index 0000000..d9abaeb Binary files /dev/null and b/data/map/g5s09状態A4.ks differ diff --git a/data/map/g5s09状態A4B.ks b/data/map/g5s09状態A4B.ks new file mode 100644 index 0000000..549624d Binary files /dev/null and b/data/map/g5s09状態A4B.ks differ diff --git a/data/map/g5s09状態A5.ks b/data/map/g5s09状態A5.ks new file mode 100644 index 0000000..e38c718 Binary files /dev/null and b/data/map/g5s09状態A5.ks differ diff --git a/data/map/g5s09状態A5B.ks b/data/map/g5s09状態A5B.ks new file mode 100644 index 0000000..9292be4 Binary files /dev/null and b/data/map/g5s09状態A5B.ks differ diff --git a/data/map/g5s09状態A5C.ks b/data/map/g5s09状態A5C.ks new file mode 100644 index 0000000..ce869f8 Binary files /dev/null and b/data/map/g5s09状態A5C.ks differ diff --git a/data/map/g5s09状態B1.ks b/data/map/g5s09状態B1.ks new file mode 100644 index 0000000..3d3d950 Binary files /dev/null and b/data/map/g5s09状態B1.ks differ diff --git a/data/map/g5s09状態B2.ks b/data/map/g5s09状態B2.ks new file mode 100644 index 0000000..6327452 Binary files /dev/null and b/data/map/g5s09状態B2.ks differ diff --git a/data/map/g5s09状態B3.ks b/data/map/g5s09状態B3.ks new file mode 100644 index 0000000..87806b2 Binary files /dev/null and b/data/map/g5s09状態B3.ks differ diff --git a/data/map/g5s10状態1.ks b/data/map/g5s10状態1.ks new file mode 100644 index 0000000..d84bed2 Binary files /dev/null and b/data/map/g5s10状態1.ks differ diff --git a/data/map/g5s10状態1B.ks b/data/map/g5s10状態1B.ks new file mode 100644 index 0000000..8a88bcc Binary files /dev/null and b/data/map/g5s10状態1B.ks differ diff --git a/data/map/g5s10状態1C.ks b/data/map/g5s10状態1C.ks new file mode 100644 index 0000000..7aade66 Binary files /dev/null and b/data/map/g5s10状態1C.ks differ diff --git a/data/map/g5s10状態1D.ks b/data/map/g5s10状態1D.ks new file mode 100644 index 0000000..9e30723 Binary files /dev/null and b/data/map/g5s10状態1D.ks differ diff --git a/data/map/g5s10状態2.ks b/data/map/g5s10状態2.ks new file mode 100644 index 0000000..28404cb Binary files /dev/null and b/data/map/g5s10状態2.ks differ diff --git a/data/map/g5s10状態3.ks b/data/map/g5s10状態3.ks new file mode 100644 index 0000000..bdd7f2e Binary files /dev/null and b/data/map/g5s10状態3.ks differ diff --git a/data/map/g5s10状態3B.ks b/data/map/g5s10状態3B.ks new file mode 100644 index 0000000..b9996a7 Binary files /dev/null and b/data/map/g5s10状態3B.ks differ diff --git a/data/map/g5s10状態3C.ks b/data/map/g5s10状態3C.ks new file mode 100644 index 0000000..6a3d26b Binary files /dev/null and b/data/map/g5s10状態3C.ks differ diff --git a/data/map/g5s10状態3D.ks b/data/map/g5s10状態3D.ks new file mode 100644 index 0000000..c008c62 Binary files /dev/null and b/data/map/g5s10状態3D.ks differ diff --git a/data/map/g5s10状態4.ks b/data/map/g5s10状態4.ks new file mode 100644 index 0000000..a1e7520 Binary files /dev/null and b/data/map/g5s10状態4.ks differ diff --git a/data/map/g5s10状態4B.ks b/data/map/g5s10状態4B.ks new file mode 100644 index 0000000..8f90a11 Binary files /dev/null and b/data/map/g5s10状態4B.ks differ diff --git a/data/map/g5s10状態5.ks b/data/map/g5s10状態5.ks new file mode 100644 index 0000000..75870d8 Binary files /dev/null and b/data/map/g5s10状態5.ks differ diff --git a/data/map/g5s11状態1.ks b/data/map/g5s11状態1.ks new file mode 100644 index 0000000..4119e3c Binary files /dev/null and b/data/map/g5s11状態1.ks differ diff --git a/data/map/g5s11状態2.ks b/data/map/g5s11状態2.ks new file mode 100644 index 0000000..c006760 Binary files /dev/null and b/data/map/g5s11状態2.ks differ diff --git a/data/map/g5s11状態2股間アップ股間アップ.ks b/data/map/g5s11状態2股間アップ股間アップ.ks new file mode 100644 index 0000000..1057307 Binary files /dev/null and b/data/map/g5s11状態2股間アップ股間アップ.ks differ diff --git a/data/map/g5s11状態2胸アップペニス.ks b/data/map/g5s11状態2胸アップペニス.ks new file mode 100644 index 0000000..b33a4b5 Binary files /dev/null and b/data/map/g5s11状態2胸アップペニス.ks differ diff --git a/data/map/g5s11状態2胸アップ胸アップ.ks b/data/map/g5s11状態2胸アップ胸アップ.ks new file mode 100644 index 0000000..7b24ac0 Binary files /dev/null and b/data/map/g5s11状態2胸アップ胸アップ.ks differ diff --git a/data/map/g5s11状態3.ks b/data/map/g5s11状態3.ks new file mode 100644 index 0000000..f84461a Binary files /dev/null and b/data/map/g5s11状態3.ks differ diff --git a/data/map/g5s11状態4.ks b/data/map/g5s11状態4.ks new file mode 100644 index 0000000..fbad17b Binary files /dev/null and b/data/map/g5s11状態4.ks differ diff --git a/data/map/g5s11状態5.ks b/data/map/g5s11状態5.ks new file mode 100644 index 0000000..c02b667 Binary files /dev/null and b/data/map/g5s11状態5.ks differ diff --git a/data/map/g5s11状態6.ks b/data/map/g5s11状態6.ks new file mode 100644 index 0000000..092d915 Binary files /dev/null and b/data/map/g5s11状態6.ks differ diff --git a/data/map/g5s11状態7.ks b/data/map/g5s11状態7.ks new file mode 100644 index 0000000..a54b9ba Binary files /dev/null and b/data/map/g5s11状態7.ks differ diff --git a/data/map/g5s11状態8.ks b/data/map/g5s11状態8.ks new file mode 100644 index 0000000..c208d1c Binary files /dev/null and b/data/map/g5s11状態8.ks differ diff --git a/data/map/g5s12状態1.ks b/data/map/g5s12状態1.ks new file mode 100644 index 0000000..0ad187d Binary files /dev/null and b/data/map/g5s12状態1.ks differ diff --git a/data/map/g5s12状態1B.ks b/data/map/g5s12状態1B.ks new file mode 100644 index 0000000..52f79f3 Binary files /dev/null and b/data/map/g5s12状態1B.ks differ diff --git a/data/map/g5s12状態2.ks b/data/map/g5s12状態2.ks new file mode 100644 index 0000000..8a4a518 Binary files /dev/null and b/data/map/g5s12状態2.ks differ diff --git a/data/map/g5s12状態2B.ks b/data/map/g5s12状態2B.ks new file mode 100644 index 0000000..3a0af25 Binary files /dev/null and b/data/map/g5s12状態2B.ks differ diff --git a/data/map/g5s12状態3.ks b/data/map/g5s12状態3.ks new file mode 100644 index 0000000..b8e0b56 Binary files /dev/null and b/data/map/g5s12状態3.ks differ diff --git a/data/map/g5s12状態4.ks b/data/map/g5s12状態4.ks new file mode 100644 index 0000000..6f4104d Binary files /dev/null and b/data/map/g5s12状態4.ks differ diff --git a/data/map/g5s12状態5.ks b/data/map/g5s12状態5.ks new file mode 100644 index 0000000..ab0f066 Binary files /dev/null and b/data/map/g5s12状態5.ks differ diff --git a/data/map/g5s13状態1.ks b/data/map/g5s13状態1.ks new file mode 100644 index 0000000..1b9c66b Binary files /dev/null and b/data/map/g5s13状態1.ks differ diff --git a/data/map/g5s13状態2.ks b/data/map/g5s13状態2.ks new file mode 100644 index 0000000..2753cda Binary files /dev/null and b/data/map/g5s13状態2.ks differ diff --git a/data/map/g5s13状態3.ks b/data/map/g5s13状態3.ks new file mode 100644 index 0000000..1854573 Binary files /dev/null and b/data/map/g5s13状態3.ks differ diff --git a/data/map/g5s13状態4.ks b/data/map/g5s13状態4.ks new file mode 100644 index 0000000..6923081 Binary files /dev/null and b/data/map/g5s13状態4.ks differ diff --git a/data/map/g5s13状態5.ks b/data/map/g5s13状態5.ks new file mode 100644 index 0000000..d8a8ce7 Binary files /dev/null and b/data/map/g5s13状態5.ks differ diff --git a/data/map/g5s13状態6.ks b/data/map/g5s13状態6.ks new file mode 100644 index 0000000..484a7b5 Binary files /dev/null and b/data/map/g5s13状態6.ks differ diff --git a/data/map/g5s13状態7.ks b/data/map/g5s13状態7.ks new file mode 100644 index 0000000..9269f61 Binary files /dev/null and b/data/map/g5s13状態7.ks differ diff --git a/data/map/g5s14状態A1.ks b/data/map/g5s14状態A1.ks new file mode 100644 index 0000000..71b889f Binary files /dev/null and b/data/map/g5s14状態A1.ks differ diff --git a/data/map/g5s14状態A2.ks b/data/map/g5s14状態A2.ks new file mode 100644 index 0000000..612a174 Binary files /dev/null and b/data/map/g5s14状態A2.ks differ diff --git a/data/map/g5s14状態B1.ks b/data/map/g5s14状態B1.ks new file mode 100644 index 0000000..019680e Binary files /dev/null and b/data/map/g5s14状態B1.ks differ diff --git a/data/map/g5s14状態C1.ks b/data/map/g5s14状態C1.ks new file mode 100644 index 0000000..662c64e Binary files /dev/null and b/data/map/g5s14状態C1.ks differ diff --git a/data/map/g5s14状態C2.ks b/data/map/g5s14状態C2.ks new file mode 100644 index 0000000..cad9d8c Binary files /dev/null and b/data/map/g5s14状態C2.ks differ diff --git a/data/map/g5s15状態A1.ks b/data/map/g5s15状態A1.ks new file mode 100644 index 0000000..0036d41 Binary files /dev/null and b/data/map/g5s15状態A1.ks differ diff --git a/data/map/g5s15状態A2.ks b/data/map/g5s15状態A2.ks new file mode 100644 index 0000000..bea5396 Binary files /dev/null and b/data/map/g5s15状態A2.ks differ diff --git a/data/map/g5s15状態A3.ks b/data/map/g5s15状態A3.ks new file mode 100644 index 0000000..00ad269 Binary files /dev/null and b/data/map/g5s15状態A3.ks differ diff --git a/data/map/g5s15状態A4.ks b/data/map/g5s15状態A4.ks new file mode 100644 index 0000000..317e244 Binary files /dev/null and b/data/map/g5s15状態A4.ks differ diff --git a/data/map/g5s15状態B1.ks b/data/map/g5s15状態B1.ks new file mode 100644 index 0000000..c8a6774 Binary files /dev/null and b/data/map/g5s15状態B1.ks differ diff --git a/data/map/g5s15状態B2.ks b/data/map/g5s15状態B2.ks new file mode 100644 index 0000000..4b76902 Binary files /dev/null and b/data/map/g5s15状態B2.ks differ diff --git a/data/map/g5s16状態1.ks b/data/map/g5s16状態1.ks new file mode 100644 index 0000000..d7be18f Binary files /dev/null and b/data/map/g5s16状態1.ks differ diff --git a/data/map/g5s16状態2.ks b/data/map/g5s16状態2.ks new file mode 100644 index 0000000..8536acd Binary files /dev/null and b/data/map/g5s16状態2.ks differ diff --git a/data/map/g5s16状態3.ks b/data/map/g5s16状態3.ks new file mode 100644 index 0000000..14fe825 Binary files /dev/null and b/data/map/g5s16状態3.ks differ diff --git a/data/map/g5s16状態4.ks b/data/map/g5s16状態4.ks new file mode 100644 index 0000000..ed2045d Binary files /dev/null and b/data/map/g5s16状態4.ks differ diff --git a/data/map/g5s16状態5.ks b/data/map/g5s16状態5.ks new file mode 100644 index 0000000..d698b66 Binary files /dev/null and b/data/map/g5s16状態5.ks differ diff --git a/data/map/g5s16状態6.ks b/data/map/g5s16状態6.ks new file mode 100644 index 0000000..8095e35 Binary files /dev/null and b/data/map/g5s16状態6.ks differ diff --git a/data/map/g5s16状態7.ks b/data/map/g5s16状態7.ks new file mode 100644 index 0000000..adf9365 Binary files /dev/null and b/data/map/g5s16状態7.ks differ diff --git a/data/scenario/alphamovie.ks b/data/scenario/alphamovie.ks new file mode 100644 index 0000000..d2b1d99 Binary files /dev/null and b/data/scenario/alphamovie.ks differ diff --git a/data/scenario/delayexec.ks b/data/scenario/delayexec.ks new file mode 100644 index 0000000..6d1cca8 Binary files /dev/null and b/data/scenario/delayexec.ks differ diff --git a/data/scenario/facer.ks b/data/scenario/facer.ks new file mode 100644 index 0000000..877a592 Binary files /dev/null and b/data/scenario/facer.ks differ diff --git a/data/scenario/gamestyle.ks b/data/scenario/gamestyle.ks new file mode 100644 index 0000000..9621e20 Binary files /dev/null and b/data/scenario/gamestyle.ks differ diff --git a/data/scenario/gfontword.ks b/data/scenario/gfontword.ks new file mode 100644 index 0000000..f369858 Binary files /dev/null and b/data/scenario/gfontword.ks differ diff --git a/data/scenario/itazura.ks b/data/scenario/itazura.ks new file mode 100644 index 0000000..bc6f5b0 Binary files /dev/null and b/data/scenario/itazura.ks differ diff --git a/data/scenario/kumaki_macro.ks b/data/scenario/kumaki_macro.ks new file mode 100644 index 0000000..9818b74 Binary files /dev/null and b/data/scenario/kumaki_macro.ks differ diff --git a/data/scenario/kumaki_macro_unused.ks b/data/scenario/kumaki_macro_unused.ks new file mode 100644 index 0000000..d2f40da Binary files /dev/null and b/data/scenario/kumaki_macro_unused.ks differ diff --git a/data/scenario/onClickOutOfPrimaryLayer.ks b/data/scenario/onClickOutOfPrimaryLayer.ks new file mode 100644 index 0000000..d46549d Binary files /dev/null and b/data/scenario/onClickOutOfPrimaryLayer.ks differ diff --git a/data/scenario/ruby.ks b/data/scenario/ruby.ks new file mode 100644 index 0000000..437323c Binary files /dev/null and b/data/scenario/ruby.ks differ diff --git a/data/scenario/systembutton.ks b/data/scenario/systembutton.ks new file mode 100644 index 0000000..089bcda Binary files /dev/null and b/data/scenario/systembutton.ks differ diff --git a/data/scenario/time_p.ks b/data/scenario/time_p.ks new file mode 100644 index 0000000..6f939e3 Binary files /dev/null and b/data/scenario/time_p.ks differ diff --git a/data/scenario/zzoom.ks b/data/scenario/zzoom.ks new file mode 100644 index 0000000..c3ed8e0 Binary files /dev/null and b/data/scenario/zzoom.ks differ diff --git a/data/test/test.ks b/data/test/test.ks new file mode 100644 index 0000000..2de4cca Binary files /dev/null and b/data/test/test.ks differ diff --git a/mako_append/actinit_append1.ks b/mako_append/actinit_append1.ks new file mode 100644 index 0000000..c0d302e Binary files /dev/null and b/mako_append/actinit_append1.ks differ diff --git a/mako_append/g5s17ルートAフィニッシュ.ks b/mako_append/g5s17ルートAフィニッシュ.ks new file mode 100644 index 0000000..440d09b Binary files /dev/null and b/mako_append/g5s17ルートAフィニッシュ.ks differ diff --git a/mako_append/g5s17ルートBフィニッシュ.ks b/mako_append/g5s17ルートBフィニッシュ.ks new file mode 100644 index 0000000..e13935b Binary files /dev/null and b/mako_append/g5s17ルートBフィニッシュ.ks differ diff --git a/mako_append/g5s17ルートCフィニッシュ.ks b/mako_append/g5s17ルートCフィニッシュ.ks new file mode 100644 index 0000000..a2df8fb Binary files /dev/null and b/mako_append/g5s17ルートCフィニッシュ.ks differ diff --git a/mako_append/g5s17ルートDフィニッシュ.ks b/mako_append/g5s17ルートDフィニッシュ.ks new file mode 100644 index 0000000..07d9f40 Binary files /dev/null and b/mako_append/g5s17ルートDフィニッシュ.ks differ diff --git a/mako_append/g5s17ルートEフィニッシュ.ks b/mako_append/g5s17ルートEフィニッシュ.ks new file mode 100644 index 0000000..e1c094e Binary files /dev/null and b/mako_append/g5s17ルートEフィニッシュ.ks differ diff --git a/mako_append/g5s17ルートFフィニッシュ.ks b/mako_append/g5s17ルートFフィニッシュ.ks new file mode 100644 index 0000000..58e6c85 Binary files /dev/null and b/mako_append/g5s17ルートFフィニッシュ.ks differ diff --git a/mako_append/g5s17ルートGフィニッシュ.ks b/mako_append/g5s17ルートGフィニッシュ.ks new file mode 100644 index 0000000..2440199 Binary files /dev/null and b/mako_append/g5s17ルートGフィニッシュ.ks differ diff --git a/mako_append/g5s17ルートHフィニッシュ.ks b/mako_append/g5s17ルートHフィニッシュ.ks new file mode 100644 index 0000000..102d336 Binary files /dev/null and b/mako_append/g5s17ルートHフィニッシュ.ks differ diff --git a/mako_append/g5s17ルートIフィニッシュ.ks b/mako_append/g5s17ルートIフィニッシュ.ks new file mode 100644 index 0000000..b8fadb0 Binary files /dev/null and b/mako_append/g5s17ルートIフィニッシュ.ks differ diff --git a/mako_append/g5s17状態A1.ks b/mako_append/g5s17状態A1.ks new file mode 100644 index 0000000..c129037 Binary files /dev/null and b/mako_append/g5s17状態A1.ks differ diff --git a/mako_append/g5s17状態A1まわりを見る0.ks b/mako_append/g5s17状態A1まわりを見る0.ks new file mode 100644 index 0000000..0d90fe9 Binary files /dev/null and b/mako_append/g5s17状態A1まわりを見る0.ks differ diff --git a/mako_append/g5s17状態A1B.ks b/mako_append/g5s17状態A1B.ks new file mode 100644 index 0000000..285d359 Binary files /dev/null and b/mako_append/g5s17状態A1B.ks differ diff --git a/mako_append/g5s17状態A1C.ks b/mako_append/g5s17状態A1C.ks new file mode 100644 index 0000000..0403d7c Binary files /dev/null and b/mako_append/g5s17状態A1C.ks differ diff --git a/mako_append/g5s17状態A2.ks b/mako_append/g5s17状態A2.ks new file mode 100644 index 0000000..d503060 Binary files /dev/null and b/mako_append/g5s17状態A2.ks differ diff --git a/mako_append/g5s17状態A3.ks b/mako_append/g5s17状態A3.ks new file mode 100644 index 0000000..64f6cfc Binary files /dev/null and b/mako_append/g5s17状態A3.ks differ diff --git a/mako_append/g5s17状態A4.ks b/mako_append/g5s17状態A4.ks new file mode 100644 index 0000000..b36f36b Binary files /dev/null and b/mako_append/g5s17状態A4.ks differ diff --git a/mako_append/g5s17状態A5.ks b/mako_append/g5s17状態A5.ks new file mode 100644 index 0000000..dc9afdb Binary files /dev/null and b/mako_append/g5s17状態A5.ks differ diff --git a/mako_append/g5s17状態A6.ks b/mako_append/g5s17状態A6.ks new file mode 100644 index 0000000..4e86298 Binary files /dev/null and b/mako_append/g5s17状態A6.ks differ diff --git a/mako_append/g5s17状態A7.ks b/mako_append/g5s17状態A7.ks new file mode 100644 index 0000000..eb3acb2 Binary files /dev/null and b/mako_append/g5s17状態A7.ks differ diff --git a/mako_append/g5s17状態A8.ks b/mako_append/g5s17状態A8.ks new file mode 100644 index 0000000..d944b46 Binary files /dev/null and b/mako_append/g5s17状態A8.ks differ diff --git a/mako_append/g5s17状態A9.ks b/mako_append/g5s17状態A9.ks new file mode 100644 index 0000000..3952c60 Binary files /dev/null and b/mako_append/g5s17状態A9.ks differ diff --git a/mako_append/g5s17状態B1.ks b/mako_append/g5s17状態B1.ks new file mode 100644 index 0000000..cfbbf79 Binary files /dev/null and b/mako_append/g5s17状態B1.ks differ diff --git a/mako_append/g5s17状態B10.ks b/mako_append/g5s17状態B10.ks new file mode 100644 index 0000000..9a36510 Binary files /dev/null and b/mako_append/g5s17状態B10.ks differ diff --git a/mako_append/g5s17状態B2.ks b/mako_append/g5s17状態B2.ks new file mode 100644 index 0000000..dff0b61 Binary files /dev/null and b/mako_append/g5s17状態B2.ks differ diff --git a/mako_append/g5s17状態B3.ks b/mako_append/g5s17状態B3.ks new file mode 100644 index 0000000..13d65b8 Binary files /dev/null and b/mako_append/g5s17状態B3.ks differ diff --git a/mako_append/g5s17状態B4.ks b/mako_append/g5s17状態B4.ks new file mode 100644 index 0000000..068367e Binary files /dev/null and b/mako_append/g5s17状態B4.ks differ diff --git a/mako_append/g5s17状態B5.ks b/mako_append/g5s17状態B5.ks new file mode 100644 index 0000000..b5c61a8 Binary files /dev/null and b/mako_append/g5s17状態B5.ks differ diff --git a/mako_append/g5s17状態B6.ks b/mako_append/g5s17状態B6.ks new file mode 100644 index 0000000..86d064b Binary files /dev/null and b/mako_append/g5s17状態B6.ks differ diff --git a/mako_append/g5s17状態B7.ks b/mako_append/g5s17状態B7.ks new file mode 100644 index 0000000..20300bb Binary files /dev/null and b/mako_append/g5s17状態B7.ks differ diff --git a/mako_append/g5s17状態B8.ks b/mako_append/g5s17状態B8.ks new file mode 100644 index 0000000..05796ea Binary files /dev/null and b/mako_append/g5s17状態B8.ks differ diff --git a/mako_append/g5s17状態B9.ks b/mako_append/g5s17状態B9.ks new file mode 100644 index 0000000..d05dde8 Binary files /dev/null and b/mako_append/g5s17状態B9.ks differ diff --git a/mako_append/g5s17状態C1.ks b/mako_append/g5s17状態C1.ks new file mode 100644 index 0000000..414ae3c Binary files /dev/null and b/mako_append/g5s17状態C1.ks differ diff --git a/mako_append/g5s17状態C2.ks b/mako_append/g5s17状態C2.ks new file mode 100644 index 0000000..a624d9b Binary files /dev/null and b/mako_append/g5s17状態C2.ks differ diff --git a/mako_append/g5s17状態C3.ks b/mako_append/g5s17状態C3.ks new file mode 100644 index 0000000..fd06460 Binary files /dev/null and b/mako_append/g5s17状態C3.ks differ diff --git a/mako_append/g5s17状態C4.ks b/mako_append/g5s17状態C4.ks new file mode 100644 index 0000000..a036c2d Binary files /dev/null and b/mako_append/g5s17状態C4.ks differ diff --git a/mako_append/g5s17状態C5.ks b/mako_append/g5s17状態C5.ks new file mode 100644 index 0000000..279f042 Binary files /dev/null and b/mako_append/g5s17状態C5.ks differ diff --git a/mako_append/g5s17状態C6.ks b/mako_append/g5s17状態C6.ks new file mode 100644 index 0000000..536d5d4 Binary files /dev/null and b/mako_append/g5s17状態C6.ks differ diff --git a/mako_append/g5s17状態C7.ks b/mako_append/g5s17状態C7.ks new file mode 100644 index 0000000..6efb7e8 Binary files /dev/null and b/mako_append/g5s17状態C7.ks differ diff --git a/mako_append/g5s17状態D1.ks b/mako_append/g5s17状態D1.ks new file mode 100644 index 0000000..63ff4dc Binary files /dev/null and b/mako_append/g5s17状態D1.ks differ diff --git a/mako_append/g5s17状態D2.ks b/mako_append/g5s17状態D2.ks new file mode 100644 index 0000000..fbd065f Binary files /dev/null and b/mako_append/g5s17状態D2.ks differ diff --git a/mako_append/g5s17状態D3.ks b/mako_append/g5s17状態D3.ks new file mode 100644 index 0000000..31513b9 Binary files /dev/null and b/mako_append/g5s17状態D3.ks differ diff --git a/mako_append/g5s17状態D4.ks b/mako_append/g5s17状態D4.ks new file mode 100644 index 0000000..c575d32 Binary files /dev/null and b/mako_append/g5s17状態D4.ks differ diff --git a/mako_append/g5s17状態D5.ks b/mako_append/g5s17状態D5.ks new file mode 100644 index 0000000..f5f320f Binary files /dev/null and b/mako_append/g5s17状態D5.ks differ diff --git a/mako_append/g5s17状態D6.ks b/mako_append/g5s17状態D6.ks new file mode 100644 index 0000000..2a3dd89 Binary files /dev/null and b/mako_append/g5s17状態D6.ks differ diff --git a/mako_append/g5s17状態D7.ks b/mako_append/g5s17状態D7.ks new file mode 100644 index 0000000..0d41871 Binary files /dev/null and b/mako_append/g5s17状態D7.ks differ diff --git a/mako_append/g5s17状態D8.ks b/mako_append/g5s17状態D8.ks new file mode 100644 index 0000000..a1858ce Binary files /dev/null and b/mako_append/g5s17状態D8.ks differ diff --git a/mako_append/g5s17状態E1.ks b/mako_append/g5s17状態E1.ks new file mode 100644 index 0000000..60f0e06 Binary files /dev/null and b/mako_append/g5s17状態E1.ks differ diff --git a/mako_append/g5s17状態E2.ks b/mako_append/g5s17状態E2.ks new file mode 100644 index 0000000..b50acb9 Binary files /dev/null and b/mako_append/g5s17状態E2.ks differ diff --git a/mako_append/g5s17状態E3.ks b/mako_append/g5s17状態E3.ks new file mode 100644 index 0000000..aac9d1a Binary files /dev/null and b/mako_append/g5s17状態E3.ks differ diff --git a/mako_append/g5s17状態E4.ks b/mako_append/g5s17状態E4.ks new file mode 100644 index 0000000..f65411c Binary files /dev/null and b/mako_append/g5s17状態E4.ks differ diff --git a/mako_append/g5s17状態F1.ks b/mako_append/g5s17状態F1.ks new file mode 100644 index 0000000..0e7d72e Binary files /dev/null and b/mako_append/g5s17状態F1.ks differ diff --git a/mako_append/g5s17状態F2.ks b/mako_append/g5s17状態F2.ks new file mode 100644 index 0000000..bdc4260 Binary files /dev/null and b/mako_append/g5s17状態F2.ks differ diff --git a/mako_append/g5s17状態F3.ks b/mako_append/g5s17状態F3.ks new file mode 100644 index 0000000..7e2d65a Binary files /dev/null and b/mako_append/g5s17状態F3.ks differ diff --git a/mako_append/g5s17状態F4.ks b/mako_append/g5s17状態F4.ks new file mode 100644 index 0000000..c844ee8 Binary files /dev/null and b/mako_append/g5s17状態F4.ks differ diff --git a/mako_append/g5s17状態G1.ks b/mako_append/g5s17状態G1.ks new file mode 100644 index 0000000..6962cad Binary files /dev/null and b/mako_append/g5s17状態G1.ks differ diff --git a/mako_append/g5s17状態G2.ks b/mako_append/g5s17状態G2.ks new file mode 100644 index 0000000..7825c42 Binary files /dev/null and b/mako_append/g5s17状態G2.ks differ diff --git a/mako_append/g5s17状態G3.ks b/mako_append/g5s17状態G3.ks new file mode 100644 index 0000000..b15aca6 Binary files /dev/null and b/mako_append/g5s17状態G3.ks differ diff --git a/mako_append/g5s17状態H1.ks b/mako_append/g5s17状態H1.ks new file mode 100644 index 0000000..c8dc259 Binary files /dev/null and b/mako_append/g5s17状態H1.ks differ diff --git a/mako_append/g5s17状態H2.ks b/mako_append/g5s17状態H2.ks new file mode 100644 index 0000000..0ec930f Binary files /dev/null and b/mako_append/g5s17状態H2.ks differ diff --git a/mako_append/g5s17状態H2B.ks b/mako_append/g5s17状態H2B.ks new file mode 100644 index 0000000..774065f Binary files /dev/null and b/mako_append/g5s17状態H2B.ks differ diff --git a/mako_append/g5s17状態H3.ks b/mako_append/g5s17状態H3.ks new file mode 100644 index 0000000..bf7e861 Binary files /dev/null and b/mako_append/g5s17状態H3.ks differ diff --git a/mako_append/g5s17状態H4.ks b/mako_append/g5s17状態H4.ks new file mode 100644 index 0000000..6cfaceb Binary files /dev/null and b/mako_append/g5s17状態H4.ks differ diff --git a/mako_append/g5s17状態H5.ks b/mako_append/g5s17状態H5.ks new file mode 100644 index 0000000..8ab27ec Binary files /dev/null and b/mako_append/g5s17状態H5.ks differ diff --git a/mako_append/g5s17状態H6.ks b/mako_append/g5s17状態H6.ks new file mode 100644 index 0000000..3501fba Binary files /dev/null and b/mako_append/g5s17状態H6.ks differ diff --git a/mako_append/g5s17状態H7.ks b/mako_append/g5s17状態H7.ks new file mode 100644 index 0000000..546faee Binary files /dev/null and b/mako_append/g5s17状態H7.ks differ diff --git a/mako_append/g5s17状態H8.ks b/mako_append/g5s17状態H8.ks new file mode 100644 index 0000000..9e21e66 Binary files /dev/null and b/mako_append/g5s17状態H8.ks differ diff --git a/mako_append/g5s17状態I1.ks b/mako_append/g5s17状態I1.ks new file mode 100644 index 0000000..de293f4 Binary files /dev/null and b/mako_append/g5s17状態I1.ks differ diff --git a/mako_append/g5s17状態I2.ks b/mako_append/g5s17状態I2.ks new file mode 100644 index 0000000..3d054cc Binary files /dev/null and b/mako_append/g5s17状態I2.ks differ diff --git a/mako_append/g5s17状態I3.ks b/mako_append/g5s17状態I3.ks new file mode 100644 index 0000000..99799e5 Binary files /dev/null and b/mako_append/g5s17状態I3.ks differ diff --git a/mako_append/g5s17状態I5.ks b/mako_append/g5s17状態I5.ks new file mode 100644 index 0000000..1550305 Binary files /dev/null and b/mako_append/g5s17状態I5.ks differ diff --git a/mako_append/g5s17状態I6.ks b/mako_append/g5s17状態I6.ks new file mode 100644 index 0000000..9b42299 Binary files /dev/null and b/mako_append/g5s17状態I6.ks differ diff --git a/mako_append/g5s17状態I7.ks b/mako_append/g5s17状態I7.ks new file mode 100644 index 0000000..e244616 Binary files /dev/null and b/mako_append/g5s17状態I7.ks differ diff --git a/mako_append/g5s17状態I8.ks b/mako_append/g5s17状態I8.ks new file mode 100644 index 0000000..8c19b71 Binary files /dev/null and b/mako_append/g5s17状態I8.ks differ diff --git a/mako_append/title.ks b/mako_append/title.ks new file mode 100644 index 0000000..c81d468 Binary files /dev/null and b/mako_append/title.ks differ diff --git a/mako_xp3/g5s00.ks b/mako_xp3/g5s00.ks new file mode 100644 index 0000000..4431a34 Binary files /dev/null and b/mako_xp3/g5s00.ks differ diff --git a/mako_xp3/g5s01.ks b/mako_xp3/g5s01.ks new file mode 100644 index 0000000..ac0b593 Binary files /dev/null and b/mako_xp3/g5s01.ks differ diff --git a/mako_xp3/g5s02.ks b/mako_xp3/g5s02.ks new file mode 100644 index 0000000..cfbf973 Binary files /dev/null and b/mako_xp3/g5s02.ks differ diff --git a/mako_xp3/g5s03.ks b/mako_xp3/g5s03.ks new file mode 100644 index 0000000..643ac57 Binary files /dev/null and b/mako_xp3/g5s03.ks differ diff --git a/mako_xp3/g5s04.ks b/mako_xp3/g5s04.ks new file mode 100644 index 0000000..6c6f6fa Binary files /dev/null and b/mako_xp3/g5s04.ks differ diff --git a/mako_xp3/g5s05.ks b/mako_xp3/g5s05.ks new file mode 100644 index 0000000..95bdf50 Binary files /dev/null and b/mako_xp3/g5s05.ks differ diff --git a/mako_xp3/g5s06.ks b/mako_xp3/g5s06.ks new file mode 100644 index 0000000..44b5d60 Binary files /dev/null and b/mako_xp3/g5s06.ks differ diff --git a/mako_xp3/g5s07.ks b/mako_xp3/g5s07.ks new file mode 100644 index 0000000..c18d72a Binary files /dev/null and b/mako_xp3/g5s07.ks differ diff --git a/mako_xp3/g5s08.ks b/mako_xp3/g5s08.ks new file mode 100644 index 0000000..c00ef5b Binary files /dev/null and b/mako_xp3/g5s08.ks differ diff --git a/mako_xp3/g5s09.ks b/mako_xp3/g5s09.ks new file mode 100644 index 0000000..508b744 Binary files /dev/null and b/mako_xp3/g5s09.ks differ diff --git a/mako_xp3/g5s10.ks b/mako_xp3/g5s10.ks new file mode 100644 index 0000000..f806212 Binary files /dev/null and b/mako_xp3/g5s10.ks differ diff --git a/mako_xp3/g5s11.ks b/mako_xp3/g5s11.ks new file mode 100644 index 0000000..e366be8 Binary files /dev/null and b/mako_xp3/g5s11.ks differ diff --git a/mako_xp3/g5s12.ks b/mako_xp3/g5s12.ks new file mode 100644 index 0000000..8c176de Binary files /dev/null and b/mako_xp3/g5s12.ks differ diff --git a/mako_xp3/g5s13.ks b/mako_xp3/g5s13.ks new file mode 100644 index 0000000..e340a62 Binary files /dev/null and b/mako_xp3/g5s13.ks differ diff --git a/mako_xp3/g5s14.ks b/mako_xp3/g5s14.ks new file mode 100644 index 0000000..981fc41 Binary files /dev/null and b/mako_xp3/g5s14.ks differ diff --git a/mako_xp3/g5s15.ks b/mako_xp3/g5s15.ks new file mode 100644 index 0000000..8e54c8f Binary files /dev/null and b/mako_xp3/g5s15.ks differ diff --git a/mako_xp3/g5s16.ks b/mako_xp3/g5s16.ks new file mode 100644 index 0000000..56ea5c2 Binary files /dev/null and b/mako_xp3/g5s16.ks differ diff --git a/mako_xp3/g5s99.ks b/mako_xp3/g5s99.ks new file mode 100644 index 0000000..423a712 Binary files /dev/null and b/mako_xp3/g5s99.ks differ diff --git a/mako_xp3/g5sMako.ks b/mako_xp3/g5sMako.ks new file mode 100644 index 0000000..da0c638 Binary files /dev/null and b/mako_xp3/g5sMako.ks differ diff --git a/mako_xp3/name.ks b/mako_xp3/name.ks new file mode 100644 index 0000000..c933920 Binary files /dev/null and b/mako_xp3/name.ks differ diff --git a/mako_xp3/novelsection.ks b/mako_xp3/novelsection.ks new file mode 100644 index 0000000..c1fe2aa Binary files /dev/null and b/mako_xp3/novelsection.ks differ diff --git a/tag b/tag new file mode 100644 index 0000000..c227083 --- /dev/null +++ b/tag @@ -0,0 +1 @@ +0 \ No newline at end of file