Initial Commit

This commit is contained in:
dazedanon 2025-05-22 10:07:29 -05:00
commit bdc63ccb11
493 changed files with 2275659 additions and 0 deletions

172
.gitignore vendored Normal file
View file

@ -0,0 +1,172 @@
# 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*
Game_ErrorLog.txt
# Images
!icon1506.png
!icon1507.png
!icon1508.png
!icon1509.png
!icon1510.png
!icon1511.png
!icon2002.png
!icon2003.png
!icon2004.png
!icon2005.png
!icon2006.png
!icon2007.png
!22_kikyou.png
!title2.png
!title_buttom.png
!title.jpg
!artifact_base.png
!artifact_fotter.png
!artifact_guaid.png
!artifact_setumei.png
!btl_icon.png
!btl_player_icon999.png
!config_base.png
!config_fotter.png
!config_header.png
!crs_lavel.png
!Csel_base1_1.png
!Csel_base2_1.png
!Csel_equip.png
!equip_base.png
!equip_fotter.png
!equip_gen.png
!equip_list.png
!exp_b1.png
!exp_b2.png
!exp_base.png
!exp_base2.png
!exp_fotter.png
!help_base.png
!Hste2_base.png
!itemskill_base0.png
!itemskill_base1.png
!itemskill_base2.png
!item_base.png
!kaisou_base.png
!kaisou_fotter.png
!kaisou_thum.png
!kaisou_thum11.png
!kaisou_thum7.png
!menu_base.png
!menu_button.png
!menu_button2.png
!menu_cw0.png
!menu_cw1.png
!menu_cw10.png
!menu_cw11.png
!menu_cw12.png
!menu_cw13.png
!menu_cw2.png
!menu_cw24.png
!menu_cw25.png
!menu_cw26.png
!menu_cw3.png
!menu_cw33.png
!menu_cw4.png
!menu_cw5.png
!menu_cw6.png
!menu_cw65.png
!menu_cw7.png
!menu_cw8.png
!menu_cw9.png
!menu_cw_st.png
!menu_icon.png
!pt_base.png
!pt_fotter.png
!pt_seisin.png
!pt_st.png
!quest_base0.png
!quest_base1.png
!quest_icon2.png
!ryugyoku_base.png
!ryugyoku_header.png
!ryugyoku_list.png
!ryugyoku_rb.png
!ryugyoku_rt.png
!shop_base1.png
!shop_base2.png
!shop_kessai1.png
!shop_kessai2.png
!shop_r1.png
!shop_r2.png
!shop_ste.png
!skill_icon.png
!sl_header.png
!sl_label.png
!steH_base.png
!steH_btn.png
!steH_list.png
!steH_window2.png
!steH_window3.png
!steH_window4.png
!ste_base.png
!ste_fotter.png
!ste_label.png
!ste_status.png
!z026_song.png
!sousa_houhou_1.png
!sousa_houhou_2.png
!sr0.png
!sr13.png
!\[name\]actor0_name.png
!\[name\]actor10_name.png
!\[name\]actor11_name.png
!\[name\]actor12_name.png
!\[name\]actor13_name.png
!\[name\]actor14_name.png
!\[name\]actor15_name.png
!\[name\]actor16_name.png
!\[name\]actor17_name.png
!\[name\]actor18_name.png
!\[name\]actor19_name.png
!\[name\]actor1_name.png
!\[name\]actor20_name.png
!\[name\]actor21_name.png
!\[name\]actor22_name.png
!\[name\]actor2_name.png
!\[name\]actor3_name.png
!\[name\]actor4_name.png
!\[name\]actor5_name.png
!\[name\]actor66_name.png
!\[name\]actor6_name.png
!\[name\]actor7_name.png
!\[name\]actor8_name.png
!\[name\]actor9_name.png

14
GameUpdate.bat Normal file
View 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
View 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
View 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.

34
credit.txt Normal file
View file

@ -0,0 +1,34 @@
■プラグイン
Moghunter様 https://mogplugins.wordpress.com/
うたかたの夢跡 赤月智平様 https://www.utakata-no-yume.net/
ペンギンの寝床様 https://woodpenguin.web.fc2.com/MV_Plugin/index.html
くろうど様 https://blog.goo.ne.jp/kuroudo119
Yanfly様 http://yanfly.moe/
茶の助様 http://tyamvplugin.blog.shinobi.jp/
tomoaky様  https://twitter.com/tomoaky
やな様
ayatam様 https://ayatam.wixsite.com/index
まっつ https://x.com/mattuup
DarkPlasma様 https://elleonard.github.io/DarkPlasma-MZ-Plugins/index.html
tomoaky様   https://x.com/tomoaky
マンカインド様 https://mankind-games.blogspot.com/
■画像等
ユーディオ 自作ゲーム置き場様 http://yuudio50.blog.2nt.com/
七三ゆきのアトリエ様 https://nanamiyuki.com/
エタナラ様 https://etanara.com
jaja様
霧島万様
《お豆腐村》様 https://x.com/otofumura
BIT/O様 http://bit-orchard.hatenablog.com/
■音声等
OtoLogic様 https://otologic.jp/
タイガーリリー様/cv:涼貴涼様
音声素材Pincree 様

BIN
icudtl.dat Normal file

Binary file not shown.

12
package.json Normal file
View file

@ -0,0 +1,12 @@
{
"name": "",
"main": "www/index.html",
"js-flags": "--expose-gc",
"window": {
"title": "",
"toolbar": false,
"width": 816,
"height": 624,
"icon": "www/icon/icon.png"
}
}

3
patch-config.txt Normal file
View file

@ -0,0 +1,3 @@
username=dazed-translations
repo=dragon-blood
branch=main

109
patch.bat Normal file
View file

