Initial Commit
This commit is contained in:
commit
7ab23dfab5
282 changed files with 2665226 additions and 0 deletions
66
.gitignore
vendored
Normal file
66
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
# 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
|
||||
!DUI_Status_01.png_
|
||||
!DUI_Status_02.png_
|
||||
!DUI_Status_03.png_
|
||||
!DUI_Status_04.png_
|
||||
!DUI_Status_05.png_
|
||||
!itc1_03_Txt1.png_
|
||||
!itc1_04_Txt2.png_
|
||||
!itc1_05_Txt3.png_
|
||||
!itc1_08_Name.png_
|
||||
!itc2_04_Txt2.png_
|
||||
!itc2_05_Txt3.png_
|
||||
!itc2_08_Name.png_
|
||||
!itc5_03_Txt1.png_
|
||||
!itc5_04_Txt2.png_
|
||||
!itc5_05_Txt3.png_
|
||||
!itc5_08_Name.png_
|
||||
!UI01_Time01_MorningB.png_
|
||||
!UI01_Time03_EveningB.png_
|
||||
!UI01_Time04_NightB.png_
|
||||
!MapName01_Akanetei.png_
|
||||
!MapName02_Shinbudai.png_
|
||||
!MapName03_Gakkou.png_
|
||||
!MapName04_Yudukinoie.png_
|
||||
!MapName05_Shotengai.png_
|
||||
!EroStatus*
|
||||
!Menu_B*
|
||||
!Name*
|
||||
!Stage*
|
||||
!SubEventTitles*
|
||||
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
|
||||
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.
|
||||
BIN
audio/bgm/nameless_hearts.ogg_
Normal file
BIN
audio/bgm/nameless_hearts.ogg_
Normal file
Binary file not shown.
515
data/Actors.json
Normal file
515
data/Actors.json
Normal file
|
|
@ -0,0 +1,515 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"battlerName": "",
|
||||
"characterIndex": 1,
|
||||
"characterName": "alicia",
|
||||
"classId": 2,
|
||||
"equips": [
|
||||
1,
|
||||
1,
|
||||
11,
|
||||
32,
|
||||
13
|
||||
],
|
||||
"faceIndex": 1,
|
||||
"faceName": "",
|
||||
"traits": [
|
||||
{
|
||||
"code": 53,
|
||||
"dataId": 5,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 51,
|
||||
"dataId": 6,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 52,
|
||||
"dataId": 1,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 52,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 52,
|
||||
"dataId": 3,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 23,
|
||||
"dataId": 5,
|
||||
"value": 0
|
||||
},
|
||||
{
|
||||
"code": 41,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 51,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 30,
|
||||
"name": "アリシア",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "Actor3MV",
|
||||
"classId": 6,
|
||||
"equips": [
|
||||
31,
|
||||
1,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [
|
||||
{
|
||||
"code": 51,
|
||||
"dataId": 12,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 53,
|
||||
"dataId": 1,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 53,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 52,
|
||||
"dataId": 4,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 41,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 23,
|
||||
"dataId": 5,
|
||||
"value": 0
|
||||
},
|
||||
{
|
||||
"code": 62,
|
||||
"dataId": 0,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 17,
|
||||
"maxLevel": 17,
|
||||
"name": "冒険者",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "Actor3",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
23,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [
|
||||
{
|
||||
"code": 51,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 53,
|
||||
"dataId": 1,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 53,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 52,
|
||||
"dataId": 4,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 41,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 23,
|
||||
"dataId": 5,
|
||||
"value": 0
|
||||
},
|
||||
{
|
||||
"code": 62,
|
||||
"dataId": 0,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 17,
|
||||
"maxLevel": 17,
|
||||
"name": "冒険者",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"battlerName": "",
|
||||
"characterIndex": 5,
|
||||
"characterName": "sinkan",
|
||||
"classId": 3,
|
||||
"equips": [
|
||||
0,
|
||||
21,
|
||||
23,
|
||||
20
|
||||
],
|
||||
"faceIndex": 1,
|
||||
"faceName": "",
|
||||
"traits": [
|
||||
{
|
||||
"code": 53,
|
||||
"dataId": 3,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 53,
|
||||
"dataId": 4,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 52,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 52,
|
||||
"dataId": 1,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 52,
|
||||
"dataId": 3,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 41,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 23,
|
||||
"dataId": 5,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 1,
|
||||
"name": "アリシア",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"battlerName": "",
|
||||
"characterIndex": 4,
|
||||
"characterName": "People3",
|
||||
"classId": 7,
|
||||
"equips": [
|
||||
6,
|
||||
16,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [
|
||||
{
|
||||
"code": 41,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 23,
|
||||
"dataId": 5,
|
||||
"value": 0
|
||||
},
|
||||
{
|
||||
"code": 62,
|
||||
"dataId": 0,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 25,
|
||||
"maxLevel": 25,
|
||||
"name": "荒野の町長",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "Actor1MV",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
23,
|
||||
39,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [
|
||||
{
|
||||
"code": 51,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 53,
|
||||
"dataId": 1,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 41,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 23,
|
||||
"dataId": 5,
|
||||
"value": 0
|
||||
},
|
||||
{
|
||||
"code": 62,
|
||||
"dataId": 0,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 20,
|
||||
"maxLevel": 20,
|
||||
"name": "護衛",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"battlerName": "",
|
||||
"characterIndex": 4,
|
||||
"characterName": "sinkan",
|
||||
"classId": 3,
|
||||
"equips": [
|
||||
0,
|
||||
22,
|
||||
23,
|
||||
20
|
||||
],
|
||||
"faceIndex": 1,
|
||||
"faceName": "",
|
||||
"traits": [
|
||||
{
|
||||
"code": 53,
|
||||
"dataId": 3,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 53,
|
||||
"dataId": 4,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 52,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 52,
|
||||
"dataId": 1,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 52,
|
||||
"dataId": 3,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 41,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 23,
|
||||
"dataId": 5,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 1,
|
||||
"name": "アリシア",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"battlerName": "",
|
||||
"characterIndex": 1,
|
||||
"characterName": "alicia",
|
||||
"classId": 2,
|
||||
"equips": [
|
||||
1,
|
||||
1,
|
||||
11,
|
||||
21,
|
||||
13
|
||||
],
|
||||
"faceIndex": 1,
|
||||
"faceName": "",
|
||||
"traits": [
|
||||
{
|
||||
"code": 53,
|
||||
"dataId": 5,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 51,
|
||||
"dataId": 6,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 52,
|
||||
"dataId": 1,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 52,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 52,
|
||||
"dataId": 3,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 23,
|
||||
"dataId": 5,
|
||||
"value": 0
|
||||
},
|
||||
{
|
||||
"code": 41,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 1,
|
||||
"name": "アリシア",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": "OP"
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"battlerName": "",
|
||||
"characterIndex": 3,
|
||||
"characterName": "sinkan",
|
||||
"classId": 4,
|
||||
"equips": [
|
||||
11,
|
||||
15,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [
|
||||
{
|
||||
"code": 41,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 23,
|
||||
"dataId": 5,
|
||||
"value": 0
|
||||
},
|
||||
{
|
||||
"code": 62,
|
||||
"dataId": 0,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 8,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 28,
|
||||
"maxLevel": 28,
|
||||
"name": "不死の司祭",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"battlerName": "",
|
||||
"characterIndex": 1,
|
||||
"characterName": "Vehicle",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [
|
||||
{
|
||||
"code": 41,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "船",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
}
|
||||
]
|
||||
20232
data/Animations.json
Normal file
20232
data/Animations.json
Normal file
File diff suppressed because it is too large
Load diff
2627
data/Armors.json
Normal file
2627
data/Armors.json
Normal file
File diff suppressed because it is too large
Load diff
7265
data/Classes.json
Normal file
7265
data/Classes.json
Normal file
File diff suppressed because it is too large
Load diff
594839
data/CommonEvents.json
Normal file
594839
data/CommonEvents.json
Normal file
File diff suppressed because it is too large
Load diff
12387
data/Enemies.json
Normal file
12387
data/Enemies.json
Normal file
File diff suppressed because it is too large
Load diff
2773
data/Items.json
Normal file
2773
data/Items.json
Normal file
File diff suppressed because it is too large
Load diff
2439
data/Map001.json
Normal file
2439
data/Map001.json
Normal file
File diff suppressed because it is too large
Load diff
24853
data/Map002.json
Normal file
24853
data/Map002.json
Normal file
File diff suppressed because it is too large
Load diff
35667
data/Map003.json
Normal file
35667
data/Map003.json
Normal file
File diff suppressed because it is too large
Load diff
29594
data/Map004.json
Normal file
29594
data/Map004.json
Normal file
File diff suppressed because it is too large
Load diff
2669
data/Map005.json
Normal file
2669
data/Map005.json
Normal file
File diff suppressed because it is too large
Load diff
10341
data/Map006.json
Normal file
10341
data/Map006.json
Normal file
File diff suppressed because it is too large
Load diff
2822
data/Map007.json
Normal file
2822
data/Map007.json
Normal file
File diff suppressed because it is too large
Load diff
2281
data/Map008.json
Normal file
2281
data/Map008.json
Normal file
File diff suppressed because it is too large
Load diff
3470
data/Map009.json
Normal file
3470
data/Map009.json
Normal file
File diff suppressed because it is too large
Load diff
4000
data/Map010.json
Normal file
4000
data/Map010.json
Normal file
File diff suppressed because it is too large
Load diff
8588
data/Map011.json
Normal file
8588
data/Map011.json
Normal file
File diff suppressed because it is too large
Load diff
73958
data/Map012.json
Normal file
73958
data/Map012.json
Normal file
File diff suppressed because it is too large
Load diff
5589
data/Map013.json
Normal file
5589
data/Map013.json
Normal file
File diff suppressed because it is too large
Load diff
2388
data/Map014.json
Normal file
2388
data/Map014.json
Normal file
File diff suppressed because it is too large
Load diff
1775
data/Map015.json
Normal file
1775
data/Map015.json
Normal file
File diff suppressed because it is too large
Load diff
2380
data/Map016.json
Normal file
2380
data/Map016.json
Normal file
File diff suppressed because it is too large
Load diff
5710
data/Map017.json
Normal file
5710
data/Map017.json
Normal file
File diff suppressed because it is too large
Load diff
2814
data/Map018.json
Normal file
2814
data/Map018.json
Normal file
File diff suppressed because it is too large
Load diff
6861
data/Map019.json
Normal file
6861
data/Map019.json
Normal file
File diff suppressed because it is too large
Load diff
2763
data/Map020.json
Normal file
2763
data/Map020.json
Normal file
File diff suppressed because it is too large
Load diff
4848
data/Map021.json
Normal file
4848
data/Map021.json
Normal file
File diff suppressed because it is too large
Load diff
3269
data/Map022.json
Normal file
3269
data/Map022.json
Normal file
File diff suppressed because it is too large
Load diff
8617
data/Map023.json
Normal file
8617
data/Map023.json
Normal file
File diff suppressed because it is too large
Load diff
3914
data/Map024.json
Normal file
3914
data/Map024.json
Normal file
File diff suppressed because it is too large
Load diff
2146
data/Map025.json
Normal file
2146
data/Map025.json
Normal file
File diff suppressed because it is too large
Load diff
4045
data/Map026.json
Normal file
4045
data/Map026.json
Normal file
File diff suppressed because it is too large
Load diff
2107
data/Map027.json
Normal file
2107
data/Map027.json
Normal file
File diff suppressed because it is too large
Load diff
2539
data/Map028.json
Normal file
2539
data/Map028.json
Normal file
File diff suppressed because it is too large
Load diff
2836
data/Map029.json
Normal file
2836
data/Map029.json
Normal file
File diff suppressed because it is too large
Load diff
7077
data/Map030.json
Normal file
7077
data/Map030.json
Normal file
File diff suppressed because it is too large
Load diff
6563
data/Map031.json
Normal file
6563
data/Map031.json
Normal file
File diff suppressed because it is too large
Load diff
4108
data/Map032.json
Normal file
4108
data/Map032.json
Normal file
File diff suppressed because it is too large
Load diff
3475
data/Map033.json
Normal file
3475
data/Map033.json
Normal file
File diff suppressed because it is too large
Load diff
84912
data/Map034.json
Normal file
84912
data/Map034.json
Normal file
File diff suppressed because it is too large
Load diff
13573
data/Map035.json
Normal file
13573
data/Map035.json
Normal file
File diff suppressed because it is too large
Load diff
3734
data/Map036.json
Normal file
3734
data/Map036.json
Normal file
File diff suppressed because it is too large
Load diff
11388
data/Map037.json
Normal file
11388
data/Map037.json
Normal file
File diff suppressed because it is too large
Load diff
4006
data/Map038.json
Normal file
4006
data/Map038.json
Normal file
File diff suppressed because it is too large
Load diff
3906
data/Map039.json
Normal file
3906
data/Map039.json
Normal file
File diff suppressed because it is too large
Load diff
4794
data/Map040.json
Normal file
4794
data/Map040.json
Normal file
File diff suppressed because it is too large
Load diff
5402
data/Map041.json
Normal file
5402
data/Map041.json
Normal file
File diff suppressed because it is too large
Load diff
4549
data/Map042.json
Normal file
4549
data/Map042.json
Normal file
File diff suppressed because it is too large
Load diff
6761
data/Map043.json
Normal file
6761
data/Map043.json
Normal file
File diff suppressed because it is too large
Load diff
4335
data/Map044.json
Normal file
4335
data/Map044.json
Normal file
File diff suppressed because it is too large
Load diff
9765
data/Map045.json
Normal file
9765
data/Map045.json
Normal file
File diff suppressed because it is too large
Load diff
12464
data/Map046.json
Normal file
12464
data/Map046.json
Normal file
File diff suppressed because it is too large
Load diff
12748
data/Map047.json
Normal file
12748
data/Map047.json
Normal file
File diff suppressed because it is too large
Load diff
5657
data/Map048.json
Normal file
5657
data/Map048.json
Normal file
File diff suppressed because it is too large
Load diff
3565
data/Map049.json
Normal file
3565
data/Map049.json
Normal file
File diff suppressed because it is too large
Load diff
11904
data/Map050.json
Normal file
11904
data/Map050.json
Normal file
File diff suppressed because it is too large
Load diff
17883
data/Map051.json
Normal file
17883
data/Map051.json
Normal file
File diff suppressed because it is too large
Load diff
3391
data/Map052.json
Normal file
3391
data/Map052.json
Normal file
File diff suppressed because it is too large
Load diff
9840
data/Map053.json
Normal file
9840
data/Map053.json
Normal file
File diff suppressed because it is too large
Load diff
7070
data/Map054.json
Normal file
7070
data/Map054.json
Normal file
File diff suppressed because it is too large
Load diff
12181
data/Map055.json
Normal file
12181
data/Map055.json
Normal file
File diff suppressed because it is too large
Load diff
25770
data/Map056.json
Normal file
25770
data/Map056.json
Normal file
File diff suppressed because it is too large
Load diff
9361
data/Map057.json
Normal file
9361
data/Map057.json
Normal file
File diff suppressed because it is too large
Load diff
4816
data/Map058.json
Normal file
4816
data/Map058.json
Normal file
File diff suppressed because it is too large
Load diff
7437
data/Map059.json
Normal file
7437
data/Map059.json
Normal file
File diff suppressed because it is too large
Load diff
3824
data/Map060.json
Normal file
3824
data/Map060.json
Normal file
File diff suppressed because it is too large
Load diff
770
data/Map061.json
Normal file
770
data/Map061.json
Normal file
|
|
@ -0,0 +1,770 @@
|
|||
{
|
||||
"autoplayBgm": false,
|
||||
"autoplayBgs": false,
|
||||
"battleback1Name": "",
|
||||
"battleback2Name": "",
|
||||
"bgm": {
|
||||
"name": "",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"bgs": {
|
||||
"name": "",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"disableDashing": false,
|
||||
"displayName": "",
|
||||
"encounterList": [],
|
||||
"encounterStep": 30,
|
||||
"height": 11,
|
||||
"note": "",
|
||||
"parallaxLoopX": false,
|
||||
"parallaxLoopY": false,
|
||||
"parallaxName": "",
|
||||
"parallaxShow": true,
|
||||
"parallaxSx": 0,
|
||||
"parallaxSy": 0,
|
||||
"scrollType": 0,
|
||||
"specifyBattleback": false,
|
||||
"tilesetId": 6,
|
||||
"width": 9,
|
||||
"data": [
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
1536,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
888,
|
||||
889,
|
||||
890,
|
||||
891,
|
||||
892,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
896,
|
||||
897,
|
||||
898,
|
||||
899,
|
||||
900,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
904,
|
||||
905,
|
||||
906,
|
||||
907,
|
||||
908,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
912,
|
||||
913,
|
||||
914,
|
||||
915,
|
||||
916,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
920,
|
||||
921,
|
||||
922,
|
||||
923,
|
||||
924,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
928,
|
||||
929,
|
||||
930,
|
||||
931,
|
||||
932,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
936,
|
||||
937,
|
||||
938,
|
||||
939,
|
||||
940,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
925,
|
||||
0,
|
||||
0,
|
||||
919,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
933,
|
||||
0,
|
||||
902,
|
||||
0,
|
||||
926,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
910,
|
||||
0,
|
||||
934,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"events": [
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"name": "光",
|
||||
"note": "",
|
||||
"pages": [
|
||||
{
|
||||
"conditions": {
|
||||
"actorId": 1,
|
||||
"actorValid": false,
|
||||
"itemId": 1,
|
||||
"itemValid": false,
|
||||
"selfSwitchCh": "A",
|
||||
"selfSwitchValid": false,
|
||||
"switch1Id": 1,
|
||||
"switch1Valid": false,
|
||||
"switch2Id": 1,
|
||||
"switch2Valid": false,
|
||||
"variableId": 1,
|
||||
"variableValid": false,
|
||||
"variableValue": 0
|
||||
},
|
||||
"directionFix": false,
|
||||
"image": {
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"direction": 2,
|
||||
"pattern": 0,
|
||||
"tileId": 0
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 231,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
50,
|
||||
"",
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
100,
|
||||
100,
|
||||
0,
|
||||
1
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"moveFrequency": 3,
|
||||
"moveRoute": {
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"repeat": true,
|
||||
"skippable": false,
|
||||
"wait": false
|
||||
},
|
||||
"moveSpeed": 3,
|
||||
"moveType": 0,
|
||||
"priorityType": 0,
|
||||
"stepAnime": false,
|
||||
"through": false,
|
||||
"trigger": 4,
|
||||
"walkAnime": true
|
||||
}
|
||||
],
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"name": "EV002",
|
||||
"note": "",
|
||||
"pages": [
|
||||
{
|
||||
"conditions": {
|
||||
"actorId": 1,
|
||||
"actorValid": false,
|
||||
"itemId": 1,
|
||||
"itemValid": false,
|
||||
"selfSwitchCh": "A",
|
||||
"selfSwitchValid": false,
|
||||
"switch1Id": 1,
|
||||
"switch1Valid": false,
|
||||
"switch2Id": 1,
|
||||
"switch2Valid": false,
|
||||
"variableId": 1,
|
||||
"variableValid": false,
|
||||
"variableValue": 0
|
||||
},
|
||||
"directionFix": false,
|
||||
"image": {
|
||||
"tileId": 0,
|
||||
"characterName": "Actor1MV",
|
||||
"direction": 2,
|
||||
"pattern": 1,
|
||||
"characterIndex": 0
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"moveFrequency": 3,
|
||||
"moveRoute": {
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"repeat": true,
|
||||
"skippable": false,
|
||||
"wait": false
|
||||
},
|
||||
"moveSpeed": 3,
|
||||
"moveType": 0,
|
||||
"priorityType": 1,
|
||||
"stepAnime": false,
|
||||
"through": false,
|
||||
"trigger": 0,
|
||||
"walkAnime": true
|
||||
}
|
||||
],
|
||||
"x": 4,
|
||||
"y": 4
|
||||
},
|
||||
null
|
||||
]
|
||||
}
|
||||
64446
data/Map062.json
Normal file
64446
data/Map062.json
Normal file
File diff suppressed because it is too large
Load diff
6523
data/Map063.json
Normal file
6523
data/Map063.json
Normal file
File diff suppressed because it is too large
Load diff
5536
data/Map064.json
Normal file
5536
data/Map064.json
Normal file
File diff suppressed because it is too large
Load diff
4871
data/Map065.json
Normal file
4871
data/Map065.json
Normal file
File diff suppressed because it is too large
Load diff
1967
data/Map066.json
Normal file
1967
data/Map066.json
Normal file
File diff suppressed because it is too large
Load diff
1869
data/Map067.json
Normal file
1869
data/Map067.json
Normal file
File diff suppressed because it is too large
Load diff
1910
data/Map068.json
Normal file
1910
data/Map068.json
Normal file
File diff suppressed because it is too large
Load diff
4287
data/Map069.json
Normal file
4287
data/Map069.json
Normal file
File diff suppressed because it is too large
Load diff
10780
data/Map070.json
Normal file
10780
data/Map070.json
Normal file
File diff suppressed because it is too large
Load diff
6005
data/Map071.json
Normal file
6005
data/Map071.json
Normal file
File diff suppressed because it is too large
Load diff
5567
data/Map072.json
Normal file
5567
data/Map072.json
Normal file
File diff suppressed because it is too large
Load diff
14725
data/Map073.json
Normal file
14725
data/Map073.json
Normal file
File diff suppressed because it is too large
Load diff
4727
data/Map074.json
Normal file
4727
data/Map074.json
Normal file
File diff suppressed because it is too large
Load diff
4573
data/Map075.json
Normal file
4573
data/Map075.json
Normal file
File diff suppressed because it is too large
Load diff
1766
data/Map076.json
Normal file
1766
data/Map076.json
Normal file
File diff suppressed because it is too large
Load diff
5909
data/Map077.json
Normal file
5909
data/Map077.json
Normal file
File diff suppressed because it is too large
Load diff
10993
data/Map078.json
Normal file
10993
data/Map078.json
Normal file
File diff suppressed because it is too large
Load diff
23134
data/Map079.json
Normal file
23134
data/Map079.json
Normal file
File diff suppressed because it is too large
Load diff
17052
data/Map080.json
Normal file
17052
data/Map080.json
Normal file
File diff suppressed because it is too large
Load diff
73907
data/Map081.json
Normal file
73907
data/Map081.json
Normal file
File diff suppressed because it is too large
Load diff
4840
data/Map082.json
Normal file
4840
data/Map082.json
Normal file
File diff suppressed because it is too large
Load diff
11400
data/Map083.json
Normal file
11400
data/Map083.json
Normal file
File diff suppressed because it is too large
Load diff
20394
data/Map084.json
Normal file
20394
data/Map084.json
Normal file
File diff suppressed because it is too large
Load diff
4559
data/Map085.json
Normal file
4559
data/Map085.json
Normal file
File diff suppressed because it is too large
Load diff
4535
data/Map086.json
Normal file
4535
data/Map086.json
Normal file
File diff suppressed because it is too large
Load diff
7189
data/Map087.json
Normal file
7189
data/Map087.json
Normal file
File diff suppressed because it is too large
Load diff
7888
data/Map088.json
Normal file
7888
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