Initial Commit
This commit is contained in:
commit
a3368ca976
360 changed files with 1459560 additions and 0 deletions
61
.gitignore
vendored
Normal file
61
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
# 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
|
||||
!bsxx.dat*
|
||||
!game.ini
|
||||
!package.nw
|
||||
|
||||
# Ignore
|
||||
previous_patch_sha.txt
|
||||
kabe3_save.dat
|
||||
kabe3_system.dat
|
||||
psbpack.dat
|
||||
Save*
|
||||
cg.dat
|
||||
scene.dat
|
||||
BSXScript_*
|
||||
|
||||
# Images
|
||||
!title1.rpgmvp
|
||||
!title1taiken.rpgmvp
|
||||
!aries_nin18.rpgmvp
|
||||
!aries_nin19.rpgmvp
|
||||
!aries_ninsin1.rpgmvp
|
||||
!aries_stand3c.rpgmvp
|
||||
!aries_stand4c.rpgmvp
|
||||
!aries_stand5c.rpgmvp
|
||||
!c01_15テロップ.rpgmvp
|
||||
!maruhi.rpgmvp
|
||||
!opening1_3.rpgmvp
|
||||
!opening2_3.rpgmvp
|
||||
!opening3_3.rpgmvp
|
||||
!opening4_3.rpgmvp
|
||||
!opening5_3.rpgmvp
|
||||
!opening6_2.rpgmvp
|
||||
!opening6_3.rpgmvp
|
||||
!opening6_4.rpgmvp
|
||||
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.
|
||||
191
credit.txt
Normal file
191
credit.txt
Normal file
|
|
@ -0,0 +1,191 @@
|
|||
☆VOICE
|
||||
四方山みかん
|
||||
|
||||
☆BGM
|
||||
春日森
|
||||
http://blog.livedoor.jp/ansin_bokura/
|
||||
|
||||
MusMus
|
||||
https://musmus.main.jp/
|
||||
|
||||
Tスタ【たつろーの音楽スタジオ】
|
||||
https://www.youtube.com/@TnoSTUDIO
|
||||
|
||||
Peritune
|
||||
https://peritune.com/
|
||||
|
||||
おんたま
|
||||
https://ontama-m.com/ongaku_rpg_battle.html
|
||||
|
||||
かずち
|
||||
https://dova-s.jp/_contents/author/profile055.html
|
||||
|
||||
風人 (カジンチュ)
|
||||
https://dova-s.jp/_contents/author/profile157.html
|
||||
|
||||
MFP【Marron Fields Production】 (エムエフピー)
|
||||
https://dova-s.jp/_contents/author/profile193.html
|
||||
|
||||
オオヒラセイジ
|
||||
https://dova-s.jp/_contents/author/profile317.html
|
||||
|
||||
音楽の卵
|
||||
http://ontama-m.com/
|
||||
|
||||
TOGA
|
||||
https://dova-s.jp/_contents/author/profile189.html
|
||||
|
||||
|
||||
☆CIRCLELOGO
|
||||
BunnySlime
|
||||
https://ci-en.dlsite.com/creator/28936
|
||||
|
||||
|
||||
|
||||
☆IMAGE
|
||||
(C)みにくる/Minikle
|
||||
https://quunplant.booth.pm/
|
||||
|
||||
白黒洋菓子店
|
||||
https://noir-et-blanc-patisserie.amebaownd.com/
|
||||
|
||||
ドット絵世界
|
||||
https://yms.main.jp/dotartworld/index.html
|
||||
|
||||
エタナラ
|
||||
https://etanara.fungamemake.com
|
||||
|
||||
あくた
|
||||
https://tm.lucky-duet.com/viewtopic.php?t=917
|
||||
|
||||
ゼロの魔女@Fantasy of Zero
|
||||
https://ci-en.dlsite.com/creator/6706
|
||||
|
||||
空想曲線
|
||||
https://ko10panda.booth.pm/
|
||||
|
||||
ヨルコソフト 仁芝イノ(@yoruko_soft)
|
||||
https://ci-en.dlsite.com/creator/11536/article/815654
|
||||
|
||||
ききのここ
|
||||
http://dokukinako.blog.jp/
|
||||
|
||||
ぴぽや
|
||||
https://pipoya.net
|
||||
|
||||
Wayward Martian Graphics
|
||||
|
||||
|
||||
☆PLUGIN
|
||||
しぐれん
|
||||
https://siguren400.booth.pm/items/3300534
|
||||
|
||||
トリアコンタン
|
||||
https://triacontane.blogspot.com/
|
||||
|
||||
NUUN
|
||||
https://github.com/nuun888/MZ
|
||||
|
||||
kuroudo119
|
||||
https://github.com/kuroudo119/RPGMZ-Plugin
|
||||
|
||||
ルルの協会
|
||||
https://nine-yusha.com/plugin-sprashscreen/
|
||||
|
||||
マンカインド
|
||||
https://raw.githubusercontent.com/munokura/MKR-MV-plugins/master/MKR_PlayerMoveForbid.js
|
||||
|
||||
ケケー
|
||||
https://kekeelabo.com/
|
||||
|
||||
湿度ケイ
|
||||
https://shitsudok.theblog.me/
|
||||
|
||||
Trb
|
||||
http://blog.livedoor.jp/trb_surasura/
|
||||
|
||||
砂川赳
|
||||
https://newrpg.seesaa.net/article/492543897.html
|
||||
|
||||
DarkPlasma
|
||||
https://github.com/elleonard/DarkPlasma-MZ-Plugins/tree/release
|
||||
|
||||
|
||||
Moghunter
|
||||
https://mogplugins.wordpress.com/
|
||||
|
||||
milkmonaka
|
||||
https://x.com/milkmonaka_1
|
||||
|
||||
ゆわか
|
||||
https://yuwakas.blog.shinobi.jp/
|
||||
|
||||
木星ペンギン
|
||||
|
||||
mattuup
|
||||
https://github.com/mattuup/RPGMakerMZ
|
||||
|
||||
|
||||
あわやまたな
|
||||
https://awaya3ji.seesaa.net/article/498870606.html
|
||||
|
||||
神無月サスケ
|
||||
|
||||
Ruたん
|
||||
https://torigoya-plugin.rutan.dev/
|
||||
|
||||
panda
|
||||
http://www.werepanda.jp/blog/20200822124150.html
|
||||
|
||||
ツミキ
|
||||
http://tsukimitsf.blog.fc2.com/
|
||||
|
||||
シロップ
|
||||
https://thirop.booth.pm/
|
||||
|
||||
ManoUZ
|
||||
https://store.steampowered.com/app/2214302/RPGMZ/?l=japanese
|
||||
|
||||
ArtemisJPN
|
||||
https://github.com/ArtemisJPN/RPG_MZ_PROJECT/tree/main/ARTM_PlayerSensorMZ
|
||||
|
||||
ペンギンの寝床
|
||||
https://woodpenguin.web.fc2.com/MV_Plugin/ChoiceEX.html
|
||||
|
||||
tomoaky
|
||||
https://plugin-mz.fungamemake.com/archives/1702
|
||||
|
||||
Yana
|
||||
https://x.com/yanatsuki_/
|
||||
|
||||
☆SE
|
||||
AVtuberどエロライフ
|
||||
https://avtuber.doerolife.com/
|
||||
|
||||
効果音『おっぱいをもむ音 』
|
||||
https://booth.pm/en/items/4957863
|
||||
|
||||
DLsiteクリエイター学園
|
||||
https://www.dlsite.com/maniax/circle/profile/=/maker_id/RG68582.html
|
||||
|
||||
ポケットサウンド
|
||||
https://pocket-se.info/
|
||||
|
||||
WOW Sound
|
||||
https://www.dlsite.com/maniax/circle/profile/=/maker_id/RG64198.html
|
||||
|
||||
SOUND AIRYLUVS
|
||||
ISAo
|
||||
https://airyluvs.com
|
||||
|
||||
☆TITLELOGO
|
||||
バラ色プリンス
|
||||
https://rosecolorprince.com/
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
858
data/Actors.json
Normal file
858
data/Actors.json
Normal file
|
|
@ -0,0 +1,858 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"battlerName": "",
|
||||
"characterIndex": 2,
|
||||
"characterName": "AAA_zako",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
1,
|
||||
0
|
||||
],
|
||||
"faceIndex": 3,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "天堂あまね",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"battlerName": "",
|
||||
"characterIndex": 1,
|
||||
"characterName": "AAA_zako",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
1,
|
||||
2,
|
||||
3
|
||||
],
|
||||
"faceIndex": 1,
|
||||
"faceName": "Actor1",
|
||||
"traits": [
|
||||
{
|
||||
"code": 62,
|
||||
"dataId": 3,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "ピュアフル・リリィ",
|
||||
"nickname": "",
|
||||
"note": "<CursedAction:action01>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"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": 4,
|
||||
"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": 5,
|
||||
"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": 6,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"battlerName": "Actor1_6",
|
||||
"characterIndex": 5,
|
||||
"characterName": "Actor1",
|
||||
"classId": 2,
|
||||
"equips": [
|
||||
7,
|
||||
0
|
||||
],
|
||||
"faceIndex": 5,
|
||||
"faceName": "Actor1",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "触手",
|
||||
"nickname": "",
|
||||
"note": "数人で魔法少女を拘束して輪姦\n媚薬をぶっかけて発情させる\n生徒を人質にとり魔法少女を脅してH\n弱った魔法少女をレイプ",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"battlerName": "Actor1_6",
|
||||
"characterIndex": 5,
|
||||
"characterName": "Actor1",
|
||||
"classId": 2,
|
||||
"equips": [
|
||||
7,
|
||||
0
|
||||
],
|
||||
"faceIndex": 5,
|
||||
"faceName": "Actor1",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "丸呑み触手",
|
||||
"nickname": "",
|
||||
"note": "数人で魔法少女を拘束して輪姦\n媚薬をぶっかけて発情させる\n生徒を人質にとり魔法少女を脅してH\n弱った魔法少女をレイプ",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"battlerName": "Actor1_6",
|
||||
"characterIndex": 5,
|
||||
"characterName": "Actor1",
|
||||
"classId": 2,
|
||||
"equips": [
|
||||
7,
|
||||
0
|
||||
],
|
||||
"faceIndex": 5,
|
||||
"faceName": "Actor1",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "ザコッツ",
|
||||
"nickname": "",
|
||||
"note": "数人で魔法少女を拘束して輪姦\n媚薬をぶっかけて発情させる\n生徒を人質にとり魔法少女を脅してH\n弱った魔法少女をレイプ",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"battlerName": "Actor1_7",
|
||||
"characterIndex": 6,
|
||||
"characterName": "Actor1",
|
||||
"classId": 3,
|
||||
"equips": [
|
||||
7,
|
||||
0
|
||||
],
|
||||
"faceIndex": 6,
|
||||
"faceName": "Actor1",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "サイミーン",
|
||||
"nickname": "",
|
||||
"note": "セックスを戦いと誤認\n自身を雑魚戦闘員と思い込んで奉仕\nセックスしていることに気づかない\n人格改変\n意識だけ残して体の自由を奪う",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"battlerName": "Actor1_8",
|
||||
"characterIndex": 7,
|
||||
"characterName": "Actor1",
|
||||
"classId": 3,
|
||||
"equips": [
|
||||
7,
|
||||
0
|
||||
],
|
||||
"faceIndex": 7,
|
||||
"faceName": "Actor1",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "レイパー",
|
||||
"nickname": "",
|
||||
"note": "魔法少女を拘束して腹ボコ背面駅弁\n髪を掴んでイラマチオ",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "スマホン",
|
||||
"nickname": "",
|
||||
"note": "戦闘中、目を合わせることによる段階的な催眠\n①服を脱ぐ\n②オナニーの見せつけが必殺技だと思い込む\n③戦闘=セックスだと思い込み奉仕を始める\n④敗北",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "ガマンジール",
|
||||
"nickname": "",
|
||||
"note": "服装指導\nあいさつ指導\n目上のものに対する礼儀指導",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"battlerName": "Actor1_4",
|
||||
"characterIndex": 3,
|
||||
"characterName": "Actor1",
|
||||
"classId": 5,
|
||||
"equips": [
|
||||
31,
|
||||
0
|
||||
],
|
||||
"faceIndex": 3,
|
||||
"faceName": "Actor1",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "シドウ",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "SF_People2",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "不良",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"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": 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
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "女子生徒",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "男子生徒",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "オタク",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "リリィ推しの女子生徒",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "街の人",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "教師",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"battlerName": "",
|
||||
"characterIndex": 7,
|
||||
"characterName": "SF_People2",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "女生徒",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "エリートザコッツ",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "はぐれザコッツ",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "スケルトンザコッツ",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"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": 31,
|
||||
"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": 32,
|
||||
"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": 33,
|
||||
"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": 34,
|
||||
"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": 35,
|
||||
"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": 36,
|
||||
"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": 37,
|
||||
"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": 38,
|
||||
"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": 39,
|
||||
"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": 40,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
}
|
||||
]
|
||||
10251
data/Animations.json
Normal file
10251
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
7472
data/Classes.json
Normal file
7472
data/Classes.json
Normal file
File diff suppressed because it is too large
Load diff
297984
data/CommonEvents.json
Normal file
297984
data/CommonEvents.json
Normal file
File diff suppressed because it is too large
Load diff
2556
data/Enemies.json
Normal file
2556
data/Enemies.json
Normal file
File diff suppressed because it is too large
Load diff
1733
data/Items.json
Normal file
1733
data/Items.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map001.json
Normal file
1363
data/Map001.json
Normal file
File diff suppressed because it is too large
Load diff
513
data/Map002.json
Normal file
513
data/Map002.json
Normal file
|
|
@ -0,0 +1,513 @@
|
|||
{
|
||||
"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": 3,
|
||||
"note": "",
|
||||
"parallaxLoopX": false,
|
||||
"parallaxLoopY": false,
|
||||
"parallaxName": "",
|
||||
"parallaxShow": true,
|
||||
"parallaxSx": 0,
|
||||
"parallaxSy": 0,
|
||||
"scrollType": 0,
|
||||
"specifyBattleback": false,
|
||||
"tilesetId": 1,
|
||||
"width": 3,
|
||||
"data": [
|
||||
4415,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
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": "EV001",
|
||||
"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": 221,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
},
|
||||
{
|
||||
"code": 121,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
39,
|
||||
39,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 121,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
12,
|
||||
12,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 121,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
39,
|
||||
39,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 121,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
12,
|
||||
12,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 108,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"淫乱度設定"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 313,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
31
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 122,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
7,
|
||||
7,
|
||||
0,
|
||||
0,
|
||||
30
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 122,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
8,
|
||||
8,
|
||||
0,
|
||||
0,
|
||||
60
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 357,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"PictureHeroineAdditionalEffects",
|
||||
"UpdateAdditionalEffect1",
|
||||
"追加エフェクト更新1",
|
||||
{
|
||||
"values": "EFD"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 657,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"画像指定文字列 = EFD"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 357,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"PictureHeroineAdditionalEffects",
|
||||
"UpdateAdditionalEffect2",
|
||||
"追加エフェクト更新2",
|
||||
{
|
||||
"values": "EFD"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 657,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"画像指定文字列 = EFD"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 101,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"",
|
||||
0,
|
||||
1,
|
||||
1,
|
||||
""
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 401,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"OPをスキップしますか?"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 102,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
[
|
||||
"はい",
|
||||
"いいえ"
|
||||
],
|
||||
-1,
|
||||
-1,
|
||||
2,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 402,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
0,
|
||||
"はい"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 121,
|
||||
"indent": 1,
|
||||
"parameters": [
|
||||
325,
|
||||
325,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 221,
|
||||
"indent": 1,
|
||||
"parameters": []
|
||||
},
|
||||
{
|
||||
"code": 231,
|
||||
"indent": 1,
|
||||
"parameters": [
|
||||
8,
|
||||
"UIAssets/Common/UI_Common_Window_Location",
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
100,
|
||||
100,
|
||||
255,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 231,
|
||||
"indent": 1,
|
||||
"parameters": [
|
||||
1,
|
||||
"UIAssets/Common/UI_Common_BG_Right",
|
||||
0,
|
||||
0,
|
||||
100,
|
||||
0,
|
||||
100,
|
||||
100,
|
||||
255,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 357,
|
||||
"indent": 1,
|
||||
"parameters": [
|
||||
"PictureHeroineDisplay",
|
||||
"PictureDisplay",
|
||||
"ピクチャ表示",
|
||||
{
|
||||
"values": "MS,NP,BN,EN,MN,EFD,event",
|
||||
"applyTone": "false",
|
||||
"position": "field"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 657,
|
||||
"indent": 1,
|
||||
"parameters": [
|
||||
"数値リスト = MS,NP,BN,EN,MN,EFD,event"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 657,
|
||||
"indent": 1,
|
||||
"parameters": [
|
||||
"色調変更を適用 = false"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 657,
|
||||
"indent": 1,
|
||||
"parameters": [
|
||||
"PCの位置 = field"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 230,
|
||||
"indent": 1,
|
||||
"parameters": [
|
||||
5
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 201,
|
||||
"indent": 1,
|
||||
"parameters": [
|
||||
0,
|
||||
21,
|
||||
29,
|
||||
6,
|
||||
2,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 205,
|
||||
"indent": 1,
|
||||
"parameters": [
|
||||
-1,
|
||||
{
|
||||
"list": [
|
||||
{
|
||||
"code": 40,
|
||||
"indent": null
|
||||
},
|
||||
{
|
||||
"code": 0
|
||||
}
|
||||
],
|
||||
"repeat": false,
|
||||
"skippable": false,
|
||||
"wait": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 505,
|
||||
"indent": 1,
|
||||
"parameters": [
|
||||
{
|
||||
"code": 40,
|
||||
"indent": null
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 222,
|
||||
"indent": 1,
|
||||
"parameters": []
|
||||
},
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 1,
|
||||
"parameters": []
|
||||
},
|
||||
{
|
||||
"code": 402,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
1,
|
||||
"いいえ"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 201,
|
||||
"indent": 1,
|
||||
"parameters": [
|
||||
0,
|
||||
27,
|
||||
11,
|
||||
16,
|
||||
8,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 205,
|
||||
"indent": 1,
|
||||
"parameters": [
|
||||
-1,
|
||||
{
|
||||
"list": [
|
||||
{
|
||||
"code": 40,
|
||||
"indent": null
|
||||
},
|
||||
{
|
||||
"code": 0
|
||||
}
|
||||
],
|
||||
"repeat": false,
|
||||
"skippable": false,
|
||||
"wait": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 505,
|
||||
"indent": 1,
|
||||
"parameters": [
|
||||
{
|
||||
"code": 40,
|
||||
"indent": null
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 1,
|
||||
"parameters": []
|
||||
},
|
||||
{
|
||||
"code": 404,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
},
|
||||
{
|
||||
"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": 3,
|
||||
"walkAnime": false
|
||||
}
|
||||
],
|
||||
"x": 0,
|
||||
"y": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
1367
data/Map003.json
Normal file
1367
data/Map003.json
Normal file
File diff suppressed because it is too large
Load diff
4501
data/Map004.json
Normal file
4501
data/Map004.json
Normal file
File diff suppressed because it is too large
Load diff
4474
data/Map005.json
Normal file
4474
data/Map005.json
Normal file
File diff suppressed because it is too large
Load diff
2384
data/Map006.json
Normal file
2384
data/Map006.json
Normal file
File diff suppressed because it is too large
Load diff
7384
data/Map007.json
Normal file
7384
data/Map007.json
Normal file
File diff suppressed because it is too large
Load diff
4400
data/Map008.json
Normal file
4400
data/Map008.json
Normal file
File diff suppressed because it is too large
Load diff
11094
data/Map009.json
Normal file
11094
data/Map009.json
Normal file
File diff suppressed because it is too large
Load diff
170
data/Map010.json
Normal file
170
data/Map010.json
Normal file
|
|
@ -0,0 +1,170 @@
|
|||
{
|
||||
"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": 3,
|
||||
"note": "",
|
||||
"parallaxLoopX": false,
|
||||
"parallaxLoopY": false,
|
||||
"parallaxName": "",
|
||||
"parallaxShow": true,
|
||||
"parallaxSx": 0,
|
||||
"parallaxSy": 0,
|
||||
"scrollType": 0,
|
||||
"specifyBattleback": true,
|
||||
"tilesetId": 5,
|
||||
"width": 3,
|
||||
"data": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
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": "3Fからゲームを始める",
|
||||
"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": "AAA_EV_icon",
|
||||
"direction": 2,
|
||||
"pattern": 0,
|
||||
"characterIndex": 0
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 201,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
0,
|
||||
12,
|
||||
7,
|
||||
3,
|
||||
2,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"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": 1,
|
||||
"y": 2
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
5162
data/Map011.json
Normal file
5162
data/Map011.json
Normal file
File diff suppressed because it is too large
Load diff
7728
data/Map012.json
Normal file
7728
data/Map012.json
Normal file
File diff suppressed because it is too large
Load diff
5390
data/Map013.json
Normal file
5390
data/Map013.json
Normal file
File diff suppressed because it is too large
Load diff
18407
data/Map014.json
Normal file
18407
data/Map014.json
Normal file
File diff suppressed because it is too large
Load diff
8826
data/Map015.json
Normal file
8826
data/Map015.json
Normal file
File diff suppressed because it is too large
Load diff
170
data/Map016.json
Normal file
170
data/Map016.json
Normal file
|
|
@ -0,0 +1,170 @@
|
|||
{
|
||||
"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": 3,
|
||||
"note": "",
|
||||
"parallaxLoopX": false,
|
||||
"parallaxLoopY": false,
|
||||
"parallaxName": "",
|
||||
"parallaxShow": true,
|
||||
"parallaxSx": 0,
|
||||
"parallaxSy": 0,
|
||||
"scrollType": 0,
|
||||
"specifyBattleback": true,
|
||||
"tilesetId": 5,
|
||||
"width": 3,
|
||||
"data": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
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": "4Fからゲームを始める",
|
||||
"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": "AAA_EV_icon",
|
||||
"direction": 2,
|
||||
"pattern": 0,
|
||||
"characterIndex": 0
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 201,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
0,
|
||||
73,
|
||||
5,
|
||||
8,
|
||||
8,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"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": 1,
|
||||
"y": 2
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
329
data/Map017.json
Normal file
329
data/Map017.json
Normal file
|
|
@ -0,0 +1,329 @@
|
|||
{
|
||||
"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": 3,
|
||||
"note": "",
|
||||
"parallaxLoopX": false,
|
||||
"parallaxLoopY": false,
|
||||
"parallaxName": "",
|
||||
"parallaxShow": true,
|
||||
"parallaxSx": 0,
|
||||
"parallaxSy": 0,
|
||||
"scrollType": 0,
|
||||
"specifyBattleback": true,
|
||||
"tilesetId": 5,
|
||||
"width": 3,
|
||||
"data": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
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": "2Fからゲームを始める",
|
||||
"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": "AAA_EV_icon",
|
||||
"direction": 2,
|
||||
"pattern": 0,
|
||||
"characterIndex": 0
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 201,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
0,
|
||||
21,
|
||||
29,
|
||||
6,
|
||||
2,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"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": 1,
|
||||
"y": 2
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"name": "2Fからゲームを始める",
|
||||
"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": "AAA_EV_icon",
|
||||
"direction": 2,
|
||||
"pattern": 0,
|
||||
"characterIndex": 0
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 101,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"",
|
||||
0,
|
||||
0,
|
||||
2,
|
||||
""
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 401,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"廊下初回イベントをスキップ"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 357,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"PANDA_ControlSelfSwitches",
|
||||
"SET",
|
||||
"セルフスイッチのON",
|
||||
{
|
||||
"mapID": "21",
|
||||
"eventID": "26",
|
||||
"switchID": "A"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 657,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"マップID = 21"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 657,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"イベントID = 26"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 657,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"セルフスイッチ = A"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 357,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"PANDA_ControlSelfSwitches",
|
||||
"SET",
|
||||
"セルフスイッチのON",
|
||||
{
|
||||
"mapID": "21",
|
||||
"eventID": "7",
|
||||
"switchID": "A"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 657,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"マップID = 21"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 657,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"イベントID = 7"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 657,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"セルフスイッチ = A"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 201,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
0,
|
||||
21,
|
||||
3,
|
||||
7,
|
||||
2,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"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": 2,
|
||||
"y": 1
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
29856
data/Map018.json
Normal file
29856
data/Map018.json
Normal file
File diff suppressed because it is too large
Load diff
2415
data/Map019.json
Normal file
2415
data/Map019.json
Normal file
File diff suppressed because it is too large
Load diff
2292
data/Map020.json
Normal file
2292
data/Map020.json
Normal file
File diff suppressed because it is too large
Load diff
10720
data/Map021.json
Normal file
10720
data/Map021.json
Normal file
File diff suppressed because it is too large
Load diff
3315
data/Map022.json
Normal file
3315
data/Map022.json
Normal file
File diff suppressed because it is too large
Load diff
865
data/Map023.json
Normal file
865
data/Map023.json
Normal file
|
|
@ -0,0 +1,865 @@
|
|||
{
|
||||
"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": 10,
|
||||
"note": "",
|
||||
"parallaxLoopX": false,
|
||||
"parallaxLoopY": false,
|
||||
"parallaxName": "Mountains1",
|
||||
"parallaxShow": true,
|
||||
"parallaxSx": 0,
|
||||
"parallaxSy": 0,
|
||||
"scrollType": 0,
|
||||
"specifyBattleback": true,
|
||||
"tilesetId": 2,
|
||||
"width": 10,
|
||||
"data": [
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
2816,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
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": "2Fからゲームを始める",
|
||||
"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": "AAA_EV_icon",
|
||||
"direction": 2,
|
||||
"pattern": 0,
|
||||
"characterIndex": 0
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 201,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
0,
|
||||
9,
|
||||
7,
|
||||
2,
|
||||
2,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"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": 1,
|
||||
"y": 2
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"name": "移動(c_02_1_撮影会場A)1",
|
||||
"note": "<TE:移動↑>",
|
||||
"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": true,
|
||||
"image": {
|
||||
"tileId": 0,
|
||||
"characterName": "!Flame",
|
||||
"direction": 8,
|
||||
"pattern": 1,
|
||||
"characterIndex": 7
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 201,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
0,
|
||||
34,
|
||||
7,
|
||||
18,
|
||||
8,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"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": true,
|
||||
"through": false,
|
||||
"trigger": 1,
|
||||
"walkAnime": true
|
||||
}
|
||||
],
|
||||
"x": 3,
|
||||
"y": 2
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"name": "2Fからゲームを始める",
|
||||
"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": "AAA_EV_icon",
|
||||
"direction": 2,
|
||||
"pattern": 0,
|
||||
"characterIndex": 0
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 108,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"変身解除イベントから開始"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 201,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
0,
|
||||
28,
|
||||
6,
|
||||
5,
|
||||
2,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"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": 5,
|
||||
"y": 2
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
1908
data/Map024.json
Normal file
1908
data/Map024.json
Normal file
File diff suppressed because it is too large
Load diff
5570
data/Map025.json
Normal file
5570
data/Map025.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map026.json
Normal file
1363
data/Map026.json
Normal file
File diff suppressed because it is too large
Load diff
9416
data/Map027.json
Normal file
9416
data/Map027.json
Normal file
File diff suppressed because it is too large
Load diff
12160
data/Map028.json
Normal file
12160
data/Map028.json
Normal file
File diff suppressed because it is too large
Load diff
171
data/Map029.json
Normal file
171
data/Map029.json
Normal file
|
|
@ -0,0 +1,171 @@
|
|||
{
|
||||
"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": 3,
|
||||
"note": "",
|
||||
"parallaxLoopX": false,
|
||||
"parallaxLoopY": false,
|
||||
"parallaxName": "",
|
||||
"parallaxShow": true,
|
||||
"parallaxSx": 0,
|
||||
"parallaxSy": 0,
|
||||
"scrollType": 0,
|
||||
"specifyBattleback": true,
|
||||
"tilesetId": 5,
|
||||
"width": 3,
|
||||
"data": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
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": "移動(d_01_1_廊下A 3F)",
|
||||
"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": true,
|
||||
"image": {
|
||||
"tileId": 0,
|
||||
"characterName": "!Flame",
|
||||
"direction": 8,
|
||||
"pattern": 1,
|
||||
"characterIndex": 7
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 201,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
0,
|
||||
37,
|
||||
17,
|
||||
8,
|
||||
2,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"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": true,
|
||||
"through": false,
|
||||
"trigger": 0,
|
||||
"walkAnime": true
|
||||
}
|
||||
],
|
||||
"x": 1,
|
||||
"y": 2
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
4183
data/Map030.json
Normal file
4183
data/Map030.json
Normal file
File diff suppressed because it is too large
Load diff
3120
data/Map031.json
Normal file
3120
data/Map031.json
Normal file
File diff suppressed because it is too large
Load diff
19490
data/Map032.json
Normal file
19490
data/Map032.json
Normal file
File diff suppressed because it is too large
Load diff
5985
data/Map033.json
Normal file
5985
data/Map033.json
Normal file
File diff suppressed because it is too large
Load diff
5831
data/Map034.json
Normal file
5831
data/Map034.json
Normal file
File diff suppressed because it is too large
Load diff
2717
data/Map035.json
Normal file
2717
data/Map035.json
Normal file
File diff suppressed because it is too large
Load diff
6059
data/Map036.json
Normal file
6059
data/Map036.json
Normal file
File diff suppressed because it is too large
Load diff
7150
data/Map037.json
Normal file
7150
data/Map037.json
Normal file
File diff suppressed because it is too large
Load diff
7750
data/Map038.json
Normal file
7750
data/Map038.json
Normal file
File diff suppressed because it is too large
Load diff
5278
data/Map039.json
Normal file
5278
data/Map039.json
Normal file
File diff suppressed because it is too large
Load diff
5352
data/Map040.json
Normal file
5352
data/Map040.json
Normal file
File diff suppressed because it is too large
Load diff
5469
data/Map041.json
Normal file
5469
data/Map041.json
Normal file
File diff suppressed because it is too large
Load diff
5650
data/Map042.json
Normal file
5650
data/Map042.json
Normal file
File diff suppressed because it is too large
Load diff
18138
data/Map043.json
Normal file
18138
data/Map043.json
Normal file
File diff suppressed because it is too large
Load diff
4106
data/Map044.json
Normal file
4106
data/Map044.json
Normal file
File diff suppressed because it is too large
Load diff
16927
data/Map045.json
Normal file
16927
data/Map045.json
Normal file
File diff suppressed because it is too large
Load diff
4064
data/Map046.json
Normal file
4064
data/Map046.json
Normal file
File diff suppressed because it is too large
Load diff
14782
data/Map047.json
Normal file
14782
data/Map047.json
Normal file
File diff suppressed because it is too large
Load diff
3690
data/Map048.json
Normal file
3690
data/Map048.json
Normal file
File diff suppressed because it is too large
Load diff
5383
data/Map049.json
Normal file
5383
data/Map049.json
Normal file
File diff suppressed because it is too large
Load diff
5923
data/Map050.json
Normal file
5923
data/Map050.json
Normal file
File diff suppressed because it is too large
Load diff
5327
data/Map051.json
Normal file
5327
data/Map051.json
Normal file
File diff suppressed because it is too large
Load diff
3148
data/Map052.json
Normal file
3148
data/Map052.json
Normal file
File diff suppressed because it is too large
Load diff
2413
data/Map053.json
Normal file
2413
data/Map053.json
Normal file
File diff suppressed because it is too large
Load diff
1507
data/Map054.json
Normal file
1507
data/Map054.json
Normal file
File diff suppressed because it is too large
Load diff
3956
data/Map055.json
Normal file
3956
data/Map055.json
Normal file
File diff suppressed because it is too large
Load diff
4590
data/Map056.json
Normal file
4590
data/Map056.json
Normal file
File diff suppressed because it is too large
Load diff
2393
data/Map057.json
Normal file
2393
data/Map057.json
Normal file
File diff suppressed because it is too large
Load diff
2311
data/Map058.json
Normal file
2311
data/Map058.json
Normal file
File diff suppressed because it is too large
Load diff
2727
data/Map059.json
Normal file
2727
data/Map059.json
Normal file
File diff suppressed because it is too large
Load diff
1437
data/Map060.json
Normal file
1437
data/Map060.json
Normal file
File diff suppressed because it is too large
Load diff
2746
data/Map061.json
Normal file
2746
data/Map061.json
Normal file
File diff suppressed because it is too large
Load diff
5805
data/Map062.json
Normal file
5805
data/Map062.json
Normal file
File diff suppressed because it is too large
Load diff
5272
data/Map063.json
Normal file
5272
data/Map063.json
Normal file
File diff suppressed because it is too large
Load diff
3235
data/Map064.json
Normal file
3235
data/Map064.json
Normal file
File diff suppressed because it is too large
Load diff
4944
data/Map065.json
Normal file
4944
data/Map065.json
Normal file
File diff suppressed because it is too large
Load diff
3165
data/Map066.json
Normal file
3165
data/Map066.json
Normal file
File diff suppressed because it is too large
Load diff
3741
data/Map067.json
Normal file
3741
data/Map067.json
Normal file
File diff suppressed because it is too large
Load diff
9777
data/Map068.json
Normal file
9777
data/Map068.json
Normal file
File diff suppressed because it is too large
Load diff
7812
data/Map069.json
Normal file
7812
data/Map069.json
Normal file
File diff suppressed because it is too large
Load diff
4798
data/Map070.json
Normal file
4798
data/Map070.json
Normal file
File diff suppressed because it is too large
Load diff
7667
data/Map071.json
Normal file
7667
data/Map071.json
Normal file
File diff suppressed because it is too large
Load diff
4401
data/Map072.json
Normal file
4401
data/Map072.json
Normal file
File diff suppressed because it is too large
Load diff
3293
data/Map073.json
Normal file
3293
data/Map073.json
Normal file
File diff suppressed because it is too large
Load diff
1838
data/Map074.json
Normal file
1838
data/Map074.json
Normal file
File diff suppressed because it is too large
Load diff
2848
data/Map075.json
Normal file
2848
data/Map075.json
Normal file
File diff suppressed because it is too large
Load diff
2569
data/Map076.json
Normal file
2569
data/Map076.json
Normal file
File diff suppressed because it is too large
Load diff
3367
data/Map077.json
Normal file
3367
data/Map077.json
Normal file
File diff suppressed because it is too large
Load diff
12177
data/Map078.json
Normal file
12177
data/Map078.json
Normal file
File diff suppressed because it is too large
Load diff
6646
data/Map079.json
Normal file
6646
data/Map079.json
Normal file
File diff suppressed because it is too large
Load diff
4868
data/Map080.json
Normal file
4868
data/Map080.json
Normal file
File diff suppressed because it is too large
Load diff
3756
data/Map081.json
Normal file
3756
data/Map081.json
Normal file
File diff suppressed because it is too large
Load diff
6818
data/Map082.json
Normal file
6818
data/Map082.json
Normal file
File diff suppressed because it is too large
Load diff
5926
data/Map083.json
Normal file
5926
data/Map083.json
Normal file
File diff suppressed because it is too large
Load diff
1802
data/Map084.json
Normal file
1802
data/Map084.json
Normal file
File diff suppressed because it is too large
Load diff
8634
data/Map085.json
Normal file
8634
data/Map085.json
Normal file
File diff suppressed because it is too large
Load diff
2272
data/Map086.json
Normal file
2272
data/Map086.json
Normal file
File diff suppressed because it is too large
Load diff
2290
data/Map087.json
Normal file
2290
data/Map087.json
Normal file
File diff suppressed because it is too large
Load diff
15938
data/Map088.json
Normal file
15938
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