Initial Commit
This commit is contained in:
commit
a141bf1d1a
393 changed files with 6862357 additions and 0 deletions
44
.gitignore
vendored
Normal file
44
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,44 @@
|
||||||
|
# Ignore all files
|
||||||
|
*.*
|
||||||
|
|
||||||
|
# File Types
|
||||||
|
!*.mps
|
||||||
|
!*.json
|
||||||
|
!*.txt
|
||||||
|
!*.project
|
||||||
|
!*.js
|
||||||
|
!*.7z
|
||||||
|
!*.csv
|
||||||
|
!*.ain
|
||||||
|
!*.fnl
|
||||||
|
!*.ks
|
||||||
|
!*.tjs
|
||||||
|
!*.yaml
|
||||||
|
!*.rb
|
||||||
|
!*.rvdata2
|
||||||
|
|
||||||
|
# Other Needed Files
|
||||||
|
!.gitignore
|
||||||
|
!README.md
|
||||||
|
!patch-config.txt
|
||||||
|
!GameUpdate*
|
||||||
|
!patch*
|
||||||
|
!Game.dat
|
||||||
|
!bsxx.dat*
|
||||||
|
!game.ini
|
||||||
|
!package.nw
|
||||||
|
!SRPG_Unpacker.exe
|
||||||
|
!(SRPG_Unpacker Patcher).bat
|
||||||
|
|
||||||
|
# Ignore
|
||||||
|
previous_patch_sha.txt
|
||||||
|
kabe3_save.dat
|
||||||
|
kabe3_system.dat
|
||||||
|
psbpack.dat
|
||||||
|
Save*
|
||||||
|
cg.dat
|
||||||
|
scene.dat
|
||||||
|
BSXScript_*
|
||||||
|
|
||||||
|
# Images
|
||||||
|
!crazy_4th_pkg816.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 "gameupdate\patch.bat" "gameupdate\patch2.bat"
|
||||||
|
|
||||||
|
REM Run the new file
|
||||||
|
call "gameupdate\patch2.bat"
|
||||||
|
|
||||||
|
REM Delete the new file
|
||||||
|
del "gameupdate\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.sh to a new file in gameupdate
|
||||||
|
cp "gameupdate/patch.sh" "gameupdate/patch2.sh"
|
||||||
|
|
||||||
|
# Run the new file
|
||||||
|
bash "gameupdate/patch2.sh"
|
||||||
|
|
||||||
|
# Delete the new file
|
||||||
|
rm "gameupdate/patch2.sh"
|
||||||
102
README.md
Normal file
102
README.md
Normal file
|
|
@ -0,0 +1,102 @@
|
||||||
|
# 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
|
||||||
|
|
||||||
|
For WOLF RPG games, if you downloaded the game off of DLSite, you will need to do some extra steps to patch it. This is because there is a "master" file called Data.wolf that will take priority over the english patch files. You will need this file to be a folder before patching will work.
|
||||||
|
|
||||||
|
# Wolf Games
|
||||||
|
1) Download the latest UberWolf.exe release from the following link:
|
||||||
|
https://github.com/Sinflower/UberWolf/releases
|
||||||
|
2) Drag Data.wolf onto UberWolf.exe. This will create a new folder called data.wolf~
|
||||||
|
3) Rename the new data.wolf~ folder to Data
|
||||||
|
4) Delete the Data.wolf file
|
||||||
|
5) Delete previous_patch_sha.txt (this will exist if you ran GameUpdate.bat previously)
|
||||||
|
6) Run GameUpdate.bat
|
||||||
|
|
||||||
|
# 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
|
||||||
131
Readme_Ver1.04.txt
Normal file
131
Readme_Ver1.04.txt
Normal file
|
|
@ -0,0 +1,131 @@
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
|
||||||
|
■はじめに
|
||||||
|
このたびは当サークル「非情口行き」の作品をご購入いただき、誠にありがとうございます。
|
||||||
|
このデータは成人向けRPG作品、
|
||||||
|
【魔法の里の繁栄事情 -天才魔法少女マリーと孕ませの儀式-】
|
||||||
|
の製品版データとなります。
|
||||||
|
|
||||||
|
■本作品は成人向けの描写を含んでおります。、
|
||||||
|
18歳未満の方はプレイしていただくことは出来ません。
|
||||||
|
|
||||||
|
■本ゲームの内容はすべてフィクションです。
|
||||||
|
実在の人物や団体などとは関係ありません。
|
||||||
|
また、登場人物はすべて成人しています。
|
||||||
|
|
||||||
|
■本作品に関する各種権利は当サークルに帰属するものとします。
|
||||||
|
なお、使用されているイラストや音声、ロゴ、BGM、効果音、
|
||||||
|
その他の各種素材に関してはそれぞれの権利者様に帰属します。
|
||||||
|
|
||||||
|
■本作品を無断で改変、複製、転載、配布することを禁じます。
|
||||||
|
本作品を使用することによって発生したいかなる損害について、当方は責任を負いません。
|
||||||
|
|
||||||
|
以上をご了解された方のみプレイ下さい。
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
|
||||||
|
【ゲームの操作方法】
|
||||||
|
|
||||||
|
■ゲームの起動:
|
||||||
|
フォルダの中から「Game.exe」を起動してください。
|
||||||
|
|
||||||
|
■操作方法:
|
||||||
|
↑↓←→:上下左右に移動
|
||||||
|
Enter:決定(長押しでテキストやイベント早送り)
|
||||||
|
Ctrl:テキスト早送り
|
||||||
|
X:メニュー表示
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
|
||||||
|
【ゲーム仕様】
|
||||||
|
|
||||||
|
・RPG
|
||||||
|
・一部ボイス:あり(喘ぎ声など)
|
||||||
|
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
|
||||||
|
【システム仕様】
|
||||||
|
|
||||||
|
この作品はRPGツクールMZで制作されています。
|
||||||
|
画面サイズは1280x720pxです。
|
||||||
|
起動環境などはRPGツクールMZ公式サイトをご確認ください。
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
|
||||||
|
【制作】
|
||||||
|
画像・音楽・プラグイン
|
||||||
|
|
||||||
|
トリアコンタン 様
|
||||||
|
コミュ将 様
|
||||||
|
ケケー様
|
||||||
|
ルルの教会 様
|
||||||
|
kido様
|
||||||
|
まっつUP 様
|
||||||
|
マンカインド 様
|
||||||
|
村人A 様
|
||||||
|
Ruたん 様
|
||||||
|
ペンギンの寝床 様
|
||||||
|
んーぞー 様
|
||||||
|
木星ペンギン 様
|
||||||
|
アイストマトバズーカ 様
|
||||||
|
Moghunter 様
|
||||||
|
ポテトードラゴン 様
|
||||||
|
白黒洋菓子店 様
|
||||||
|
WH 様
|
||||||
|
WTR 様
|
||||||
|
BB ENTERTAINMENT 様
|
||||||
|
リクドウ 様
|
||||||
|
akira 様
|
||||||
|
王国興亡記 様
|
||||||
|
LC.7(ラッキー) 様
|
||||||
|
MusMus 様
|
||||||
|
小森 平 様
|
||||||
|
On-Jin ~音人~ 様
|
||||||
|
OtoLogic 様 SE
|
||||||
|
Pincree (mikami-satsuki) 様
|
||||||
|
七三ゆきのアトリエ 様 / https://nanamiyuki.com/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
※順不同
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
|
||||||
|
不具合報告等
|
||||||
|
|
||||||
|
|
||||||
|
ci-en
|
||||||
|
https://ci-en.dlsite.com/creator/13373
|
||||||
|
|
||||||
|
X(旧Twitter)
|
||||||
|
https://twitter.com/hijoguchi_kei
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
更新履歴
|
||||||
|
1.04
|
||||||
|
不具合修正
|
||||||
|
|
||||||
|
1.03
|
||||||
|
不具合修正
|
||||||
|
|
||||||
|
1.02
|
||||||
|
不具合修正
|
||||||
|
|
||||||
|
1.01
|
||||||
|
不具合修正
|
||||||
|
名前変更NPC追加
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
|
||||||
|
2025_11_20
|
||||||
578
data/Actors.json
Normal file
578
data/Actors.json
Normal file
|
|
@ -0,0 +1,578 @@
|
||||||
|
[
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"id": 1,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "02_hero01",
|
||||||
|
"classId": 2,
|
||||||
|
"equips": [
|
||||||
|
2,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
3,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 0,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 5,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "少年",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": "里の少年。背伸びしたいお年頃。\nまだまだ未熟な魔法使い。"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 2,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "01_marry02",
|
||||||
|
"classId": 2,
|
||||||
|
"equips": [
|
||||||
|
1,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
9,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 1,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 69,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "マリー",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": "媚びない、群れない、孤高の存在。でもアイスと可愛いものが好き。\n自他ともに認める里一番の魔法使い。"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 3,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "03_akane",
|
||||||
|
"classId": 2,
|
||||||
|
"equips": [
|
||||||
|
31,
|
||||||
|
0,
|
||||||
|
65,
|
||||||
|
5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 2,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 1,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "アカネ",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": "主人公の母親"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 4,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "04_boushi",
|
||||||
|
"classId": 5,
|
||||||
|
"equips": [
|
||||||
|
31,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
5,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 3,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 1,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 5,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "05_sumeragi",
|
||||||
|
"classId": 2,
|
||||||
|
"equips": [
|
||||||
|
7,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
20,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 4,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 1,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "スメラギ",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": "仙人"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 6,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "06_bongo",
|
||||||
|
"classId": 2,
|
||||||
|
"equips": [
|
||||||
|
7,
|
||||||
|
0,
|
||||||
|
65,
|
||||||
|
21,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 5,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 1,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "ボンゴ",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": "クソガキ"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 7,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "07_bill01",
|
||||||
|
"classId": 2,
|
||||||
|
"equips": [
|
||||||
|
7,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
20,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 6,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 1,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "ビル",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": "ウィリアム"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 8,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "08_GM",
|
||||||
|
"classId": 2,
|
||||||
|
"equips": [
|
||||||
|
7,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
20,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 7,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 1,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "ジム",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": "ハゲ先生"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 9,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "09_ellic",
|
||||||
|
"classId": 2,
|
||||||
|
"equips": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 0,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 1,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "エリク",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": "かわいいショタ"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 10,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "10_eigesse",
|
||||||
|
"classId": 2,
|
||||||
|
"equips": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 0,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 1,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "エーゲス",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 11,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "11_katsuko",
|
||||||
|
"classId": 1,
|
||||||
|
"equips": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 0,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 1,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "カツコ",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": "敵"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 12,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "",
|
||||||
|
"classId": 1,
|
||||||
|
"equips": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 0,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 1,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "ポークエー",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": "敵"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 13,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "13_toroko",
|
||||||
|
"classId": 1,
|
||||||
|
"equips": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 0,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 1,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "トロ子",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 14,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 5,
|
||||||
|
"characterName": "DarkPeople1",
|
||||||
|
"classId": 1,
|
||||||
|
"equips": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 0,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 1,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "ボンゴの母",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 15,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "10Chris03",
|
||||||
|
"classId": 2,
|
||||||
|
"equips": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 0,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 1,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "メイ",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": "エリクのガールフレンド"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 16,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 7,
|
||||||
|
"characterName": "character5",
|
||||||
|
"classId": 1,
|
||||||
|
"equips": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 0,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 1,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "おばさん",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 17,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "17_storn",
|
||||||
|
"classId": 1,
|
||||||
|
"equips": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 0,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 1,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "ストーン",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 18,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "",
|
||||||
|
"classId": 1,
|
||||||
|
"equips": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 0,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 1,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "ポークエー",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": "敵"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 19,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "",
|
||||||
|
"classId": 1,
|
||||||
|
"equips": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 0,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 1,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "ワシヤ",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 20,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "20_Bondage",
|
||||||
|
"classId": 1,
|
||||||
|
"equips": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 0,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 1,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 21,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "01_marry01",
|
||||||
|
"classId": 2,
|
||||||
|
"equips": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 0,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 69,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "マリー",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": "媚びない、群れない、孤高の存在。でもアイスと可愛いものが好き。\n自他ともに認める里一番の魔法使い。"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 22,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "01_marry03",
|
||||||
|
"classId": 2,
|
||||||
|
"equips": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 0,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 69,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "マリー",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": "媚びない、群れない、孤高の存在。でもアイスと可愛いものが好き。\n自他ともに認める里一番の魔法使い。"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 23,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "01_marry03",
|
||||||
|
"classId": 2,
|
||||||
|
"equips": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 0,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 69,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "マリー",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "",
|
||||||
|
"profile": "媚びない、群れない、孤高の存在。でもアイスと可愛いものが好き。\n自他ともに認める里一番の魔法使い。"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 24,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "01_marry04",
|
||||||
|
"classId": 2,
|
||||||
|
"equips": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 0,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 69,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "マリー",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "裸",
|
||||||
|
"profile": "媚びない、群れない、孤高の存在。でもアイスと可愛いものが好き。\n自他ともに認める里一番の魔法使い。"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 25,
|
||||||
|
"battlerName": "",
|
||||||
|
"characterIndex": 0,
|
||||||
|
"characterName": "01_marry05",
|
||||||
|
"classId": 2,
|
||||||
|
"equips": [
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"faceIndex": 0,
|
||||||
|
"faceName": "",
|
||||||
|
"traits": [],
|
||||||
|
"initialLevel": 69,
|
||||||
|
"maxLevel": 99,
|
||||||
|
"name": "マリー",
|
||||||
|
"nickname": "",
|
||||||
|
"note": "裸",
|
||||||
|
"profile": "媚びない、群れない、孤高の存在。でもアイスと可愛いものが好き。\n自他ともに認める里一番の魔法使い。"
|
||||||
|
}
|
||||||
|
]
|
||||||
10456
data/Animations.json
Normal file
10456
data/Animations.json
Normal file
File diff suppressed because it is too large
Load diff
2853
data/Armors.json
Normal file
2853
data/Armors.json
Normal file
File diff suppressed because it is too large
Load diff
7502
data/Classes.json
Normal file
7502
data/Classes.json
Normal file
File diff suppressed because it is too large
Load diff
582582
data/CommonEvents.json
Normal file
582582
data/CommonEvents.json
Normal file
File diff suppressed because it is too large
Load diff
344
data/Enemies.json
Normal file
344
data/Enemies.json
Normal file
|
|
@ -0,0 +1,344 @@
|
||||||
|
[
|
||||||
|
null,
|
||||||
|
{
|
||||||
|
"id": 1,
|
||||||
|
"actions": [
|
||||||
|
{
|
||||||
|
"skillId": 1,
|
||||||
|
"rating": 5,
|
||||||
|
"conditionType": 0,
|
||||||
|
"conditionParam1": 0,
|
||||||
|
"conditionParam2": 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"battlerHue": 0,
|
||||||
|
"battlerName": "Goblin",
|
||||||
|
"dropItems": [
|
||||||
|
{
|
||||||
|
"dataId": 1,
|
||||||
|
"denominator": 1,
|
||||||
|
"kind": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataId": 1,
|
||||||
|
"denominator": 1,
|
||||||
|
"kind": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataId": 1,
|
||||||
|
"denominator": 1,
|
||||||
|
"kind": 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"exp": 10,
|
||||||
|
"traits": [
|
||||||
|
{
|
||||||
|
"code": 22,
|
||||||
|
"dataId": 0,
|
||||||
|
"value": 0.95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"code": 22,
|
||||||
|
"dataId": 1,
|
||||||
|
"value": 0.05
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"code": 31,
|
||||||
|
"dataId": 1,
|
||||||
|
"value": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"code": 11,
|
||||||
|
"dataId": 1,
|
||||||
|
"value": 0.25
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"gold": 5,
|
||||||
|
"name": "ゴブリン",
|
||||||
|
"note": "<HPスリップ率: 150>",
|
||||||
|
"params": [
|
||||||
|
1,
|
||||||
|
0,
|
||||||
|
25,
|
||||||
|
20,
|
||||||
|
20,
|
||||||
|
20,
|
||||||
|
0,
|
||||||
|
20
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 2,
|
||||||
|
"actions": [
|
||||||
|
{
|
||||||
|
"conditionParam1": 0,
|
||||||
|
"conditionParam2": 0,
|
||||||
|
"conditionType": 0,
|
||||||
|
"rating": 5,
|
||||||
|
"skillId": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"skillId": 23,
|
||||||
|
"rating": 3,
|
||||||
|
"conditionType": 1,
|
||||||
|
"conditionParam1": 0,
|
||||||
|
"conditionParam2": 2
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"battlerHue": 0,
|
||||||
|
"battlerName": "Gnome",
|
||||||
|
"dropItems": [
|
||||||
|
{
|
||||||
|
"dataId": 1,
|
||||||
|
"denominator": 1,
|
||||||
|
"kind": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataId": 1,
|
||||||
|
"denominator": 1,
|
||||||
|
"kind": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataId": 1,
|
||||||
|
"denominator": 1,
|
||||||
|
"kind": 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"exp": 10,
|
||||||
|
"traits": [
|
||||||
|
{
|
||||||
|
"code": 22,
|
||||||
|
"dataId": 0,
|
||||||
|
"value": 0.95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"code": 22,
|
||||||
|
"dataId": 1,
|
||||||
|
"value": 0.05
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"code": 31,
|
||||||
|
"dataId": 1,
|
||||||
|
"value": 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"gold": 8,
|
||||||
|
"name": "ノーム",
|
||||||
|
"note": "",
|
||||||
|
"params": [
|
||||||
|
250,
|
||||||
|
0,
|
||||||
|
20,
|
||||||
|
25,
|
||||||
|
20,
|
||||||
|
20,
|
||||||
|
20,
|
||||||
|
20
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 3,
|
||||||
|
"actions": [
|
||||||
|
{
|
||||||
|
"conditionParam1": 0,
|
||||||
|
"conditionParam2": 0,
|
||||||
|
"conditionType": 0,
|
||||||
|
"rating": 5,
|
||||||
|
"skillId": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"battlerHue": 0,
|
||||||
|
"battlerName": "Crow",
|
||||||
|
"dropItems": [
|
||||||
|
{
|
||||||
|
"dataId": 1,
|
||||||
|
"denominator": 1,
|
||||||
|
"kind": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataId": 1,
|
||||||
|
"denominator": 1,
|
||||||
|
"kind": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataId": 1,
|
||||||
|
"denominator": 1,
|
||||||
|
"kind": 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"exp": 15,
|
||||||
|
"traits": [
|
||||||
|
{
|
||||||
|
"code": 22,
|
||||||
|
"dataId": 0,
|
||||||
|
"value": 0.95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"code": 22,
|
||||||
|
"dataId": 1,
|
||||||
|
"value": 0.1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"code": 31,
|
||||||
|
"dataId": 1,
|
||||||
|
"value": 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"gold": 8,
|
||||||
|
"name": "クロウ",
|
||||||
|
"note": "",
|
||||||
|
"params": [
|
||||||
|
250,
|
||||||
|
50,
|
||||||
|
25,
|
||||||
|
20,
|
||||||
|
20,
|
||||||
|
20,
|
||||||
|
25,
|
||||||
|
20
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 4,
|
||||||
|
"actions": [
|
||||||
|
{
|
||||||
|
"conditionParam1": 0,
|
||||||
|
"conditionParam2": 0,
|
||||||
|
"conditionType": 0,
|
||||||
|
"rating": 5,
|
||||||
|
"skillId": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"skillId": 52,
|
||||||
|
"rating": 4,
|
||||||
|
"conditionType": 2,
|
||||||
|
"conditionParam1": 0,
|
||||||
|
"conditionParam2": 0.3
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"battlerHue": 0,
|
||||||
|
"battlerName": "Treant",
|
||||||
|
"dropItems": [
|
||||||
|
{
|
||||||
|
"dataId": 1,
|
||||||
|
"denominator": 1,
|
||||||
|
"kind": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataId": 1,
|
||||||
|
"denominator": 1,
|
||||||
|
"kind": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataId": 1,
|
||||||
|
"denominator": 1,
|
||||||
|
"kind": 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"exp": 30,
|
||||||
|
"traits": [
|
||||||
|
{
|
||||||
|
"code": 22,
|
||||||
|
"dataId": 0,
|
||||||
|
"value": 0.95
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"code": 22,
|
||||||
|
"dataId": 1,
|
||||||
|
"value": 0.05
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"code": 31,
|
||||||
|
"dataId": 1,
|
||||||
|
"value": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"code": 11,
|
||||||
|
"dataId": 2,
|
||||||
|
"value": 2
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"gold": 15,
|
||||||
|
"name": "トレント",
|
||||||
|
"note": "",
|
||||||
|
"params": [
|
||||||
|
500,
|
||||||
|
50,
|
||||||
|
30,
|
||||||
|
20,
|
||||||
|
30,
|
||||||
|
30,
|
||||||
|
30,
|
||||||
|
30
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": 5,
|
||||||
|
"actions": [
|
||||||
|
{
|
||||||
|
"skillId": 99,
|
||||||
|
"rating": 5,
|
||||||
|
"conditionType": 0,
|
||||||
|
"conditionParam1": 0,
|
||||||
|
"conditionParam2": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"skillId": 13,
|
||||||
|
"rating": 6,
|
||||||
|
"conditionType": 2,
|
||||||
|
"conditionParam1": 0,
|
||||||
|
"conditionParam2": 0.3
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"battlerHue": 0,
|
||||||
|
"battlerName": "Hi_monster",
|
||||||
|
"dropItems": [
|
||||||
|
{
|
||||||
|
"dataId": 1,
|
||||||
|
"denominator": 1,
|
||||||
|
"kind": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataId": 1,
|
||||||
|
"denominator": 1,
|
||||||
|
"kind": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataId": 1,
|
||||||
|
"denominator": 1,
|
||||||
|
"kind": 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"exp": 100,
|
||||||
|
"traits": [
|
||||||
|
{
|
||||||
|
"code": 22,
|
||||||
|
"dataId": 0,
|
||||||
|
"value": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"code": 31,
|
||||||
|
"dataId": 1,
|
||||||
|
"value": 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"code": 63,
|
||||||
|
"dataId": 1,
|
||||||
|
"value": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"gold": 50,
|
||||||
|
"name": "魔獣",
|
||||||
|
"note": "",
|
||||||
|
"params": [
|
||||||
|
1000,
|
||||||
|
50,
|
||||||
|
40,
|
||||||
|
20,
|
||||||
|
40,
|
||||||
|
40,
|
||||||
|
40,
|
||||||
|
40
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
2802
data/Items.json
Normal file
2802
data/Items.json
Normal file
File diff suppressed because it is too large
Load diff
2794
data/Map001.json
Normal file
2794
data/Map001.json
Normal file
File diff suppressed because it is too large
Load diff
3597
data/Map002.json
Normal file
3597
data/Map002.json
Normal file
File diff suppressed because it is too large
Load diff
4077
data/Map003.json
Normal file
4077
data/Map003.json
Normal file
File diff suppressed because it is too large
Load diff
18106
data/Map004.json
Normal file
18106
data/Map004.json
Normal file
File diff suppressed because it is too large
Load diff
11266
data/Map005.json
Normal file
11266
data/Map005.json
Normal file
File diff suppressed because it is too large
Load diff
60320
data/Map006.json
Normal file
60320
data/Map006.json
Normal file
File diff suppressed because it is too large
Load diff
36765
data/Map007.json
Normal file
36765
data/Map007.json
Normal file
File diff suppressed because it is too large
Load diff
25473
data/Map008.json
Normal file
25473
data/Map008.json
Normal file
File diff suppressed because it is too large
Load diff
12971
data/Map009.json
Normal file
12971
data/Map009.json
Normal file
File diff suppressed because it is too large
Load diff
9518
data/Map010.json
Normal file
9518
data/Map010.json
Normal file
File diff suppressed because it is too large
Load diff
19802
data/Map011.json
Normal file
19802
data/Map011.json
Normal file
File diff suppressed because it is too large
Load diff
26069
data/Map012.json
Normal file
26069
data/Map012.json
Normal file
File diff suppressed because it is too large
Load diff
20555
data/Map013.json
Normal file
20555
data/Map013.json
Normal file
File diff suppressed because it is too large
Load diff
17561
data/Map014.json
Normal file
17561
data/Map014.json
Normal file
File diff suppressed because it is too large
Load diff
2523
data/Map015.json
Normal file
2523
data/Map015.json
Normal file
File diff suppressed because it is too large
Load diff
2637
data/Map016.json
Normal file
2637
data/Map016.json
Normal file
File diff suppressed because it is too large
Load diff
22944
data/Map017.json
Normal file
22944
data/Map017.json
Normal file
File diff suppressed because it is too large
Load diff
18218
data/Map018.json
Normal file
18218
data/Map018.json
Normal file
File diff suppressed because it is too large
Load diff
42177
data/Map019.json
Normal file
42177
data/Map019.json
Normal file
File diff suppressed because it is too large
Load diff
32721
data/Map020.json
Normal file
32721
data/Map020.json
Normal file
File diff suppressed because it is too large
Load diff
73170
data/Map021.json
Normal file
73170
data/Map021.json
Normal file
File diff suppressed because it is too large
Load diff
72106
data/Map022.json
Normal file
72106
data/Map022.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map023.json
Normal file
1363
data/Map023.json
Normal file
File diff suppressed because it is too large
Load diff
14428
data/Map024.json
Normal file
14428
data/Map024.json
Normal file
File diff suppressed because it is too large
Load diff
4239
data/Map025.json
Normal file
4239
data/Map025.json
Normal file
File diff suppressed because it is too large
Load diff
14932
data/Map026.json
Normal file
14932
data/Map026.json
Normal file
File diff suppressed because it is too large
Load diff
7665
data/Map027.json
Normal file
7665
data/Map027.json
Normal file
File diff suppressed because it is too large
Load diff
12740
data/Map028.json
Normal file
12740
data/Map028.json
Normal file
File diff suppressed because it is too large
Load diff
26158
data/Map029.json
Normal file
26158
data/Map029.json
Normal file
File diff suppressed because it is too large
Load diff
17094
data/Map030.json
Normal file
17094
data/Map030.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map031.json
Normal file
1363
data/Map031.json
Normal file
File diff suppressed because it is too large
Load diff
65394
data/Map032.json
Normal file
65394
data/Map032.json
Normal file
File diff suppressed because it is too large
Load diff
18810
data/Map033.json
Normal file
18810
data/Map033.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map034.json
Normal file
1363
data/Map034.json
Normal file
File diff suppressed because it is too large
Load diff
19165
data/Map035.json
Normal file
19165
data/Map035.json
Normal file
File diff suppressed because it is too large
Load diff
100889
data/Map036.json
Normal file
100889
data/Map036.json
Normal file
File diff suppressed because it is too large
Load diff
38215
data/Map037.json
Normal file
38215
data/Map037.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map038.json
Normal file
1363
data/Map038.json
Normal file
File diff suppressed because it is too large
Load diff
20046
data/Map039.json
Normal file
20046
data/Map039.json
Normal file
File diff suppressed because it is too large
Load diff
13767
data/Map040.json
Normal file
13767
data/Map040.json
Normal file
File diff suppressed because it is too large
Load diff
27884
data/Map041.json
Normal file
27884
data/Map041.json
Normal file
File diff suppressed because it is too large
Load diff
64897
data/Map042.json
Normal file
64897
data/Map042.json
Normal file
File diff suppressed because it is too large
Load diff
32828
data/Map043.json
Normal file
32828
data/Map043.json
Normal file
File diff suppressed because it is too large
Load diff
31521
data/Map044.json
Normal file
31521
data/Map044.json
Normal file
File diff suppressed because it is too large
Load diff
9746
data/Map045.json
Normal file
9746
data/Map045.json
Normal file
File diff suppressed because it is too large
Load diff
19125
data/Map046.json
Normal file
19125
data/Map046.json
Normal file
File diff suppressed because it is too large
Load diff
30334
data/Map047.json
Normal file
30334
data/Map047.json
Normal file
File diff suppressed because it is too large
Load diff
14866
data/Map048.json
Normal file
14866
data/Map048.json
Normal file
File diff suppressed because it is too large
Load diff
13760
data/Map049.json
Normal file
13760
data/Map049.json
Normal file
File diff suppressed because it is too large
Load diff
14724
data/Map050.json
Normal file
14724
data/Map050.json
Normal file
File diff suppressed because it is too large
Load diff
41927
data/Map051.json
Normal file
41927
data/Map051.json
Normal file
File diff suppressed because it is too large
Load diff
12900
data/Map052.json
Normal file
12900
data/Map052.json
Normal file
File diff suppressed because it is too large
Load diff
29189
data/Map053.json
Normal file
29189
data/Map053.json
Normal file
File diff suppressed because it is too large
Load diff
18730
data/Map054.json
Normal file
18730
data/Map054.json
Normal file
File diff suppressed because it is too large
Load diff
19649
data/Map055.json
Normal file
19649
data/Map055.json
Normal file
File diff suppressed because it is too large
Load diff
31471
data/Map056.json
Normal file
31471
data/Map056.json
Normal file
File diff suppressed because it is too large
Load diff
12241
data/Map057.json
Normal file
12241
data/Map057.json
Normal file
File diff suppressed because it is too large
Load diff
17794
data/Map058.json
Normal file
17794
data/Map058.json
Normal file
File diff suppressed because it is too large
Load diff
41373
data/Map059.json
Normal file
41373
data/Map059.json
Normal file
File diff suppressed because it is too large
Load diff
14367
data/Map060.json
Normal file
14367
data/Map060.json
Normal file
File diff suppressed because it is too large
Load diff
27141
data/Map061.json
Normal file
27141
data/Map061.json
Normal file
File diff suppressed because it is too large
Load diff
12077
data/Map062.json
Normal file
12077
data/Map062.json
Normal file
File diff suppressed because it is too large
Load diff
20867
data/Map063.json
Normal file
20867
data/Map063.json
Normal file
File diff suppressed because it is too large
Load diff
28272
data/Map064.json
Normal file
28272
data/Map064.json
Normal file
File diff suppressed because it is too large
Load diff
8657
data/Map065.json
Normal file
8657
data/Map065.json
Normal file
File diff suppressed because it is too large
Load diff
10846
data/Map066.json
Normal file
10846
data/Map066.json
Normal file
File diff suppressed because it is too large
Load diff
17309
data/Map067.json
Normal file
17309
data/Map067.json
Normal file
File diff suppressed because it is too large
Load diff
33078
data/Map068.json
Normal file
33078
data/Map068.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map069.json
Normal file
1363
data/Map069.json
Normal file
File diff suppressed because it is too large
Load diff
32771
data/Map070.json
Normal file
32771
data/Map070.json
Normal file
File diff suppressed because it is too large
Load diff
22151
data/Map071.json
Normal file
22151
data/Map071.json
Normal file
File diff suppressed because it is too large
Load diff
21093
data/Map072.json
Normal file
21093
data/Map072.json
Normal file
File diff suppressed because it is too large
Load diff
30766
data/Map073.json
Normal file
30766
data/Map073.json
Normal file
File diff suppressed because it is too large
Load diff
20628
data/Map074.json
Normal file
20628
data/Map074.json
Normal file
File diff suppressed because it is too large
Load diff
30733
data/Map075.json
Normal file
30733
data/Map075.json
Normal file
File diff suppressed because it is too large
Load diff
20118
data/Map076.json
Normal file
20118
data/Map076.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map077.json
Normal file
1363
data/Map077.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map078.json
Normal file
1363
data/Map078.json
Normal file
File diff suppressed because it is too large
Load diff
30599
data/Map079.json
Normal file
30599
data/Map079.json
Normal file
File diff suppressed because it is too large
Load diff
18618
data/Map080.json
Normal file
18618
data/Map080.json
Normal file
File diff suppressed because it is too large
Load diff
15912
data/Map081.json
Normal file
15912
data/Map081.json
Normal file
File diff suppressed because it is too large
Load diff
28874
data/Map082.json
Normal file
28874
data/Map082.json
Normal file
File diff suppressed because it is too large
Load diff
18618
data/Map083.json
Normal file
18618
data/Map083.json
Normal file
File diff suppressed because it is too large
Load diff
15749
data/Map084.json
Normal file
15749
data/Map084.json
Normal file
File diff suppressed because it is too large
Load diff
27000
data/Map085.json
Normal file
27000
data/Map085.json
Normal file
File diff suppressed because it is too large
Load diff
15741
data/Map086.json
Normal file
15741
data/Map086.json
Normal file
File diff suppressed because it is too large
Load diff
31880
data/Map087.json
Normal file
31880
data/Map087.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map088.json
Normal file
1363
data/Map088.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