Initial Commit
This commit is contained in:
commit
02f773be66
303 changed files with 2543620 additions and 0 deletions
73
.gitignore
vendored
Normal file
73
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
# Ignore all files
|
||||
*.*
|
||||
|
||||
# File Types
|
||||
!*.mps
|
||||
!*.dat
|
||||
!*.json
|
||||
!*.txt
|
||||
!*.project
|
||||
!*.js
|
||||
!*.zip
|
||||
!*.7z
|
||||
!*.csv
|
||||
!*.ain
|
||||
!*.fnl
|
||||
!*.ks
|
||||
!*.tjs
|
||||
!*.yaml
|
||||
!*.rb
|
||||
!*.rvdata2
|
||||
|
||||
# Other Needed Files
|
||||
!.gitignore
|
||||
!README.md
|
||||
!patch-config.txt
|
||||
!GameUpdate*
|
||||
!patch*
|
||||
!Game.dat
|
||||
|
||||
# Ignore
|
||||
previous_patch_sha.txt
|
||||
kabe3_save.dat
|
||||
kabe3_system.dat
|
||||
psbpack.dat
|
||||
Save*
|
||||
|
||||
# Images
|
||||
!Action_parfect.png
|
||||
!Action_parfect_ss.png
|
||||
!IconSet.png
|
||||
!Title01_char_trial.png
|
||||
!Title02_char.png
|
||||
!BattlePic
|
||||
!Estatus
|
||||
!Event
|
||||
!Shop
|
||||
!LOGO.png
|
||||
!Enm_30_01.png
|
||||
!Enm_30_02.png
|
||||
!Enm_30_03.png
|
||||
!Enm_30_150_01.png
|
||||
!Enm_30_150_02.png
|
||||
!Enm_30_150_03.png
|
||||
!UI_enmDP.png_
|
||||
!UI_enmDP_s.png_
|
||||
!UI_enmHP.png_
|
||||
!UI_enmHP_s.png_
|
||||
!BG_HstatusB_win.png_
|
||||
!totalLv.png_
|
||||
!totalnumber_100.png_
|
||||
!C0_02.png_
|
||||
!C3_battle01.png_
|
||||
!CEPI_20.png_
|
||||
!CEPI_21.png_
|
||||
!CEPI_23.png_
|
||||
!CEx_memory.png_
|
||||
!Dungen00.png_
|
||||
!Dungen01.png_
|
||||
!Dungen02.png_
|
||||
!EV_ScreenHideL_ss.png_
|
||||
!EV_ScreenHideR_ss.png_
|
||||
!Actor9_shop.png_
|
||||
!LOGO.png_
|
||||
14
GameUpdate.bat
Normal file
14
GameUpdate.bat
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
@echo off
|
||||
setlocal
|
||||
|
||||
REM Copy GAMEUPDATE.bat to a new file
|
||||
copy patch.bat patch2.bat
|
||||
|
||||
REM Run the new file
|
||||
call patch2.bat
|
||||
|
||||
REM Delete the new file
|
||||
del patch2.bat
|
||||
|
||||
endlocal
|
||||
@echo on
|
||||
13
GameUpdate_linux.sh
Normal file
13
GameUpdate_linux.sh
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Enable error handling
|
||||
set -e
|
||||
|
||||
# Copy patch.bat to a new file
|
||||
cp patch.sh patch2.sh
|
||||
|
||||
# Run the new file
|
||||
bash patch2.sh
|
||||
|
||||
# Delete the new file
|
||||
rm patch2.sh
|
||||
91
README.md
Normal file
91
README.md
Normal file
|
|
@ -0,0 +1,91 @@
|
|||
# Apply Patch
|
||||
1. Click Code
|
||||
2. Click Download ZIP
|
||||
3. Extract to game folder and Replace All.
|
||||
|
||||
## Future Patching
|
||||
1. Run GAMEUPDATE.bat to auto patch.
|
||||
|
||||
# Troubleshooting
|
||||
**GAMEUPDATE.bat doesn't update and closes immediately**
|
||||
1. Make sure your path doesn't contain any Japanese characters or lots of whitespace.
|
||||
2. Make sure you actually have permissions in the folder
|
||||
|
||||
# Edit/Contribute
|
||||
TLDR 3 steps.
|
||||
|
||||
Fork the repository.
|
||||
Make the changes.
|
||||
Submit a merge request.
|
||||
|
||||
If everything looks good and doesn't break things I'll merge it in.
|
||||
|
||||
Longer Version:
|
||||
|
||||
# Required Software:
|
||||
* [VSCode](https://code.visualstudio.com/) Make sure you check all the boxes for context menus.
|
||||
* [Git](https://git-scm.com/downloads) (Use the default for everything. Just keep clicking Next)
|
||||
|
||||
# Guide to contributing
|
||||
|
||||
### 1. Fork the Repository
|
||||
- Go to the repository you want to fork.
|
||||
- Click the "Fork" button.
|
||||
|
||||
### 2. Clone Your Fork
|
||||
- Clone your forked repository to your local machine.
|
||||
```sh
|
||||
git clone https://gitgud.io/YOUR_USERNAME/REPO_NAME.git
|
||||
```
|
||||
|
||||
### 3. Make Your Changes (In VSCode)
|
||||
- Edit the files locally on your new branch using VSCode.
|
||||
- Add and commit your changes.
|
||||
```sh
|
||||
git add .
|
||||
git commit -m "Description of your changes"
|
||||
```
|
||||
|
||||
### 4. Push Your Changes
|
||||
- Push your changes to your fork on GitGud.io.
|
||||
```sh
|
||||
git push origin your-feature-branch
|
||||
```
|
||||
|
||||
### 5. Create a Merge Request
|
||||
- Go to your fork on GitGud.io.
|
||||
- Click on "Merge Requests" in the sidebar.
|
||||
- Click the "New merge request" button.
|
||||
- Select the branch you made changes to and the target project (the original repo).
|
||||
- Provide a title and description for your merge request and submit it.
|
||||
|
||||
---
|
||||
|
||||
## Example
|
||||
|
||||
Assuming you want to fork a repository named `example-project`:
|
||||
|
||||
### 1. Fork the Repo
|
||||
- Navigate to `https://gitgud.io/original_user/example-project` and click "Fork".
|
||||
|
||||
### 2. Clone Your Fork
|
||||
```sh
|
||||
git clone https://gitgud.io/YOUR_USERNAME/example-project.git
|
||||
```
|
||||
|
||||
### 3. Make Changes and Commit
|
||||
```sh
|
||||
# Make changes to the files
|
||||
git add .
|
||||
git commit -m "Add new feature to example project"
|
||||
```
|
||||
|
||||
### 4. Push Changes
|
||||
```sh
|
||||
git push origin add-new-feature
|
||||
```
|
||||
|
||||
### 5. Create a Merge Request
|
||||
- Go to `https://gitgud.io/YOUR_USERNAME/example-project/merge_requests` and click on "New merge request".
|
||||
- Choose the source branch `add-new-feature` and target branch (default: `main` or `master`).
|
||||
- Fill in the details and submit the merge request.
|
||||
107
Readme.txt
Normal file
107
Readme.txt
Normal file
|
|
@ -0,0 +1,107 @@
|
|||
この度は『カーヴァさんちの楽しい闘病生活UC』をご購入いただきありがとうございます。
|
||||
|
||||
【起動方法】
|
||||
フォルダ内にあるgame.exeをダブルクリックで起動します。
|
||||
|
||||
【操作方法】
|
||||
■移動 十字キー、左クリック
|
||||
■決定 enter、space、左クリック
|
||||
■メニュー、キャンセル x、右クリック
|
||||
■メッセージスキップ control
|
||||
■ウィンドウ消去 右クリック
|
||||
■バックログ pageup
|
||||
|
||||
|
||||
【禁止事項】
|
||||
本ゲームは性的な描写が含まれているので、18歳未満の方はプレイできません。
|
||||
本ゲーム、ならびに使用した素材の無断転載は禁止です。
|
||||
|
||||
|
||||
【素材製作者様】(敬称略)
|
||||
|
||||
■BGMなど
|
||||
・ポケットサウンド
|
||||
https://pocket-se.info/
|
||||
・On-Jin ~音人~
|
||||
https://on-jin.com/
|
||||
|
||||
・魔王魂
|
||||
https://maou.audio/
|
||||
|
||||
・DOVA-SYNDROME
|
||||
https://dova-s.jp/
|
||||
|
||||
・MusMus
|
||||
https://musmus.main.jp/
|
||||
|
||||
・PeriTune
|
||||
https://peritune.com/
|
||||
|
||||
・ノタの森
|
||||
http://notanomori.net/
|
||||
|
||||
・OtoLogic
|
||||
https://otologic.jp/
|
||||
|
||||
・サウンドスケープライブラリ
|
||||
http://soundscape.xyz/
|
||||
|
||||
・Pincree
|
||||
https://pincree.jp/
|
||||
|
||||
・フリーBGMおとのおと 前田哲
|
||||
https://www.youtube.com/@satoshi_maeda-oto_note
|
||||
https://www.oto-note.net
|
||||
|
||||
■マップチップ
|
||||
・《お豆腐村》https://pixiv.me/otofumura
|
||||
|
||||
・コミュ将
|
||||
https://comshou.wixsite.com/com-sho
|
||||
|
||||
・BIT/O
|
||||
https://bit-orchard.hatenablog.com/
|
||||
|
||||
・ハト畜生
|
||||
https://www.dlsite.com/home/circle/profile/=/maker_id/RG51773.html
|
||||
|
||||
■キャラチップ
|
||||
・KY-Materials
|
||||
https://material.syrupple.com/
|
||||
|
||||
・エタナラ
|
||||
https://etanara.com
|
||||
|
||||
・BB ENTERTAINMENT
|
||||
http://bb-entertainment-blog.blogspot.jp/
|
||||
|
||||
・ブーソン
|
||||
https://boosungx.booth.pm/
|
||||
|
||||
・ジークンソフト
|
||||
https://g-kunsoft.booth.pm/
|
||||
|
||||
■プラグイン
|
||||
・トリアコンタン
|
||||
https://triacontane.blogspot.com/
|
||||
|
||||
・tomoaky
|
||||
https://twitter.com/tomoaky
|
||||
|
||||
|
||||
・うたかたの夢跡
|
||||
https://www.utakata-no-yume.net/
|
||||
|
||||
・まっつUP
|
||||
https://github.com/mattuup/RPGMakerMZ
|
||||
|
||||
・DarkPlasma
|
||||
https://elleonard.github.io/DarkPlasma-MZ-Plugins/index.html
|
||||
|
||||
・ツクール道中記
|
||||
https://mankind-games.blogspot.com/
|
||||
|
||||
|
||||
【製作者】
|
||||
神聖田中帝国
|
||||
https://ci-en.dlsite.com/creator/16770
|
||||
BIN
icudtl.dat
Normal file
BIN
icudtl.dat
Normal file
Binary file not shown.
12
package.json
Normal file
12
package.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"name": "",
|
||||
"main": "www/index.html",
|
||||
"js-flags": "--expose-gc",
|
||||
"window": {
|
||||
"title": "",
|
||||
"toolbar": false,
|
||||
"width": 816,
|
||||
"height": 624,
|
||||
"icon": "www/icon/icon.png"
|
||||
}
|
||||
}
|
||||
3
patch-config.txt
Normal file
3
patch-config.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
username=dazed-translations
|
||||
repo=sakura-gozen
|
||||
branch=main
|
||||
105
patch.bat
Normal file
105
patch.bat
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
@echo off
|
||||
setlocal EnableExtensions EnableDelayedExpansion
|
||||
|
||||
echo Checking for pwsh...
|
||||
set _my_shell=pwsh
|
||||
|
||||
REM Check if pwsh.exe exists
|
||||
where /q !_my_shell!
|
||||
if !errorlevel! neq 0 (
|
||||
echo pwsh not found. Falling back to powershell...
|
||||
REM If pwsh is not found, set to powershell
|
||||
set _my_shell=powershell
|
||||
|
||||
REM Check if powershell.exe exists
|
||||
echo Checking for powershell...
|
||||
where /q !_my_shell!
|
||||
if !errorlevel! neq 0 (
|
||||
echo.Error: Powershell not found!
|
||||
pause
|
||||
exit /B 1
|
||||
) else (
|
||||
echo powershell found.
|
||||
)
|
||||
) else (
|
||||
echo pwsh found.
|
||||
)
|
||||
|
||||
echo Using !_my_shell! for script execution.
|
||||
|
||||
REM Check if patch-config.txt exists
|
||||
if not exist patch-config.txt (
|
||||
echo "Config file (patch-config.txt) not found! Assuming no patching needed."
|
||||
pause
|
||||
exit /b
|
||||
)
|
||||
|
||||
REM Read configuration from file
|
||||
for /f "tokens=1,2 delims==" %%a in (patch-config.txt) do (
|
||||
if "%%a"=="username" set "username=%%b"
|
||||
if "%%a"=="repo" set "repo=%%b"
|
||||
if "%%a"=="branch" set "branch=%%b"
|
||||
)
|
||||
|
||||
REM Get the latest hash
|
||||
echo "Getting latest commit SHA hash"
|
||||
!_my_shell! -Command "(Invoke-RestMethod -Uri 'https://gitgud.io/api/v4/projects/%username%%%2F%repo%/repository/branches/%branch%').commit.id" > latest_patch_sha.txt
|
||||
|
||||
REM Read the latest SHA from the file
|
||||
set /p latest_patch_sha=<latest_patch_sha.txt
|
||||
|
||||
REM Check if previous_patch_sha.txt exists
|
||||
if not exist previous_patch_sha.txt (
|
||||
echo "Previous SHA hash not found!"
|
||||
echo "Assuming first time patching..."
|
||||
goto download_extract
|
||||
)
|
||||
|
||||
REM Read the stored SHA from previous check
|
||||
set /p previous_patch_sha=<previous_patch_sha.txt
|
||||
|
||||
REM Trim whitespace from SHA strings
|
||||
set "previous_patch_sha=%previous_patch_sha: =%"
|
||||
set "latest_patch_sha=%latest_patch_sha: =%"
|
||||
|
||||
REM Compare trimmed SHAs
|
||||
if "%latest_patch_sha%" neq "%previous_patch_sha%" (
|
||||
echo "Update found! Patching..."
|
||||
goto download_extract
|
||||
) else (
|
||||
echo "Patch is up to date."
|
||||
)
|
||||
|
||||
REM Delete latest_patch_sha.txt
|
||||
del latest_patch_sha.txt
|
||||
|
||||
endlocal
|
||||
pause
|
||||
exit /b
|
||||
|
||||
:download_extract
|
||||
REM Download zip file
|
||||
echo "Downloading latest patch..."
|
||||
!_my_shell! -Command "Invoke-WebRequest -Uri 'https://gitgud.io/%username%/%repo%/-/archive/%branch%/%repo%-%branch%.zip' -OutFile 'repo.zip'"
|
||||
if !errorlevel! neq 0 (
|
||||
pause
|
||||
exit /b
|
||||
)
|
||||
|
||||
REM Extract contents, overwriting conflicts
|
||||
echo "Extracting..."
|
||||
!_my_shell! -Command "Expand-Archive -Path '.\repo.zip' -DestinationPath '.' -Force"
|
||||
echo "Applying patch..."
|
||||
xcopy /s /e /y "%repo%-%branch%\*" "."
|
||||
|
||||
REM Clean up
|
||||
echo "Cleaning up..."
|
||||
del repo.zip
|
||||
rmdir /s /q "%repo%-%branch%"
|
||||
del latest_patch_sha.txt
|
||||
|
||||
REM Store latest SHA for next check
|
||||
echo %latest_patch_sha% > previous_patch_sha.txt
|
||||
endlocal
|
||||
pause
|
||||
exit /b
|
||||
74
patch.sh
Normal file
74
patch.sh
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
#!/bin/bash
|
||||
|
||||
check_dependency() {
|
||||
if ! command -v "$1" > /dev/null 2>&1; then
|
||||
echo "Error: '$1' is not installed. Please install it using 'pkg install $1'."
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
# Check for jq, unzip, and curl
|
||||
check_dependency jq
|
||||
check_dependency unzip
|
||||
check_dependency curl
|
||||
|
||||
CONFIG_FILE="patch-config.txt"
|
||||
|
||||
# Check if CONFIG_FILE exists
|
||||
if [ ! -f "$CONFIG_FILE" ]; then
|
||||
echo "Config file '$CONFIG_FILE' not found! Assuming no patching needed."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Convert line endings to Unix format
|
||||
sed -i 's/\r$//' "$CONFIG_FILE"
|
||||
|
||||
# Debug information
|
||||
echo "Current directory: $(pwd)"
|
||||
echo "Config file path: $(pwd)/$CONFIG_FILE"
|
||||
|
||||
# Read configuration from file
|
||||
. "$(pwd)/$CONFIG_FILE"
|
||||
|
||||
# Get the latest hash
|
||||
echo "Getting latest commit SHA hash"
|
||||
latest_patch_sha=$(curl -s "https://gitgud.io/api/v4/projects/$username%2F$repo/repository/branches/$branch" | jq -r '.commit.id')
|
||||
|
||||
download_extract() {
|
||||
# Download zip file
|
||||
echo "Downloading latest patch..."
|
||||
curl -sL "https://gitgud.io/$username/$repo/-/archive/$branch/$repo-$branch.zip" -o repo.zip
|
||||
|
||||
# Extract contents, overwriting conflicts
|
||||
echo "Extracting..."
|
||||
unzip -qo repo.zip
|
||||
|
||||
echo "Applying patch..."
|
||||
cp -r "$repo-$branch/"* .
|
||||
|
||||
echo "Cleaning up..."
|
||||
rm repo.zip
|
||||
rm -rf "$repo-$branch"
|
||||
rm -f latest_patch_sha.txt
|
||||
|
||||
# Store latest SHA for next check
|
||||
echo "$latest_patch_sha" > previous_patch_sha.txt
|
||||
}
|
||||
|
||||
# Check if previous_patch_sha.txt exists
|
||||
if [ ! -f previous_patch_sha.txt ]; then
|
||||
echo "Previous SHA hash not found!"
|
||||
echo "Assuming first time patching..."
|
||||
download_extract
|
||||
else
|
||||
# Read the stored SHA from previous check
|
||||
previous_patch_sha=$(cat previous_patch_sha.txt)
|
||||
|
||||
# Compare trimmed SHAs
|
||||
if [ "$latest_patch_sha" != "$previous_patch_sha" ]; then
|
||||
echo "Update found! Patching..."
|
||||
download_extract
|
||||
else
|
||||
echo "Patch is up to date."
|
||||
fi
|
||||
fi
|
||||
95
www/data/Actors.json
Normal file
95
www/data/Actors.json
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "syuzinkou",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "オレン",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"battlerName": "",
|
||||
"characterIndex": 3,
|
||||
"characterName": "hiroin",
|
||||
"classId": 2,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "リゼ",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"battlerName": "Actor3_8",
|
||||
"characterIndex": 7,
|
||||
"characterName": "Actor3",
|
||||
"classId": 3,
|
||||
"equips": [
|
||||
3,
|
||||
0,
|
||||
2,
|
||||
3,
|
||||
4
|
||||
],
|
||||
"faceIndex": 7,
|
||||
"faceName": "Actor3",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "マーシャ",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"battlerName": "Actor2_7",
|
||||
"characterIndex": 6,
|
||||
"characterName": "Actor2",
|
||||
"classId": 4,
|
||||
"equips": [
|
||||
4,
|
||||
0,
|
||||
2,
|
||||
3,
|
||||
4
|
||||
],
|
||||
"faceIndex": 6,
|
||||
"faceName": "Actor2",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "ルキウス",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
}
|
||||
]
|
||||
129762
www/data/Animations.json
Normal file
129762
www/data/Animations.json
Normal file
File diff suppressed because it is too large
Load diff
111
www/data/Armors.json
Normal file
111
www/data/Armors.json
Normal file
|
|
@ -0,0 +1,111 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"atypeId": 5,
|
||||
"description": "",
|
||||
"etypeId": 2,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 128,
|
||||
"name": "盾",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 300
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"atypeId": 1,
|
||||
"description": "",
|
||||
"etypeId": 3,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 130,
|
||||
"name": "帽子",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 300
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"atypeId": 1,
|
||||
"description": "",
|
||||
"etypeId": 4,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 135,
|
||||
"name": "服",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 300
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"atypeId": 1,
|
||||
"description": "",
|
||||
"etypeId": 5,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 145,
|
||||
"name": "指輪",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 300
|
||||
}
|
||||
]
|
||||
3523
www/data/Classes.json
Normal file
3523
www/data/Classes.json
Normal file
File diff suppressed because it is too large
Load diff
263446
www/data/CommonEvents.json
Normal file
263446
www/data/CommonEvents.json
Normal file
File diff suppressed because it is too large
Load diff
251
www/data/Enemies.json
Normal file
251
www/data/Enemies.json
Normal file
|
|
@ -0,0 +1,251 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Bat",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "こうもり",
|
||||
"note": "",
|
||||
"params": [
|
||||
200,
|
||||
0,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Slime",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "スライム",
|
||||
"note": "",
|
||||
"params": [
|
||||
250,
|
||||
0,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Orc",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "オーク",
|
||||
"note": "",
|
||||
"params": [
|
||||
300,
|
||||
0,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Minotaur",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "ミノタウロス",
|
||||
"note": "",
|
||||
"params": [
|
||||
500,
|
||||
0,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30
|
||||
]
|
||||
}
|
||||
]
|
||||
549
www/data/Items.json
Normal file
549
www/data/Items.json
Normal file
|
|
@ -0,0 +1,549 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "片手で操作できる撮影機器。取り外し可能な三脚付き。\nこれをリゼと一緒に寝取らせ相手へ貸し出そう。",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 244,
|
||||
"itypeId": 2,
|
||||
"name": "ビデオカメラ",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "ハプニングバー『一期一会』の会員カード。\nそれでは安心安全なハプニングをお楽しみください。",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 188,
|
||||
"itypeId": 2,
|
||||
"name": "会員証",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "手枷、足枷、アイマスクなどをまとめたスターターセット。\nこれひとつあれば女の子はもう身動きが出来ない。",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 84,
|
||||
"itypeId": 2,
|
||||
"name": "拘束セット",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 3,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "プレイ用の頑丈な革製首輪。リード付き。\nこれで淫らな牝犬に己の身分をわからせてやろう。",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 84,
|
||||
"itypeId": 2,
|
||||
"name": "首輪",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 3,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "アナルディルド型の腸内洗浄器具。\nその12本入りセットが5箱。使い切れる気がしない。",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 84,
|
||||
"itypeId": 2,
|
||||
"name": "ほるほるくん(業務用)",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "とある職人が3年の歳月を掛けて仕上げたボンデージ衣装。\n紐を組み合わせただけのデザインがとても破廉恥な一品。",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 84,
|
||||
"itypeId": 2,
|
||||
"name": "高級ボンデージ",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 3,
|
||||
"repeats": 1,
|
||||
"scope": 0,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "大人気ノーカロイド『初根ヌク』のフィギュア。\nウィルが好きそう。",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 306,
|
||||
"itypeId": 2,
|
||||
"name": "美少女フィギュア",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 0,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "おばあちゃんの大好物。\n持っていったらきっと喜んでくれる。",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 274,
|
||||
"itypeId": 2,
|
||||
"name": "栗ようかん",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 1,
|
||||
"repeats": 1,
|
||||
"scope": 0,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "子宝祈願のおまもり。\nとある有名神社の、効果抜群と評判の一品らしい。",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 299,
|
||||
"itypeId": 2,
|
||||
"name": "おまもり",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 0,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "老舗温泉宿『輪和館』のタダ券二枚。\n※ご注意 本券は別館のお部屋限定となっております。",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 192,
|
||||
"itypeId": 2,
|
||||
"name": "ペア宿泊券",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 0,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "昔大流行していたアニメ『魔動戦士ゲンボル』のキャラクターグッズ。\nメーカー側は消しゴムと言い張ってるがこれで文字を消すのは困難を極める。",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 302,
|
||||
"itypeId": 2,
|
||||
"name": "ゲン消し",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 0,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
}
|
||||
]
|
||||
20708
www/data/Map001.json
Normal file
20708
www/data/Map001.json
Normal file
File diff suppressed because it is too large
Load diff
10285
www/data/Map002.json
Normal file
10285
www/data/Map002.json
Normal file
File diff suppressed because it is too large
Load diff
17429
www/data/Map003.json
Normal file
17429
www/data/Map003.json
Normal file
File diff suppressed because it is too large
Load diff
3953
www/data/Map004.json
Normal file
3953
www/data/Map004.json
Normal file
File diff suppressed because it is too large
Load diff
22530
www/data/Map005.json
Normal file
22530
www/data/Map005.json
Normal file
File diff suppressed because it is too large
Load diff
4175
www/data/Map006.json
Normal file
4175
www/data/Map006.json
Normal file
File diff suppressed because it is too large
Load diff
5130
www/data/Map007.json
Normal file
5130
www/data/Map007.json
Normal file
File diff suppressed because it is too large
Load diff
1293
www/data/Map008.json
Normal file
1293
www/data/Map008.json
Normal file
File diff suppressed because it is too large
Load diff
4233
www/data/Map009.json
Normal file
4233
www/data/Map009.json
Normal file
File diff suppressed because it is too large
Load diff
5376
www/data/Map010.json
Normal file
5376
www/data/Map010.json
Normal file
File diff suppressed because it is too large
Load diff
6658
www/data/Map011.json
Normal file
6658
www/data/Map011.json
Normal file
File diff suppressed because it is too large
Load diff
5268
www/data/Map012.json
Normal file
5268
www/data/Map012.json
Normal file
File diff suppressed because it is too large
Load diff
15160
www/data/Map013.json
Normal file
15160
www/data/Map013.json
Normal file
File diff suppressed because it is too large
Load diff
5465
www/data/Map014.json
Normal file
5465
www/data/Map014.json
Normal file
File diff suppressed because it is too large
Load diff
7096
www/data/Map015.json
Normal file
7096
www/data/Map015.json
Normal file
File diff suppressed because it is too large
Load diff
3156
www/data/Map016.json
Normal file
3156
www/data/Map016.json
Normal file
File diff suppressed because it is too large
Load diff
8828
www/data/Map017.json
Normal file
8828
www/data/Map017.json
Normal file
File diff suppressed because it is too large
Load diff
7233
www/data/Map018.json
Normal file
7233
www/data/Map018.json
Normal file
File diff suppressed because it is too large
Load diff
14263
www/data/Map019.json
Normal file
14263
www/data/Map019.json
Normal file
File diff suppressed because it is too large
Load diff
15079
www/data/Map020.json
Normal file
15079
www/data/Map020.json
Normal file
File diff suppressed because it is too large
Load diff
4263
www/data/Map021.json
Normal file
4263
www/data/Map021.json
Normal file
File diff suppressed because it is too large
Load diff
7358
www/data/Map022.json
Normal file
7358
www/data/Map022.json
Normal file
File diff suppressed because it is too large
Load diff
4025
www/data/Map023.json
Normal file
4025
www/data/Map023.json
Normal file
File diff suppressed because it is too large
Load diff
3464
www/data/Map024.json
Normal file
3464
www/data/Map024.json
Normal file
File diff suppressed because it is too large
Load diff
3312
www/data/Map025.json
Normal file
3312
www/data/Map025.json
Normal file
File diff suppressed because it is too large
Load diff
3071
www/data/Map026.json
Normal file
3071
www/data/Map026.json
Normal file
File diff suppressed because it is too large
Load diff
3404
www/data/Map027.json
Normal file
3404
www/data/Map027.json
Normal file
File diff suppressed because it is too large
Load diff
2900
www/data/Map028.json
Normal file
2900
www/data/Map028.json
Normal file
File diff suppressed because it is too large
Load diff
2903
www/data/Map029.json
Normal file
2903
www/data/Map029.json
Normal file
File diff suppressed because it is too large
Load diff
2984
www/data/Map030.json
Normal file
2984
www/data/Map030.json
Normal file
File diff suppressed because it is too large
Load diff
2984
www/data/Map031.json
Normal file
2984
www/data/Map031.json
Normal file
File diff suppressed because it is too large
Load diff
15774
www/data/Map032.json
Normal file
15774
www/data/Map032.json
Normal file
File diff suppressed because it is too large
Load diff
4333
www/data/Map033.json
Normal file
4333
www/data/Map033.json
Normal file
File diff suppressed because it is too large
Load diff
7749
www/data/Map034.json
Normal file
7749
www/data/Map034.json
Normal file
File diff suppressed because it is too large
Load diff
9176
www/data/Map035.json
Normal file
9176
www/data/Map035.json
Normal file
File diff suppressed because it is too large
Load diff
5420
www/data/Map036.json
Normal file
5420
www/data/Map036.json
Normal file
File diff suppressed because it is too large
Load diff
4455
www/data/Map037.json
Normal file
4455
www/data/Map037.json
Normal file
File diff suppressed because it is too large
Load diff
3996
www/data/Map038.json
Normal file
3996
www/data/Map038.json
Normal file
File diff suppressed because it is too large
Load diff
3788
www/data/Map039.json
Normal file
3788
www/data/Map039.json
Normal file
File diff suppressed because it is too large
Load diff
63324
www/data/Map040.json
Normal file
63324
www/data/Map040.json
Normal file
File diff suppressed because it is too large
Load diff
17051
www/data/Map041.json
Normal file
17051
www/data/Map041.json
Normal file
File diff suppressed because it is too large
Load diff
8877
www/data/Map042.json
Normal file
8877
www/data/Map042.json
Normal file
File diff suppressed because it is too large
Load diff
27745
www/data/Map043.json
Normal file
27745
www/data/Map043.json
Normal file
File diff suppressed because it is too large
Load diff
11536
www/data/Map044.json
Normal file
11536
www/data/Map044.json
Normal file
File diff suppressed because it is too large
Load diff
19651
www/data/Map045.json
Normal file
19651
www/data/Map045.json
Normal file
File diff suppressed because it is too large
Load diff
8790
www/data/Map046.json
Normal file
8790
www/data/Map046.json
Normal file
File diff suppressed because it is too large
Load diff
13616
www/data/Map047.json
Normal file
13616
www/data/Map047.json
Normal file
File diff suppressed because it is too large
Load diff
1877
www/data/Map048.json
Normal file
1877
www/data/Map048.json
Normal file
File diff suppressed because it is too large
Load diff
4233
www/data/Map049.json
Normal file
4233
www/data/Map049.json
Normal file
File diff suppressed because it is too large
Load diff
8232
www/data/Map050.json
Normal file
8232
www/data/Map050.json
Normal file
File diff suppressed because it is too large
Load diff
9307
www/data/Map051.json
Normal file
9307
www/data/Map051.json
Normal file
File diff suppressed because it is too large
Load diff
11530
www/data/Map052.json
Normal file
11530
www/data/Map052.json
Normal file
File diff suppressed because it is too large
Load diff
6930
www/data/Map053.json
Normal file
6930
www/data/Map053.json
Normal file
File diff suppressed because it is too large
Load diff
3119
www/data/Map054.json
Normal file
3119
www/data/Map054.json
Normal file
File diff suppressed because it is too large
Load diff
2985
www/data/Map055.json
Normal file
2985
www/data/Map055.json
Normal file
File diff suppressed because it is too large
Load diff
3053
www/data/Map056.json
Normal file
3053
www/data/Map056.json
Normal file
File diff suppressed because it is too large
Load diff
2903
www/data/Map057.json
Normal file
2903
www/data/Map057.json
Normal file
File diff suppressed because it is too large
Load diff
2991
www/data/Map058.json
Normal file
2991
www/data/Map058.json
Normal file
File diff suppressed because it is too large
Load diff
2984
www/data/Map059.json
Normal file
2984
www/data/Map059.json
Normal file
File diff suppressed because it is too large
Load diff
14345
www/data/Map060.json
Normal file
14345
www/data/Map060.json
Normal file
File diff suppressed because it is too large
Load diff
11702
www/data/Map061.json
Normal file
11702
www/data/Map061.json
Normal file
File diff suppressed because it is too large
Load diff
11237
www/data/Map062.json
Normal file
11237
www/data/Map062.json
Normal file
File diff suppressed because it is too large
Load diff
3711
www/data/Map063.json
Normal file
3711
www/data/Map063.json
Normal file
File diff suppressed because it is too large
Load diff
3981
www/data/Map064.json
Normal file
3981
www/data/Map064.json
Normal file
File diff suppressed because it is too large
Load diff
3291
www/data/Map065.json
Normal file
3291
www/data/Map065.json
Normal file
File diff suppressed because it is too large
Load diff
6457
www/data/Map066.json
Normal file
6457
www/data/Map066.json
Normal file
File diff suppressed because it is too large
Load diff
25298
www/data/Map067.json
Normal file
25298
www/data/Map067.json
Normal file
File diff suppressed because it is too large
Load diff
11283
www/data/Map068.json
Normal file
11283
www/data/Map068.json
Normal file
File diff suppressed because it is too large
Load diff
8033
www/data/Map069.json
Normal file
8033
www/data/Map069.json
Normal file
File diff suppressed because it is too large
Load diff
23289
www/data/Map070.json
Normal file
23289
www/data/Map070.json
Normal file
File diff suppressed because it is too large
Load diff
11131
www/data/Map071.json
Normal file
11131
www/data/Map071.json
Normal file
File diff suppressed because it is too large
Load diff
4867
www/data/Map072.json
Normal file
4867
www/data/Map072.json
Normal file
File diff suppressed because it is too large
Load diff
5815
www/data/Map073.json
Normal file
5815
www/data/Map073.json
Normal file
File diff suppressed because it is too large
Load diff
8600
www/data/Map074.json
Normal file
8600
www/data/Map074.json
Normal file
File diff suppressed because it is too large
Load diff
13892
www/data/Map075.json
Normal file
13892
www/data/Map075.json
Normal file
File diff suppressed because it is too large
Load diff
31102
www/data/Map076.json
Normal file
31102
www/data/Map076.json
Normal file
File diff suppressed because it is too large
Load diff
23309
www/data/Map077.json
Normal file
23309
www/data/Map077.json
Normal file
File diff suppressed because it is too large
Load diff
4004
www/data/Map078.json
Normal file
4004
www/data/Map078.json
Normal file
File diff suppressed because it is too large
Load diff
9539
www/data/Map079.json
Normal file
9539
www/data/Map079.json
Normal file
File diff suppressed because it is too large
Load diff
32543
www/data/Map080.json
Normal file
32543
www/data/Map080.json
Normal file
File diff suppressed because it is too large
Load diff
24095
www/data/Map081.json
Normal file
24095
www/data/Map081.json
Normal file
File diff suppressed because it is too large
Load diff
6347
www/data/Map082.json
Normal file
6347
www/data/Map082.json
Normal file
File diff suppressed because it is too large
Load diff
23458
www/data/Map083.json
Normal file
23458
www/data/Map083.json
Normal file
File diff suppressed because it is too large
Load diff
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue