Initial Commit

This commit is contained in:
dazedanon 2025-04-28 01:33:20 -05:00
commit 9a38df5ba4
544 changed files with 6237414 additions and 0 deletions

50
.gitignore vendored Normal file
View file

@ -0,0 +1,50 @@
# Ignore all files
*.*
# File Types
!*.mps
!*.dat
!*.json
!*.txt
!*.project
!*.js
!*.zip
!*.csv
!*.ain
!*.fnl
!*.ks
!*.tjs
!*.yaml
!*.rb
!*.rvdata2
# Other Needed Files
!.gitignore
!README.md
!patch-config.txt
!GameUpdate*
!patch*
!Game.dat
# Ignore
previous_patch_sha.txt
kabe3_save.dat
kabe3_system.dat
psbpack.dat
Save*
# Images
!menuback.png
!タイトルじゃい.png
!robfcr1.png
!robfcr11.png
!robfcr2.png
!robfcr3.png
!robfcr4.png
!robfcr6.png
!robfcr7.png
!robfcr9.png
!skillture.png
!skillture1.png
!skillture2.png
!skillture3.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

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=rebf-gaiden
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

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

@ -0,0 +1,447 @@
[
null,
{
"id": 1,
"battlerName": "",
"characterIndex": 2,
"characterName": "heroine",
"classId": 1,
"equips": [
1,
1,
5,
13,
0,
5
],
"faceIndex": 0,
"faceName": "Heroine",
"traits": [],
"initialLevel": 1,
"maxLevel": 99,
"name": "メルフィ",
"nickname": "",
"note": "<GraphicWhen:Heroine[1],Ready>\n<GraphicWhen:Heroine[6],State,NTR,2049>\n<SACItemSwitch:190>\n<SACAttackSwitch:238>",
"profile": ""
},
{
"id": 2,
"battlerName": "",
"characterIndex": 0,
"characterName": "hero",
"classId": 2,
"equips": [
19,
2,
2,
3,
0
],
"faceIndex": 5,
"faceName": "Hero2",
"traits": [],
"initialLevel": 1,
"maxLevel": 99,
"name": "シズマ",
"nickname": "",
"note": "<GraphicWhen:Hero1[5],Ready>\n<GraphicWhen:Hero2[3],State,NTR,2049>\n<battle command: attack />\n<battle command: skill_list />\n<battle command: guard />\n<battle command: item />\n<SACItemSwitch:190> \n<SACAttackSwitch:238>",
"profile": ""
},
{
"id": 3,
"battlerName": "",
"characterIndex": 0,
"characterName": "hero",
"classId": 4,
"equips": [
19,
2,
2,
3,
0
],
"faceIndex": 5,
"faceName": "Hero2",
"traits": [],
"initialLevel": 1,
"maxLevel": 99,
"name": "シズマテスト",
"nickname": "",
"note": "<GraphicWhen:Hero1[5],Ready>\n<GraphicWhen:Hero2[3],State,NTR,2049>\n<battle command: attack />\n<battle command: skill_list />\n<battle command: guard />\n<battle command: item />\n<SACItemSwitch:190> \n<SACAttackSwitch:238>",
"profile": ""
},
{
"id": 4,
"battlerName": "",
"characterIndex": 2,
"characterName": "heroine",
"classId": 5,
"equips": [
1,
1,
5,
13,
0,
5
],
"faceIndex": 0,
"faceName": "Heroine",
"traits": [],
"initialLevel": 1,
"maxLevel": 99,
"name": "メルフィテスト",
"nickname": "",
"note": "<GraphicWhen:Heroine[1],Ready>\n<GraphicWhen:Heroine[6],State,NTR,2049>\n<SACItemSwitch:114>\n<SACAttackSwitch:238>",
"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": 2,
"characterName": "subchara2",
"classId": 6,
"equips": [
0,
3,
4,
3,
0,
4
],
"faceIndex": 0,
"faceName": "subleader",
"traits": [],
"initialLevel": 32,
"maxLevel": 99,
"name": "レイコ",
"nickname": "",
"note": "<SACAttackSwitch:238>",
"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": "AAmedical",
"classId": 7,
"equips": [
0,
40,
0,
0,
0,
43
],
"faceIndex": 0,
"faceName": "subchar",
"traits": [],
"initialLevel": 15,
"maxLevel": 99,
"name": "ハカセ",
"nickname": "",
"note": "<SACAttackSwitch:238>\n<SACItemSwitch:247>\n<GraphicWhen:subchar[4],Ready>\n<GraphicWhen:subchar[6],State,fear,2049>",
"profile": ""
},
{
"id": 12,
"battlerName": "",
"characterIndex": 3,
"characterName": "elnesta",
"classId": 8,
"equips": [
63,
41,
0,
0,
0,
6
],
"faceIndex": 0,
"faceName": "elnesta",
"traits": [],
"initialLevel": 1,
"maxLevel": 99,
"name": "エルネスタ",
"nickname": "",
"note": "<SACAttackSwitch:238>\n<SACItemSwitch:249>\n<GraphicWhen:elnesta[6],Ready>",
"profile": ""
},
{
"id": 13,
"battlerName": "",
"characterIndex": 2,
"characterName": "subchara2",
"classId": 6,
"equips": [
51,
3,
4,
3,
0,
4
],
"faceIndex": 0,
"faceName": "subleader",
"traits": [],
"initialLevel": 32,
"maxLevel": 99,
"name": "レイコ",
"nickname": "",
"note": "<SACAttackSwitch:238>\n<SACItemSwitch:246>\n<GraphicWhen:subleader2[1],Ready>",
"profile": ""
},
{
"id": 14,
"battlerName": "",
"characterIndex": 0,
"characterName": "belis",
"classId": 10,
"equips": [
65,
42,
0,
0,
0,
7
],
"faceIndex": 0,
"faceName": "Belis",
"traits": [],
"initialLevel": 1,
"maxLevel": 99,
"name": "ベリス",
"nickname": "",
"note": "<SACAttackSwitch:238>\n<SACItemSwitch:255>\n<GraphicWhen:Belis[2],Ready>",
"profile": ""
},
{
"id": 15,
"battlerName": "",
"characterIndex": 0,
"characterName": "man14",
"classId": 4,
"equips": [
0,
0,
0,
0,
0
],
"faceIndex": 0,
"faceName": "",
"traits": [],
"initialLevel": 1,
"maxLevel": 99,
"name": "バイル課長",
"nickname": "",
"note": "",
"profile": ""
},
{
"id": 16,
"battlerName": "",
"characterIndex": 0,
"characterName": "subchara2",
"classId": 11,
"equips": [
0,
0,
0,
0,
0
],
"faceIndex": 0,
"faceName": "",
"traits": [],
"initialLevel": 1,
"maxLevel": 1,
"name": "クイーン",
"nickname": "",
"note": "",
"profile": ""
},
{
"id": 17,
"battlerName": "",
"characterIndex": 1,
"characterName": "Nature",
"classId": 12,
"equips": [
0,
0,
0,
0,
0
],
"faceIndex": 0,
"faceName": "Neko",
"traits": [],
"initialLevel": 1,
"maxLevel": 1,
"name": "",
"nickname": "",
"note": "",
"profile": ""
},
{
"id": 18,
"battlerName": "",
"characterIndex": 0,
"characterName": "scentist",
"classId": 13,
"equips": [
0,
0,
0,
0,
0
],
"faceIndex": 0,
"faceName": "",
"traits": [],
"initialLevel": 1,
"maxLevel": 99,
"name": "サイコ研究員",
"nickname": "",
"note": "",
"profile": ""
},
{
"id": 19,
"battlerName": "",
"characterIndex": 1,
"characterName": "subchara2_3",
"classId": 1,
"equips": [
0,
0,
0,
0,
0
],
"faceIndex": 0,
"faceName": "",
"traits": [],
"initialLevel": 1,
"maxLevel": 99,
"name": "",
"nickname": "",
"note": "",
"profile": ""
}
]

371164
www/data/Animations.json Normal file

File diff suppressed because it is too large Load diff

2696
www/data/Armors.json Normal file

File diff suppressed because it is too large Load diff

11605
www/data/Classes.json Normal file

File diff suppressed because it is too large Load diff

359971
www/data/CommonEvents.json Normal file

File diff suppressed because it is too large Load diff

332379
www/data/CommonEvents_2.json Normal file

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,653 @@
{
"Scene_Menu": {
"WindowLayer": {
"0,Window_MenuCommand": {
"x": 0,
"y": 0,
"width": 240,
"height": 360,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"2,Window_MenuStatus": {
"x": 240,
"y": 0,
"width": 784,
"height": 640,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": "100",
"_customBackFileName": "",
"_customFontFace": ""
},
"1,Window_Gold": {
"x": 0,
"y": 432,
"width": 240,
"height": 72,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"3,Window_MenuLabel": {
"x": 0,
"y": 360,
"width": 240,
"height": 72,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
}
}
},
"OriginMenuStatus": {
"WindowLayer": {
"5,Sprite": {
"x": -185,
"y": 116
},
"4,Sprite": {
"x": -44,
"y": 116
},
"0,BaseWindow": {
"x": 0,
"y": 0,
"width": 1024,
"height": 640,
"opacity": 255,
"hidden": false,
"_customFontSize": 28,
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": "100",
"_customBackFileName": "",
"_customFontFace": ""
},
"1,Sprite": {
"x": 0,
"y": 0
},
"21,Sprite": {
"x": -181,
"y": 385
},
"19,Sprite": {
"x": -181,
"y": 318
},
"17,Sprite": {
"x": -181,
"y": 251
},
"20,Sprite": {
"x": -41,
"y": 385
},
"15,Sprite": {
"x": -181,
"y": 185
},
"18,Sprite": {
"x": -41,
"y": 318
},
"16,Sprite": {
"x": -41,
"y": 251
},
"14,Sprite": {
"x": -41,
"y": 185
},
"12,Sprite": {
"x": -41,
"y": 117
},
"13,Sprite": {
"x": -181,
"y": 117
}
}
},
"Scene_Item": {
"WindowLayer": {
"2,Window_ItemList": {
"x": 0,
"y": 180,
"width": 1024,
"height": 460,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": "100",
"_customBackFileName": "",
"_customFontFace": ""
},
"1,Window_ItemCategory": {
"x": 0,
"y": 108,
"width": 1024,
"height": 72,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"0,Window_Help": {
"x": 0,
"y": 0,
"width": 1024,
"height": 108,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"3,Window_MenuActor": {
"x": 240,
"y": 0,
"width": 784,
"height": 640,
"opacity": 255,
"hidden": false,
"_customFontSize": "24",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
}
}
},
"Scene_Skill": {
"WindowLayer": {
"3,Window_SkillList": {
"x": 0,
"y": 288,
"width": 1024,
"height": 352,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": "100",
"_customBackFileName": "",
"_customFontFace": ""
},
"0,Window_Help": {
"x": 0,
"y": 0,
"width": 1024,
"height": 108,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"1,Window_SkillType": {
"x": 0,
"y": 108,
"width": 240,
"height": 180,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"2,Window_SkillStatus": {
"x": 240,
"y": 108,
"width": 784,
"height": 180,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
}
}
},
"Scene_Equip": {
"WindowLayer": {
"4,Window_EquipItem": {
"x": 0,
"y": 396,
"width": 1024,
"height": 244,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": "100",
"_customBackFileName": "",
"_customFontFace": ""
},
"0,Window_Help": {
"x": 0,
"y": 0,
"width": 1024,
"height": 108,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"1,Window_EquipStatus": {
"x": 0,
"y": 108,
"width": 312,
"height": 288,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"2,Window_EquipCommand": {
"x": 312,
"y": 108,
"width": 712,
"height": 72,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"3,Window_EquipSlot": {
"x": 312,
"y": 180,
"width": 712,
"height": 216,
"opacity": 255,
"hidden": false,
"_customFontSize": "20",
"_customPadding": 18,
"_customLineHeight": "30",
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
}
}
},
"Scene_Status": {
"WindowLayer": {
"0,Window_Status": {
"x": 0,
"y": 0,
"width": 1024,
"height": 640,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": "100",
"_customBackFileName": "",
"_customFontFace": ""
}
}
},
"Scene_Save": {
"WindowLayer": {
"1,Window_SavefileList": {
"x": 0,
"y": 72,
"width": 1024,
"height": 568,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": "100",
"_customBackFileName": "",
"_customFontFace": ""
},
"0,Window_Help": {
"x": 0,
"y": 0,
"width": 1024,
"height": 72,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
}
}
},
"Scene_Options": {
"WindowLayer": {
"0,Window_Options": {
"x": 312,
"y": 176,
"width": 400,
"height": 255,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
}
}
},
"Scene_GameEnd": {
"WindowLayer": {
"0,Window_GameEnd": {
"x": 392,
"y": 266,
"width": 240,
"height": 108,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
}
}
},
"Scene_Map": {
"WindowLayer": {
"0,Window_Message": {
"x": 153.60000000000002,
"y": 460,
"width": 716.8,
"height": 180,
"opacity": 255,
"hidden": false,
"_customFontSize": "28",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"2,Window_ChoiceList": {
"x": 446,
"y": 208,
"width": 132,
"height": 252,
"opacity": 255,
"hidden": false,
"_customFontSize": "28",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
}
}
},
"Scene_Load": {
"WindowLayer": {
"0,Window_Help": {
"x": 0,
"y": 0,
"width": 1024,
"height": 72,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"1,Window_SavefileList": {
"x": 0,
"y": 72,
"width": 1024,
"height": 568,
"opacity": 255,
"hidden": false,
"_customFontSize": "23",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
}
}
},
"Scene_Glossary": {
"WindowLayer": {
"0,Window_Help": {
"x": 0,
"y": 0,
"width": 1024,
"height": 108,
"opacity": 255,
"hidden": false,
"_customFontSize": "24",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": "150",
"_customBackFileName": "",
"_customFontFace": ""
},
"3,Window_GlossaryCategory": {
"x": 0,
"y": 108,
"width": 240,
"height": 532,
"opacity": 255,
"hidden": false,
"_customFontSize": "24",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": "150",
"_customBackFileName": "",
"_customFontFace": ""
},
"2,Window_GlossaryList": {
"x": 0,
"y": 108,
"width": 240,
"height": 532,
"opacity": 255,
"hidden": false,
"_customFontSize": "24",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": "150",
"_customBackFileName": "",
"_customFontFace": ""
},
"1,Window_Glossary": {
"x": 240,
"y": 108,
"width": 784,
"height": 532,
"opacity": 255,
"hidden": false,
"_customFontSize": 22,
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": "100",
"_customBackFileName": "",
"_customFontFace": ""
}
}
},
"Scene_Shop": {
"WindowLayer": {
"0,Window_Help": {
"x": 0,
"y": 0,
"width": 1024,
"height": 108,
"opacity": 255,
"hidden": false,
"_customFontSize": "24",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"2,Window_ShopCommand": {
"x": 0,
"y": 108,
"width": 784,
"height": 72,
"opacity": 255,
"hidden": false,
"_customFontSize": "24",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"6,Window_ShopBuy": {
"x": 0,
"y": 180,
"width": 456,
"height": 460,
"opacity": 255,
"hidden": false,
"_customFontSize": "24",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"5,Window_ShopStatus": {
"x": 456,
"y": 180,
"width": 568,
"height": 460,
"opacity": 255,
"hidden": false,
"_customFontSize": "24",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"4,Window_ShopNumber": {
"x": 0,
"y": 180,
"width": 456,
"height": 460,
"opacity": 255,
"hidden": false,
"_customFontSize": "24",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"7,Window_ItemCategory": {
"x": 0,
"y": 180,
"width": 1024,
"height": 72,
"opacity": 255,
"hidden": false,
"_customFontSize": "24",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"8,Window_ShopSell": {
"x": 0,
"y": 252,
"width": 1024,
"height": 388,
"opacity": 255,
"hidden": false,
"_customFontSize": "24",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
},
"1,Window_Gold": {
"x": 784,
"y": 108,
"width": 240,
"height": 72,
"opacity": 255,
"hidden": false,
"_customFontSize": "24",
"_customPadding": 18,
"_customLineHeight": 36,
"_customBackOpacity": 192,
"_customBackFileName": "",
"_customFontFace": ""
}
}
},
"Scene_Battle": {}
}

14520
www/data/Enemies.json Normal file

File diff suppressed because it is too large Load diff

5731
www/data/Items.json Normal file

File diff suppressed because it is too large Load diff

1880
www/data/Map001.json Normal file

File diff suppressed because it is too large Load diff

11628
www/data/Map002.json Normal file

File diff suppressed because it is too large Load diff

7308
www/data/Map003.json Normal file

File diff suppressed because it is too large Load diff

37166
www/data/Map004.json Normal file

File diff suppressed because it is too large Load diff

15975
www/data/Map005.json Normal file

File diff suppressed because it is too large Load diff

14578
www/data/Map006.json Normal file

File diff suppressed because it is too large Load diff

5649
www/data/Map007.json Normal file

File diff suppressed because it is too large Load diff

4439
www/data/Map008.json Normal file

File diff suppressed because it is too large Load diff

4358
www/data/Map009.json Normal file

File diff suppressed because it is too large Load diff

4922
www/data/Map010.json Normal file

File diff suppressed because it is too large Load diff

6213
www/data/Map011.json Normal file

File diff suppressed because it is too large Load diff

24778
www/data/Map012.json Normal file

File diff suppressed because it is too large Load diff

15790
www/data/Map013.json Normal file

File diff suppressed because it is too large Load diff

1363
www/data/Map014.json Normal file

File diff suppressed because it is too large Load diff

6399
www/data/Map015.json Normal file

File diff suppressed because it is too large Load diff

21437
www/data/Map016.json Normal file

File diff suppressed because it is too large Load diff

18314
www/data/Map017.json Normal file

File diff suppressed because it is too large Load diff

43238
www/data/Map018.json Normal file

File diff suppressed because it is too large Load diff

9958
www/data/Map019.json Normal file

File diff suppressed because it is too large Load diff

26606
www/data/Map020.json Normal file

File diff suppressed because it is too large Load diff

18481
www/data/Map021.json Normal file

File diff suppressed because it is too large Load diff

4880
www/data/Map022.json Normal file

File diff suppressed because it is too large Load diff

4566
www/data/Map023.json Normal file

File diff suppressed because it is too large Load diff

11910
www/data/Map024.json Normal file

File diff suppressed because it is too large Load diff

9884
www/data/Map025.json Normal file

File diff suppressed because it is too large Load diff

5803
www/data/Map026.json Normal file

File diff suppressed because it is too large Load diff

3352
www/data/Map027.json Normal file

File diff suppressed because it is too large Load diff

15547
www/data/Map028.json Normal file

File diff suppressed because it is too large Load diff

31578
www/data/Map029.json Normal file

File diff suppressed because it is too large Load diff

14383
www/data/Map030.json Normal file

File diff suppressed because it is too large Load diff

9181
www/data/Map031.json Normal file

File diff suppressed because it is too large Load diff

22882
www/data/Map032.json Normal file

File diff suppressed because it is too large Load diff

3419
www/data/Map033.json Normal file

File diff suppressed because it is too large Load diff

13407
www/data/Map034.json Normal file

File diff suppressed because it is too large Load diff

12237
www/data/Map035.json Normal file

File diff suppressed because it is too large Load diff

2989
www/data/Map036.json Normal file

File diff suppressed because it is too large Load diff

1652
www/data/Map037.json Normal file

File diff suppressed because it is too large Load diff

10341
www/data/Map038.json Normal file

File diff suppressed because it is too large Load diff

2455
www/data/Map039.json Normal file

File diff suppressed because it is too large Load diff

17151
www/data/Map040.json Normal file

File diff suppressed because it is too large Load diff

1672
www/data/Map041.json Normal file

File diff suppressed because it is too large Load diff

25747
www/data/Map042.json Normal file

File diff suppressed because it is too large Load diff

2723
www/data/Map043.json Normal file

File diff suppressed because it is too large Load diff

17743
www/data/Map044.json Normal file

File diff suppressed because it is too large Load diff

14366
www/data/Map045.json Normal file

File diff suppressed because it is too large Load diff

10295
www/data/Map046.json Normal file

File diff suppressed because it is too large Load diff

11953
www/data/Map047.json Normal file

File diff suppressed because it is too large Load diff

8708
www/data/Map048.json Normal file

File diff suppressed because it is too large Load diff

5922
www/data/Map049.json Normal file

File diff suppressed because it is too large Load diff

29806
www/data/Map050.json Normal file

File diff suppressed because it is too large Load diff

17262
www/data/Map051.json Normal file

File diff suppressed because it is too large Load diff

19569
www/data/Map052.json Normal file

File diff suppressed because it is too large Load diff

43849
www/data/Map053.json Normal file

File diff suppressed because it is too large Load diff

7082
www/data/Map054.json Normal file

File diff suppressed because it is too large Load diff

1718
www/data/Map055.json Normal file

File diff suppressed because it is too large Load diff

11154
www/data/Map056.json Normal file

File diff suppressed because it is too large Load diff

20907
www/data/Map057.json Normal file

File diff suppressed because it is too large Load diff

7516
www/data/Map058.json Normal file

File diff suppressed because it is too large Load diff

30304
www/data/Map059.json Normal file

File diff suppressed because it is too large Load diff

42821
www/data/Map060.json Normal file

File diff suppressed because it is too large Load diff

36360
www/data/Map061.json Normal file

File diff suppressed because it is too large Load diff

19498
www/data/Map062.json Normal file

File diff suppressed because it is too large Load diff

2127
www/data/Map063.json Normal file

File diff suppressed because it is too large Load diff

11189
www/data/Map064.json Normal file

File diff suppressed because it is too large Load diff

2288
www/data/Map065.json Normal file

File diff suppressed because it is too large Load diff

36757
www/data/Map066.json Normal file

File diff suppressed because it is too large Load diff

14435
www/data/Map067.json Normal file

File diff suppressed because it is too large Load diff

9950
www/data/Map068.json Normal file

File diff suppressed because it is too large Load diff

8173
www/data/Map069.json Normal file

File diff suppressed because it is too large Load diff

2968
www/data/Map070.json Normal file

File diff suppressed because it is too large Load diff

27570
www/data/Map071.json Normal file

File diff suppressed because it is too large Load diff

9786
www/data/Map072.json Normal file

File diff suppressed because it is too large Load diff

6549
www/data/Map073.json Normal file

File diff suppressed because it is too large Load diff

14362
www/data/Map074.json Normal file

File diff suppressed because it is too large Load diff

8291
www/data/Map075.json Normal file

File diff suppressed because it is too large Load diff

3398
www/data/Map076.json Normal file

File diff suppressed because it is too large Load diff

20909
www/data/Map077.json Normal file

File diff suppressed because it is too large Load diff

12605
www/data/Map078.json Normal file

File diff suppressed because it is too large Load diff

8050
www/data/Map079.json Normal file

File diff suppressed because it is too large Load diff

17110
www/data/Map080.json Normal file

File diff suppressed because it is too large Load diff

19771
www/data/Map081.json Normal file

File diff suppressed because it is too large Load diff

11950
www/data/Map082.json Normal file

File diff suppressed because it is too large Load diff

26390
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