@ -0,0 +1,109 @@
@echo off
setlocal EnableExtensions EnableDelayedExpansion
echo Checking for pwsh...
set _my_shell=pwsh
REM Check if pwsh.exe exists
where /q !_my_shell!
if !errorlevel! neq 0 (
echo pwsh not found. Falling back to powershell...
REM If pwsh is not found, set to powershell
set _my_shell=powershell
REM Check if powershell.exe exists
echo Checking for powershell...
where /q !_my_shell!
if !errorlevel! neq 0 (
echo.Error: Powershell not found!
pause
exit /B 1
) else (
echo powershell found.
)
) else (
echo pwsh found.
)
echo Using !_my_shell! for script execution.
REM Check if patch-config.txt exists
if not exist patch-config.txt (
echo "Config file (patch-config.txt) not found! Assuming no patching needed."
pause
exit /b
)
REM Read configuration from file
for /f "tokens=1,2 delims==" %%a in (patch-config.txt) do (
if "%%a"=="username" set "username=%%b"
if "%%a"=="repo" set "repo=%%b"
if "%%a"=="branch" set "branch=%%b"
)
REM Get the latest hash
echo "Getting latest commit SHA hash"
!_my_shell! -Command "(Invoke-RestMethod -Uri 'https://gitgud.io/api/v4/projects/%username%%%2F%repo%/repository/branches/%branch%').commit.id" > latest_patch_sha.txt
REM Read the latest SHA from the file
set /p latest_patch_sha=<latest_patch_sha.txt
REM Check if previous_patch_sha.txt exists
if not exist previous_patch_sha.txt (
echo "Previous SHA hash not found!"
echo "Assuming first time patching..."
goto download_extract
)
REM Read the stored SHA from previous check
set /p previous_patch_sha=<previous_patch_sha.txt
REM Trim whitespace from SHA strings
set "previous_patch_sha=%previous_patch_sha: =%"
set "latest_patch_sha=%latest_patch_sha: =%"
REM Compare trimmed SHAs
if "%latest_patch_sha%" neq "%previous_patch_sha%" (
echo "Update found! Patching..."
goto download_extract
) else (
echo "Patch is up to date."
)
REM Delete latest_patch_sha.txt
del latest_patch_sha.txt
endlocal
pause
exit /b
:download_extract
REM Escape single quotes in paths
set "escaped_cd=%CD:'=''%"
REM Download zip file
echo "Downloading latest patch..."
!_my_shell! -Command "Set-Location -LiteralPath '%escaped_cd%'; Invoke-WebRequest -Uri 'https://gitgud.io/%username%/%repo%/-/archive/%branch%/%repo%-%branch%.zip' -OutFile 'repo.zip'"
if !errorlevel! neq 0 (
pause
exit /b
)
REM Extract contents, overwriting conflicts
echo "Extracting..."
!_my_shell! -Command "Set-Location -LiteralPath '%escaped_cd%'; Expand-Archive -Path '.\repo.zip' -DestinationPath '.' -Force"
echo "Applying patch..."
xcopy /s /e /y "%repo%-%branch%\*" "."
REM Clean up
echo "Cleaning up..."
del repo.zip
rmdir /s /q "%repo%-%branch%"
del latest_patch_sha.txt
REM Store latest SHA for next check
echo %latest_patch_sha% > previous_patch_sha.txt
endlocal
pause
exit /b

74
patch.sh Normal file
View file

@ -0,0 +1,74 @@
#!/bin/bash
check_dependency() {
if ! command -v "$1" > /dev/null 2>&1; then
echo "Error: '$1' is not installed. Please install it using 'pkg install $1'."
exit 1
fi
}
# Check for jq, unzip, and curl
check_dependency jq
check_dependency unzip
check_dependency curl
CONFIG_FILE="patch-config.txt"
# Check if CONFIG_FILE exists
if [ ! -f "$CONFIG_FILE" ]; then
echo "Config file '$CONFIG_FILE' not found! Assuming no patching needed."
exit 0
fi
# Convert line endings to Unix format
sed -i 's/\r$//' "$CONFIG_FILE"
# Debug information
echo "Current directory: $(pwd)"
echo "Config file path: $(pwd)/$CONFIG_FILE"
# Read configuration from file
. "$(pwd)/$CONFIG_FILE"
# Get the latest hash
echo "Getting latest commit SHA hash"
latest_patch_sha=$(curl -s "https://gitgud.io/api/v4/projects/$username%2F$repo/repository/branches/$branch" | jq -r '.commit.id')
download_extract() {
# Download zip file
echo "Downloading latest patch..."
curl -sL "https://gitgud.io/$username/$repo/-/archive/$branch/$repo-$branch.zip" -o repo.zip
# Extract contents, overwriting conflicts
echo "Extracting..."
unzip -qo repo.zip
echo "Applying patch..."
cp -r "$repo-$branch/"* .
echo "Cleaning up..."
rm repo.zip
rm -rf "$repo-$branch"
rm -f latest_patch_sha.txt
# Store latest SHA for next check
echo "$latest_patch_sha" > previous_patch_sha.txt
}
# Check if previous_patch_sha.txt exists
if [ ! -f previous_patch_sha.txt ]; then
echo "Previous SHA hash not found!"
echo "Assuming first time patching..."
download_extract
else
# Read the stored SHA from previous check
previous_patch_sha=$(cat previous_patch_sha.txt)
# Compare trimmed SHAs
if [ "$latest_patch_sha" != "$previous_patch_sha" ]; then
echo "Update found! Patching..."
download_extract
else
echo "Patch is up to date."
fi
fi

279
www/data/Actors.json Normal file
View file

@ -0,0 +1,279 @@
[
null,
{
"id": 1,
"battlerName": "",
"characterIndex": 2,
"characterName": "1",
"classId": 1,
"equips": [
0,
0,
0,
0,
0
],
"faceIndex": 0,
"faceName": "rinkamitsuki",
"traits": [],
"initialLevel": 1,
"maxLevel": 99,
"name": "緋川リンカ",
"nickname": "",
"note": "",
"profile": ""
},
{
"id": 2,
"battlerName": "",
"characterIndex": 0,
"characterName": "2",
"classId": 1,
"equips": [
0,
0,
0,
0,
0
],
"faceIndex": 4,
"faceName": "rinkamitsuki",
"traits": [],
"initialLevel": 1,
"maxLevel": 99,
"name": "藍川ミツキ",
"nickname": "",
"note": "",
"profile": ""
},
{
"id": 3,
"battlerName": "",
"characterIndex": 0,
"characterName": "player",
"classId": 3,
"equips": [
0,
0,
0,
0,
0
],
"faceIndex": 0,
"faceName": "",
"traits": [],
"initialLevel": 1,
"maxLevel": 99,
"name": "",
"nickname": "",
"note": "",
"profile": ""
},
{
"id": 4,
"battlerName": "",
"characterIndex": 6,
"characterName": "1",
"classId": 1,
"equips": [
0,
0,
0,
0,
0
],
"faceIndex": 0,
"faceName": "",
"traits": [],
"initialLevel": 1,
"maxLevel": 99,
"name": "リンカ幼少期",
"nickname": "",
"note": "",
"profile": ""
},
{
"id": 5,
"battlerName": "",
"characterIndex": 5,
"characterName": "player",
"classId": 3,
"equips": [
0,
0,
0,
0,
0
],
"faceIndex": 0,
"faceName": "",
"traits": [],
"initialLevel": 1,
"maxLevel": 99,
"name": "P幼少期",
"nickname": "",
"note": "",
"profile": ""
},
{
"id": 6,
"battlerName": "",
"characterIndex": 2,
"characterName": "2",
"classId": 1,
"equips": [
0,
0,
0,
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,
0,
0,
0
],
"faceIndex": 0,
"faceName": "",
"traits": [],
"initialLevel": 1,
"maxLevel": 99,
"name": "",
"nickname": "",
"note": "",
"profile": ""
},
{
"id": 8,
"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": 9,
"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": 10,
"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": 11,
"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": 12,
"battlerName": "",
"characterIndex": 0,
"characterName": "",
"classId": 1,
"equips": [
0,
0,
0,
0,
0
],
"faceIndex": 0,
"faceName": "",
"traits": [],
"initialLevel": 1,
"maxLevel": 99,
"name": "",
"nickname": "",
"note": "",
"profile": ""
}
]

132188
www/data/Animations.json Normal file

File diff suppressed because it is too large Load diff

148
www/data/Armors.json Normal file
View file

@ -0,0 +1,148 @@
[
null,
{
"id": 1,
"atypeId": 5,
"description": "",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 128,
"name": "盾",
"note": "",
"params": [
0,
0,
0,
10,
0,
0,
0,
0
],
"price": 300
},
{
"id": 2,
"atypeId": 1,
"description": "",
"etypeId": 3,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 130,
"name": "帽子",
"note": "",
"params": [
0,
0,
0,
10,
0,
0,
0,
0
],
"price": 300
},
{
"id": 3,
"atypeId": 1,
"description": "",
"etypeId": 4,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 135,
"name": "服",
"note": "",
"params": [
0,
0,
0,
10,
0,
0,
0,
0
],
"price": 300
},
{
"id": 4,
"atypeId": 1,
"description": "",
"etypeId": 4,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 10
},
{
"code": 22,
"dataId": 1,
"value": 10
},
{
"code": 23,
"dataId": 0,
"value": 10
}
],
"iconIndex": 87,
"name": "",
"note": "",
"params": [
0,
0,
0,
500,
0,
500,
500,
0
],
"price": 0
},
{
"id": 5,
"atypeId": 0,
"description": "",
"etypeId": 2,
"traits": [
{
"code": 22,
"dataId": 1,
"value": 0
}
],
"iconIndex": 0,
"name": "",
"note": "",
"params": [
0,
0,
0,
0,
0,
0,
0,
0
],
"price": 0
}
]

1
www/data/BattleHUD.json Normal file
View file

@ -0,0 +1 @@
[]

3487
www/data/Classes.json Normal file

File diff suppressed because it is too large Load diff

171103
www/data/CommonEvents.json Normal file

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,104 @@
{
"Scene_Battle": {
"WindowLayer": {
"2,Window_PartyCommand": {
"x": 52,
"y": 534,
"width": 192,
"height": 110,
"opacity": 0,
"hidden": false,
"_customFontSize": 28,
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"3,Window_ActorCommand": {
"x": 123,
"y": 611,
"width": 192,
"height": 180,
"opacity": 0,
"hidden": false,
"_customFontSize": 28,
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"8,Window_BattleEnemy": {
"x": 123,
"y": 445,
"width": 816,
"height": 180,
"opacity": 0,
"hidden": false,
"_customFontSize": 28,
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"5,Window_BattleSkill": {
"x": 111,
"y": 444,
"width": 816,
"height": 180,
"opacity": 0,
"hidden": false,
"_customFontSize": 28,
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"4,Window_Help": {
"x": 118,
"y": 0,
"width": 816,
"height": 108,
"opacity": 0,
"hidden": false,
"_customFontSize": 28,
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"6,Window_BattleItem": {
"x": 160,
"y": 447,
"width": 816,
"height": 180,
"opacity": 0,
"hidden": false,
"_customFontSize": 28,
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"7,Window_BattleActor": {
"x": 113,
"y": 445,
"width": 816,
"height": 180,
"opacity": 0,
"hidden": false,
"_customFontSize": 28,
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
}
}
}
}

3
www/data/DataEX.json Normal file
View file

@ -0,0 +1,3 @@
{
"Actors": {}
}

623
www/data/Enemies.json Normal file
View file

@ -0,0 +1,623 @@
[
null,
{
"id": 1,
"actions": [
{
"conditionParam1": 0,
"conditionParam2": 0,
"conditionType": 0,
"rating": 5,
"skillId": 1
}
],
"battlerHue": 0,
"battlerName": "Slime",
"dropItems": [
{
"dataId": 1,
"denominator": 1,
"kind": 0
},
{
"dataId": 1,
"denominator": 1,
"kind": 0
},
{
"dataId": 1,
"denominator": 1,
"kind": 0
}
],
"exp": 0,
"traits": [
{
"code": 22,
"dataId": 0,
"value": 0.95
},
{
"code": 22,
"dataId": 1,
"value": 0.05
},
{
"code": 31,
"dataId": 1,
"value": 0
}
],
"gold": 0,
"name": "スライム",
"note": "",
"params": [
100,
0,
50,
10,
10,
10,
10,
10
]
},
{
"id": 2,
"actions": [
{
"conditionParam1": 0,
"conditionParam2": 0,
"conditionType": 0,
"rating": 5,
"skillId": 1
}
],
"battlerHue": 0,
"battlerName": "Slime",
"dropItems": [
{
"kind": 0,
"dataId": 0,
"denominator": 1
},
{
"dataId": 1,
"denominator": 1,
"kind": 0
},
{
"dataId": 1,
"denominator": 1,
"kind": 0
}
],
"exp": 10,
"traits": [
{
"code": 22,
"dataId": 0,
"value": 0.95
},
{
"code": 22,
"dataId": 1,
"value": 0.05
},
{
"code": 31,
"dataId": 1,
"value": 0
}
],
"gold": 5,
"name": "スライム",
"note": "",
"params": [
250,
0,
30,
30,
30,
30,
30,
30
]
},
{
"id": 3,
"actions": [
{
"conditionParam1": 0,
"conditionParam2": 0,
"conditionType": 0,
"rating": 5,
"skillId": 1
}
],
"battlerHue": 0,
"battlerName": "",
"dropItems": [
{
"dataId": 1,
"denominator": 1,
"kind": 0
},
{
"dataId": 1,
"denominator": 1,
"kind": 0
},
{
"dataId": 1,
"denominator": 1,
"kind": 0
}
],
"exp": 0,
"traits": [
{
"code": 22,
"dataId": 0,
"value": 0.95
},
{
"code": 22,
"dataId": 1,
"value": 0.05
},
{
"code": 31,
"dataId": 1,
"value": 0
}
],
"gold": 0,
"name": "",
"note": "",
"params": [
100,
0,
10,
10,
10,
10,
10,
10
]
},
{
"id": 4,
"actions": [
{
"conditionParam1": 0,
"conditionParam2": 0,
"conditionType": 0,
"rating": 5,
"skillId": 1
}
],
"battlerHue": 0,
"battlerName": "",
"dropItems": [
{
"dataId": 1,
"denominator": 1,
"kind": 0
},
{
"dataId": 1,
"denominator": 1,
"kind": 0
},
{
"dataId": 1,
"denominator": 1,
"kind": 0
}
],
"exp": 0,
"traits": [
{
"code": 22,
"dataId": 0,
"value": 0.95
},
{
"code": 22,
"dataId": 1,
"value": 0.05
},
{
"code": 31,
"dataId": 1,
"value": 0
}
],
"gold": 0,
"name": "",
"note": "",
"params": [
100,
0,
10,
10,
10,
10,
10,
10
]
},
{
"id": 5,
"actions": [
{
"conditionParam1": 0,
"conditionParam2": 0,
"conditionType": 0,
"rating": 5,
"skillId": 1
}
],
"battlerHue": 0,
"battlerName": "",
"dropItems": [
{
"dataId": 1,
"denominator": 1,
"kind": 0
},
{
"dataId": 1,
"denominator": 1,
"kind": 0
},
{
"dataId": 1,
"denominator": 1,
"kind": 0
}
],
"exp": 0,
"traits": [
{
"code": 22,
"dataId": 0,
"value": 0.95
},
{
"code": 22,
"dataId": 1,
"value": 0.05
},
{
"code": 31,
"dataId": 1,
"value": 0
}
],
"gold": 0,
"name": "",
"note": "",
"params": [
100,
0,
10,
10,
10,
10,
10,
10
]
},
{
"id": 6,
"actions": [
{
"conditionParam1": 0,
"conditionParam2": 0,
"conditionType": 0,
"rating": 5,
"skillId": 1
}
],
"battlerHue": 0,
"battlerName": "",
"dropItems": [
{
"dataId": 1,
"denominator": 1,
"kind": 0
},
{
"dataId": 1,
"denominator": 1,
"kind": 0
},
{
"dataId": 1,
"denominator": 1,
"kind": 0
}
],
"exp": 0,
"traits": [
{
"code": 22,
"dataId": 0,
"value": 0.95
},
{
"code": 22,
"dataId": 1,
"value": 0.05
},
{
"code": 31,
"dataId": 1,
"value": 0
}
],
"gold": 0,
"name": "",
"note": "",
"params": [
100,
0,
10,
10,
10,
10,
10,
10
]
},
{
"id": 7,
"actions": [
{
"conditionParam1": 0,
"conditionParam2": 0,
"conditionType": 0,
"rating": 5,
"skillId": 1
}
],
"battlerHue": 0,
"battlerName": "",
"dropItems": [
{
"dataId": 1,
"denominator": 1,
"kind": 0
},
{
"dataId": 1,
"denominator": 1,
"kind": 0
},
{
"dataId": 1,
"denominator": 1,
"kind": 0
}
],
"exp": 0,
"traits": [
{
"code": 22,
"dataId": 0,
"value": 0.95
},
{
"code": 22,
"dataId": 1,
"value": 0.05
},
{
"code": 31,
"dataId": 1,
"value": 0
}
],
"gold": 0,
"name": "",
"note": "",
"params": [
100,
0,
10,
10,
10,
10,
10,
10
]
},
{
"id": 8,
"actions": [
{
"conditionParam1": 0,
"conditionParam2": 0,
"conditionType": 0,
"rating": 5,
"skillId": 1
}
],
"battlerHue": 0,
"battlerName": "",
"dropItems": [
{
"dataId": 1,
"denominator": 1,
"kind": 0
},
{
"dataId": 1,
"denominator": 1,
"kind": 0
},
{
"dataId": 1,
"denominator": 1,
"kind": 0
}
],
"exp": 0,
"traits": [
{
"code": 22,
"dataId": 0,
"value": 0.95
},
{
"code": 22,
"dataId": 1,
"value": 0.05
},
{
"code": 31,
"dataId": 1,
"value": 0
}
],
"gold": 0,
"name": "",
"note": "",
"params": [
100,
0,
10,
10,
10,
10,
10,
10
]
},
{
"id": 9,
"actions": [
{
"conditionParam1": 0,
"conditionParam2": 0,
"conditionType": 0,
"rating": 5,
"skillId": 1
}
],
"battlerHue": 0,
"battlerName": "",
"dropItems": [
{
"dataId": 1,
"denominator": 1,
"kind": 0
},
{
"dataId": 1,
"denominator": 1,
"kind": 0
},
{
"dataId": 1,
"denominator": 1,
"kind": 0
}
],
"exp": 0,
"traits": [
{
"code": 22,
"dataId": 0,
"value": 0.95
},
{
"code": 22,
"dataId": 1,
"value": 0.05
},
{
"code": 31,
"dataId": 1,
"value": 0
}
],
"gold": 0,
"name": "",
"note": "",
"params": [
100,
0,
10,
10,
10,
10,
10,
10
]
},
{
"id": 10,
"actions": [
{
"conditionParam1": 0,
"conditionParam2": 0,
"conditionType": 0,
"rating": 5,
"skillId": 1
}
],
"battlerHue": 0,
"battlerName": "",
"dropItems": [
{
"dataId": 1,
"denominator": 1,
"kind": 0
},
{
"dataId": 1,
"denominator": 1,
"kind": 0
},
{
"dataId": 1,
"denominator": 1,
"kind": 0
}
],
"exp": 0,
"traits": [
{
"code": 22,
"dataId": 0,
"value": 0.95
},
{
"code": 22,
"dataId": 1,
"value": 0.05
},
{
"code": 31,
"dataId": 1,
"value": 0
}
],
"gold": 0,
"name": "",
"note": "",
"params": [
100,
0,
10,
10,
10,
10,
10,
10
]
}
]

530
www/data/Items.json Normal file
View file

@ -0,0 +1,530 @@
[
null,
{
"id": 1,
"animationId": 41,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "HPが100回復する",
"effects": [
{
"code": 11,
"dataId": 0,
"value1": 0,
"value2": 100
}
],
"hitType": 0,
"iconIndex": 176,
"itypeId": 1,
"name": "回復薬",
"note": "<gachaNumLot:1>\n<gachaImage:2>",
"occasion": 0,
"price": 50,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 2,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 3,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 4,
"animationId": 0,
"consumable": false,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "酒場の制服らしいが…これは…<K♥>",
"effects": [],
"hitType": 0,
"iconIndex": 84,
"itypeId": 2,
"name": "酒場の制服",
"note": "",
"occasion": 3,
"price": 0,
"repeats": 1,
"scope": 0,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 5,
"animationId": 0,
"consumable": false,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "潜入に必要な踊り子衣装\n団子屋のおじいさんのコレクション…",
"effects": [],
"hitType": 0,
"iconIndex": 84,
"itypeId": 2,
"name": "踊り子の衣装",
"note": "<gachaNumLot:1>\n<gachaImage:1> ",
"occasion": 3,
"price": 0,
"repeats": 1,
"scope": 0,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 6,
"animationId": 0,
"consumable": false,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 193,
"itypeId": 2,
"name": "プリント",
"note": "",
"occasion": 3,
"price": 0,
"repeats": 1,
"scope": 0,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 7,
"animationId": 0,
"consumable": false,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "使用感が無く新品のようなナイフ\n",
"effects": [],
"hitType": 0,
"iconIndex": 96,
"itypeId": 2,
"name": "ゴブリンのナイフ",
"note": "",
"occasion": 3,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 8,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "ゴブリンの巣窟に詰め込まれていた木箱に\nあったマークを書き写したもの",
"effects": [],
"hitType": 0,
"iconIndex": 193,
"itypeId": 2,
"name": "マークの書き写し",
"note": "",
"occasion": 3,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 9,
"animationId": 0,
"consumable": false,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "マネージャーのバイトで使う涼風穂乃花の連絡先",
"effects": [],
"hitType": 0,
"iconIndex": 84,
"itypeId": 2,
"name": "涼風穂乃花の連絡先",
"note": "",
"occasion": 3,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 10,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "モンスターが落とす魔石\n教会へ持っていくとイイコトがあるかも",
"effects": [],
"hitType": 0,
"iconIndex": 162,
"itypeId": 2,
"name": "魔石",
"note": "",
"occasion": 3,
"price": 0,
"repeats": 1,
"scope": 0,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 11,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 12,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 13,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 14,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 15,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 16,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 17,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 18,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 19,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
},
{
"id": 20,
"animationId": 0,
"consumable": true,
"damage": {
"critical": false,
"elementId": 0,
"formula": "0",
"type": 0,
"variance": 20
},
"description": "",
"effects": [],
"hitType": 0,
"iconIndex": 0,
"itypeId": 1,
"name": "",
"note": "",
"occasion": 0,
"price": 0,
"repeats": 1,
"scope": 7,
"speed": 0,
"successRate": 100,
"tpGain": 0
}
]

7282
www/data/Map001.json Normal file

File diff suppressed because it is too large Load diff

5306
www/data/Map002.json Normal file

File diff suppressed because it is too large Load diff

3850
www/data/Map003.json Normal file

File diff suppressed because it is too large Load diff

3213
www/data/Map004.json Normal file

File diff suppressed because it is too large Load diff

3862
www/data/Map005.json Normal file

File diff suppressed because it is too large Load diff

17257
www/data/Map006.json Normal file

File diff suppressed because it is too large Load diff

4113
www/data/Map007.json Normal file

File diff suppressed because it is too large Load diff

13343
www/data/Map008.json Normal file

File diff suppressed because it is too large Load diff

3528
www/data/Map009.json Normal file

File diff suppressed because it is too large Load diff

3559
www/data/Map010.json Normal file

File diff suppressed because it is too large Load diff

1363
www/data/Map011.json Normal file

File diff suppressed because it is too large Load diff

13903
www/data/Map012.json Normal file

File diff suppressed because it is too large Load diff

1590
www/data/Map013.json Normal file

File diff suppressed because it is too large Load diff

1847
www/data/Map014.json Normal file

File diff suppressed because it is too large Load diff

1363
www/data/Map015.json Normal file

File diff suppressed because it is too large Load diff

2562
www/data/Map016.json Normal file

File diff suppressed because it is too large Load diff

1363
www/data/Map018.json Normal file

File diff suppressed because it is too large Load diff

6114
www/data/Map019.json Normal file

File diff suppressed because it is too large Load diff

3242
www/data/Map020.json Normal file

File diff suppressed because it is too large Load diff

9485
www/data/Map021.json Normal file

File diff suppressed because it is too large Load diff

2149
www/data/Map022.json Normal file

File diff suppressed because it is too large Load diff

1363
www/data/Map023.json Normal file

File diff suppressed because it is too large Load diff

1363
www/data/Map024.json Normal file

File diff suppressed because it is too large Load diff

42862
www/data/Map025.json Normal file

File diff suppressed because it is too large Load diff

495
www/data/Map026.json Normal file
View file

@ -0,0 +1,495 @@
{
"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": 6,
"note": "",
"parallaxLoopX": false,
"parallaxLoopY": false,
"parallaxName": "",
"parallaxShow": true,
"parallaxSx": 0,
"parallaxSy": 0,
"scrollType": 0,
"specifyBattleback": false,
"tilesetId": 3,
"width": 8,
"data": [
6824,
7043,
7042,
7042,
7042,
7042,
7046,
6816,
6824,
7049,
7048,
7048,
7048,
7048,
7052,
6816,
6824,
3234,
3220,
3220,
3220,
3220,
3236,
6816,
6824,
3240,
3228,
3208,
3204,
3228,
3238,
6816,
6830,
6833,
6845,
3216,
3224,
6843,
6833,
6829,
7051,
7050,
7054,
3216,
3224,
7051,
7050,
7054,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
36,
36,
0,
0,
0,
50,
50,
0,
44,
44,
0,
0,
0,
58,
58,
420,
96,
96,
414,
0,
0,
0,
0,
0,
104,
104,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
148,
148,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
5,
0,
0,
0,
0,
0,
0,
0,
5,
0,
0,
0,
0,
0,
0,
0,
0,
0,
15,
15,
0,
0,
0,
0,
0,
0,
5,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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": 250,
"indent": 0,
"parameters": [
{
"name": "Curtain01",
"volume": 90,
"pitch": 100,
"pan": 0
}
]
},
{
"code": 201,
"indent": 0,
"parameters": [
0,
25,
26,
19,
4,
0
]
},
{
"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": 1,
"walkAnime": true
}
],
"x": 3,
"y": 4
},
{
"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": {
"characterIndex": 0,
"characterName": "",
"direction": 2,
"pattern": 0,
"tileId": 0
},
"list": [
{
"code": 250,
"indent": 0,
"parameters": [
{
"name": "Curtain01",
"volume": 90,
"pitch": 100,
"pan": 0
}
]
},
{
"code": 201,
"indent": 0,
"parameters": [
0,
25,
26,
19,
4,
0
]
},
{
"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": 1,
"walkAnime": true
}
],
"x": 4,
"y": 4
}
]
}

2322
www/data/Map027.json Normal file

File diff suppressed because it is too large Load diff

2715
www/data/Map028.json Normal file

File diff suppressed because it is too large Load diff

3740
www/data/Map029.json Normal file

File diff suppressed because it is too large Load diff

7107
www/data/Map030.json Normal file

File diff suppressed because it is too large Load diff

29836
www/data/Map031.json Normal file

File diff suppressed because it is too large Load diff

9232
www/data/Map032.json Normal file

File diff suppressed because it is too large Load diff

4176
www/data/Map033.json Normal file

File diff suppressed because it is too large Load diff

6488
www/data/Map034.json Normal file

File diff suppressed because it is too large Load diff

16576
www/data/Map035.json Normal file

File diff suppressed because it is too large Load diff

706
www/data/Map036.json Normal file
View file

@ -0,0 +1,706 @@
{
"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": "テント2",
"encounterList": [],
"encounterStep": 30,
"height": 6,
"note": "",
"parallaxLoopX": false,
"parallaxLoopY": false,
"parallaxName": "",
"parallaxShow": true,
"parallaxSx": 0,
"parallaxSy": 0,
"scrollType": 0,
"specifyBattleback": false,
"tilesetId": 6,
"width": 7,
"data": [
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2964,
2988,
2988,
2988,
2968,
2960,
2960,
2984,
2955,
2945,
2957,
2976,
2960,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
853,
853,
0,
0,
853,
853,
853,
861,
853,
853,
853,
853,
853,
853,
0,
853,
0,
0,
853,
853,
0,
0,
0,
0,
0,
853,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
661,
661,
661,
660,
661,
660,
661,
669,
669,
669,
668,
669,
668,
669,
996,
721,
853,
853,
597,
728,
853,
1004,
853,
853,
853,
605,
853,
853,
853,
853,
853,
853,
853,
853,
853,
861,
861,
0,
0,
0,
861,
861,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
252,
252,
252,
252,
252,
252,
252,
252,
252,
252,
252,
252,
252,
252,
0,
252,
0,
0,
0,
252,
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": {
"tileId": 0,
"characterName": "mob3",
"direction": 2,
"pattern": 1,
"characterIndex": 3
},
"list": [
{
"code": 101,
"indent": 0,
"parameters": [
"",
0,
0,
2
]
},
{
"code": 401,
"indent": 0,
"parameters": [
"\\N<浮浪者>「少しの小銭でも分けてくれるんなら"
]
},
{
"code": 401,
"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": 1,
"stepAnime": false,
"through": false,
"trigger": 0,
"walkAnime": true
}
],
"x": 2,
"y": 3
},
{
"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": {
"characterIndex": 0,
"characterName": "",
"direction": 2,
"pattern": 0,
"tileId": 0
},
"list": [
{
"code": 250,
"indent": 0,
"parameters": [
{
"name": "Move1",
"pan": 0,
"pitch": 100,
"volume": 90
}
]
},
{
"code": 201,
"indent": 0,
"parameters": [
0,
30,
14,
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": 0,
"stepAnime": false,
"through": false,
"trigger": 1,
"walkAnime": true
}
],
"x": 3,
"y": 5
},
{
"id": 3,
"name": "EV003",
"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": 241,
"indent": 0,
"parameters": [
{
"name": "!amenoseihitu",
"volume": 20,
"pitch": 100,
"pan": 0
}
]
},
{
"code": 246,
"indent": 0,
"parameters": [
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": 6,
"y": 0
},
{
"id": 4,
"name": "EV004",
"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": 250,
"indent": 0,
"parameters": [
{
"name": "Move1",
"pan": 0,
"pitch": 100,
"volume": 90
}
]
},
{
"code": 201,
"indent": 0,
"parameters": [
0,
30,
14,
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": 0,
"stepAnime": false,
"through": false,
"trigger": 1,
"walkAnime": true
}
],
"x": 4,
"y": 5
},
{
"id": 5,
"name": "EV005",
"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": 250,
"indent": 0,
"parameters": [
{
"name": "Move1",
"pan": 0,
"pitch": 100,
"volume": 90
}
]
},
{
"code": 201,
"indent": 0,
"parameters": [
0,
30,
14,
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": 0,
"stepAnime": false,
"through": false,
"trigger": 1,
"walkAnime": true
}
],
"x": 2,
"y": 5
}
]
}

706
www/data/Map037.json Normal file
View file

@ -0,0 +1,706 @@
{
"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": "テント1",
"encounterList": [],
"encounterStep": 30,
"height": 6,
"note": "",
"parallaxLoopX": false,
"parallaxLoopY": false,
"parallaxName": "",
"parallaxShow": true,
"parallaxSx": 0,
"parallaxSy": 0,
"scrollType": 0,
"specifyBattleback": false,
"tilesetId": 6,
"width": 7,
"data": [
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2964,
2988,
2988,
2988,
2968,
2960,
2960,
2984,
2955,
2945,
2957,
2976,
2960,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
853,
853,
0,
0,
853,
853,
853,
861,
853,
853,
853,
853,
853,
853,
0,
853,
0,
0,
853,
853,
0,
0,
0,
0,
0,
853,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
661,
661,
661,
660,
661,
660,
661,
669,
669,
669,
668,
669,
668,
669,
996,
721,
853,
853,
597,
728,
853,
1004,
853,
853,
853,
605,
853,
853,
853,
853,
853,
853,
853,
853,
853,
861,
861,
0,
0,
0,
861,
861,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
252,
252,
252,
252,
252,
252,
252,
252,
252,
252,
252,
252,
252,
252,
0,
252,
0,
0,
0,
252,
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": {
"tileId": 0,
"characterName": "BB_chara002_2",
"direction": 2,
"pattern": 1,
"characterIndex": 6
},
"list": [
{
"code": 101,
"indent": 0,
"parameters": [
"",
0,
0,
2
]
},
{
"code": 401,
"indent": 0,
"parameters": [
"\\N<浮浪者>「……昔はな俺にも家があったんだよ……"
]
},
{
"code": 401,
"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": 1,
"stepAnime": false,
"through": false,
"trigger": 0,
"walkAnime": true
}
],
"x": 2,
"y": 3
},
{
"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": {
"characterIndex": 0,
"characterName": "",
"direction": 2,
"pattern": 0,
"tileId": 0
},
"list": [
{
"code": 250,
"indent": 0,
"parameters": [
{
"name": "Move1",
"pan": 0,
"pitch": 100,
"volume": 90
}
]
},
{
"code": 201,
"indent": 0,
"parameters": [
0,
30,
10,
5,
0,
0
]
},
{
"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": 1,
"walkAnime": true
}
],
"x": 3,
"y": 5
},
{
"id": 3,
"name": "EV003",
"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": 241,
"indent": 0,
"parameters": [
{
"name": "!amenoseihitu",
"volume": 20,
"pitch": 100,
"pan": 0
}
]
},
{
"code": 246,
"indent": 0,
"parameters": [
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": 5,
"y": 0
},
{
"id": 4,
"name": "EV004",
"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": 250,
"indent": 0,
"parameters": [
{
"name": "Move1",
"pan": 0,
"pitch": 100,
"volume": 90
}
]
},
{
"code": 201,
"indent": 0,
"parameters": [
0,
30,
10,
5,
0,
0
]
},
{
"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": 1,
"walkAnime": true
}
],
"x": 4,
"y": 5
},
{
"id": 5,
"name": "EV005",
"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": 250,
"indent": 0,
"parameters": [
{
"name": "Move1",
"pan": 0,
"pitch": 100,
"volume": 90
}
]
},
{
"code": 201,
"indent": 0,
"parameters": [
0,
30,
10,
5,
0,
0
]
},
{
"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": 1,
"walkAnime": true
}
],
"x": 2,
"y": 5
}
]
}

699
www/data/Map038.json Normal file
View file

@ -0,0 +1,699 @@
{
"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": "テント3",
"encounterList": [],
"encounterStep": 30,
"height": 6,
"note": "",
"parallaxLoopX": false,
"parallaxLoopY": false,
"parallaxName": "",
"parallaxShow": true,
"parallaxSx": 0,
"parallaxSy": 0,
"scrollType": 0,
"specifyBattleback": false,
"tilesetId": 6,
"width": 7,
"data": [
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2960,
2964,
2988,
2988,
2988,
2968,
2960,
2960,
2984,
2955,
2945,
2957,
2976,
2960,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
3488,
853,
853,
0,
0,
853,
853,
853,
861,
853,
853,
853,
853,
853,
853,
0,
853,
0,
0,
853,
853,
0,
0,
0,
0,
0,
853,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
661,
661,
661,
660,
661,
660,
661,
669,
669,
669,
668,
669,
668,
669,
996,
721,
853,
853,
597,
728,
853,
1004,
853,
853,
853,
605,
853,
853,
853,
853,
853,
853,
853,
853,
853,
861,
861,
0,
0,
0,
861,
861,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
252,
252,
252,
252,
252,
252,
252,
252,
252,
252,
252,
252,
252,
252,
0,
252,
0,
0,
0,
252,
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": {
"tileId": 0,
"characterName": "BB_chara002_2",
"direction": 2,
"pattern": 1,
"characterIndex": 0
},
"list": [
{
"code": 101,
"indent": 0,
"parameters": [
"",
0,
0,
2
]
},
{
"code": 401,
"indent": 0,
"parameters": [
"\\N<浮浪者>「おいおい、こんな俺に構って何になるってんだ?」"
]
},
{
"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": 3,
"y": 3
},
{
"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": {
"characterIndex": 0,
"characterName": "",
"direction": 2,
"pattern": 0,
"tileId": 0
},
"list": [
{
"code": 250,
"indent": 0,
"parameters": [
{
"name": "Move1",
"pan": 0,
"pitch": 100,
"volume": 90
}
]
},
{
"code": 201,
"indent": 0,
"parameters": [
0,
30,
15,
9,
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": 0,
"stepAnime": false,
"through": false,
"trigger": 1,
"walkAnime": true
}
],
"x": 3,
"y": 5
},
{
"id": 3,
"name": "EV003",
"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": 241,
"indent": 0,
"parameters": [
{
"name": "!amenoseihitu",
"volume": 20,
"pitch": 100,
"pan": 0
}
]
},
{
"code": 246,
"indent": 0,
"parameters": [
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": 5,
"y": 0
},
{
"id": 4,
"name": "EV004",
"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": 250,
"indent": 0,
"parameters": [
{
"name": "Move1",
"pan": 0,
"pitch": 100,
"volume": 90
}
]
},
{
"code": 201,
"indent": 0,
"parameters": [
0,
30,
15,
9,
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": 0,
"stepAnime": false,
"through": false,
"trigger": 1,
"walkAnime": true
}
],
"x": 4,
"y": 5
},
{
"id": 5,
"name": "EV005",
"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": 250,
"indent": 0,
"parameters": [
{
"name": "Move1",
"pan": 0,
"pitch": 100,
"volume": 90
}
]
},
{
"code": 201,
"indent": 0,
"parameters": [
0,
30,
15,
9,
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": 0,
"stepAnime": false,
"through": false,
"trigger": 1,
"walkAnime": true
}
],
"x": 2,
"y": 5
}
]
}

9522
www/data/Map039.json Normal file

File diff suppressed because it is too large Load diff

2518
www/data/Map040.json Normal file

File diff suppressed because it is too large Load diff

1363
www/data/Map041.json Normal file

File diff suppressed because it is too large Load diff

3773
www/data/Map042.json Normal file

File diff suppressed because it is too large Load diff

1363
www/data/Map043.json Normal file

File diff suppressed because it is too large Load diff

5911
www/data/Map044.json Normal file

File diff suppressed because it is too large Load diff

2106
www/data/Map045.json Normal file

File diff suppressed because it is too large Load diff

4363
www/data/Map046.json Normal file

File diff suppressed because it is too large Load diff

1726
www/data/Map047.json Normal file

File diff suppressed because it is too large Load diff

6576
www/data/Map048.json Normal file

File diff suppressed because it is too large Load diff

1363
www/data/Map049.json Normal file

File diff suppressed because it is too large Load diff

3709
www/data/Map050.json Normal file

File diff suppressed because it is too large Load diff

2650
www/data/Map051.json Normal file

File diff suppressed because it is too large Load diff

8401
www/data/Map052.json Normal file

File diff suppressed because it is too large Load diff

9294
www/data/Map053.json Normal file

File diff suppressed because it is too large Load diff

7683
www/data/Map054.json Normal file

File diff suppressed because it is too large Load diff

3196
www/data/Map055.json Normal file

File diff suppressed because it is too large Load diff

1363
www/data/Map056.json Normal file

File diff suppressed because it is too large Load diff

4671
www/data/Map057.json Normal file

File diff suppressed because it is too large Load diff

11612
www/data/Map058.json Normal file

File diff suppressed because it is too large Load diff

6142
www/data/Map059.json Normal file

File diff suppressed because it is too large Load diff

4001
www/data/Map060.json Normal file

File diff suppressed because it is too large Load diff

2709
www/data/Map061.json Normal file

File diff suppressed because it is too large Load diff

18474
www/data/Map062.json Normal file

File diff suppressed because it is too large Load diff

1363
www/data/Map063.json Normal file

File diff suppressed because it is too large Load diff

16803
www/data/Map064.json Normal file

File diff suppressed because it is too large Load diff

4995
www/data/Map065.json Normal file

File diff suppressed because it is too large Load diff

1505
www/data/Map066.json Normal file

File diff suppressed because it is too large Load diff

1452
www/data/Map067.json Normal file

File diff suppressed because it is too large Load diff

2479
www/data/Map068.json Normal file

File diff suppressed because it is too large Load diff

3689
www/data/Map070.json Normal file

File diff suppressed because it is too large Load diff

10450
www/data/Map071.json Normal file

File diff suppressed because it is too large Load diff

3795
www/data/Map072.json Normal file

File diff suppressed because it is too large Load diff

9454
www/data/Map073.json Normal file

File diff suppressed because it is too large Load diff

8814
www/data/Map074.json Normal file

File diff suppressed because it is too large Load diff

12056
www/data/Map075.json Normal file

File diff suppressed because it is too large Load diff

1363
www/data/Map077.json Normal file

File diff suppressed because it is too large Load diff

2149
www/data/Map078.json Normal file

File diff suppressed because it is too large Load diff

3131
www/data/Map079.json Normal file

File diff suppressed because it is too large Load diff

1363
www/data/Map080.json Normal file

File diff suppressed because it is too large Load diff

3461
www/data/Map081.json Normal file

File diff suppressed because it is too large Load diff

3826
www/data/Map082.json Normal file

File diff suppressed because it is too large Load diff

10450
www/data/Map083.json Normal file

File diff suppressed because it is too large Load diff

Some files were not shown because too many files have changed in this diff Show more