Initial Commit
This commit is contained in:
commit
c46119a9dc
1056 changed files with 8467988 additions and 0 deletions
79
.gitignore
vendored
Normal file
79
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
# Ignore all files
|
||||
*.*
|
||||
|
||||
# File Types
|
||||
!*.mps
|
||||
!*.dat
|
||||
!*.json
|
||||
!*.txt
|
||||
!*.project
|
||||
!*.js
|
||||
!*.zip
|
||||
!*.7z
|
||||
!*.csv
|
||||
!*.ain
|
||||
!*.fnl
|
||||
!*.ks
|
||||
!*.tjs
|
||||
!*.yaml
|
||||
!*.rb
|
||||
|
||||
# Other Needed Files
|
||||
!.gitignore
|
||||
!README.md
|
||||
!patch-config.txt
|
||||
!GAMEUPDATE.bat
|
||||
|
||||
# Ignore
|
||||
previous_patch_sha.txt
|
||||
kabe3_save.dat
|
||||
kabe3_system.dat
|
||||
psbpack.dat
|
||||
|
||||
# Images
|
||||
!celica_magia.rpgmvp
|
||||
!chapter1.rpgmvp
|
||||
!cutin_student_id.rpgmvp
|
||||
!MM_EV10_01.rpgmvp
|
||||
!MM_EV10_02.rpgmvp
|
||||
!MM_EV10_03.rpgmvp
|
||||
!MM_EV10_04.rpgmvp
|
||||
!MM_EV11_01.rpgmvp
|
||||
!MM_EV11_02.rpgmvp
|
||||
!MM_EV11_03.rpgmvp
|
||||
!MM_EV12_01.rpgmvp
|
||||
!MM_EV12_02.rpgmvp
|
||||
!MM_EV12_03.rpgmvp
|
||||
!MM_EV12_04.rpgmvp
|
||||
!MM_EV12_05.rpgmvp
|
||||
!MM_EV12_06.rpgmvp
|
||||
!MM_EV12_07.rpgmvp
|
||||
!MM_EV12_08.rpgmvp
|
||||
!MM_SEV01_01.rpgmvp
|
||||
!MM_SEV01_02.rpgmvp
|
||||
!MM_SEV01_03.rpgmvp
|
||||
!MM_SEV01_04.rpgmvp
|
||||
!MM_SEV02_01.rpgmvp
|
||||
!MM_SEV02_02.rpgmvp
|
||||
!MM_SEV02_03.rpgmvp
|
||||
!MM_SEV02_04.rpgmvp
|
||||
!MM_SEV02_05.rpgmvp
|
||||
!MM_SEV03_01.rpgmvp
|
||||
!MM_SEV03_02.rpgmvp
|
||||
!MM_SEV03_03.rpgmvp
|
||||
!MM_SEV03_04.rpgmvp
|
||||
!operation.rpgmvp
|
||||
!status_e1.rpgmvp
|
||||
!status_e101.rpgmvp
|
||||
!status_e102.rpgmvp
|
||||
!status_e103.rpgmvp
|
||||
!status_e104.rpgmvp
|
||||
!status_e105.rpgmvp
|
||||
!status_e2.rpgmvp
|
||||
!status_n1.rpgmvp
|
||||
!status_n101.rpgmvp
|
||||
!status_n102.rpgmvp
|
||||
!status_n103.rpgmvp
|
||||
!status_n104.rpgmvp
|
||||
!status_n105.rpgmvp
|
||||
!status_n2.rpgmvp
|
||||
73
GAMEUPDATE.bat
Normal file
73
GAMEUPDATE.bat
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
@echo off
|
||||
setlocal enabledelayedexpansion
|
||||
cd dazed
|
||||
|
||||
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."
|
||||
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"
|
||||
powershell -Command "(Invoke-WebRequest -Uri 'https://api.github.com/repos/%username%/%repo%/branches/%branch%').Content | ConvertFrom-Json | Select-Object -ExpandProperty commit | Select-Object -ExpandProperty sha" > 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
|
||||
exit /b
|
||||
|
||||
:download_extract
|
||||
REM Download zip file
|
||||
echo "Downloading latest patch..."
|
||||
powershell -Command "Invoke-WebRequest -Uri 'https://codeload.github.com/%username%/%repo%/zip/refs/heads/%branch%' -OutFile 'repo.zip'"
|
||||
|
||||
REM Extract contents, overwriting conflicts
|
||||
echo "Extracting..."
|
||||
powershell -Command "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%-main"
|
||||
del latest_patch_sha.txt
|
||||
|
||||
REM Store latest SHA for next check
|
||||
echo %latest_patch_sha% > previous_patch_sha.txt
|
||||
endlocal
|
||||
exit /b
|
||||
BIN
icudtl.dat
Normal file
BIN
icudtl.dat
Normal file
Binary file not shown.
12
package.json
Normal file
12
package.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"name": "mygame",
|
||||
"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
3
patch-config.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
username=DazedMTL
|
||||
repo=Celica-Magia
|
||||
branch=main
|
||||
95
readme.txt
Normal file
95
readme.txt
Normal file
|
|
@ -0,0 +1,95 @@
|
|||
|
||||
――――――――――――――――――――――――――
|
||||
|
||||
アリサグリモア ver2.00
|
||||
|
||||
――――――――――――――――――――――――――
|
||||
|
||||
ダウンロードありがとうございます。
|
||||
プレイ方法:「Game.exe」をダブルクリックで
|
||||
ゲームが始まります。
|
||||
|
||||
アンインストール方法:フォルダを削除してください。
|
||||
|
||||
キーボード操作説明
|
||||
|
||||
十字キー = 移動
|
||||
Enter/Z = 話す/決定
|
||||
Ese/X = メニュー表示/キャンセル
|
||||
Ctrl = メッセージスキップ
|
||||
|
||||
A = オートモードオン/オフ
|
||||
S = スキップモードオン/オフ
|
||||
V = 立ち絵表示オン
|
||||
C = 立ち絵表示オフ
|
||||
Q = バックログ・後ろへ
|
||||
W = バックログ・前へ
|
||||
|
||||
Shift = ダッシュ(オプションで常時オン・オフに変更可)
|
||||
戦闘速度の高速化オン/オフ
|
||||
|
||||
右クリック = メッセージウィンドウ消去
|
||||
|
||||
|
||||
――――――――――――――――――――――――――
|
||||
更新方法
|
||||
|
||||
ゲームフォルダ内の「www」内の「save」フォルダを
|
||||
新しい方に入れ替えてください。
|
||||
|
||||
|
||||
更新履歴
|
||||
|
||||
ver2.00
|
||||
Hシーンを追加しました。
|
||||
|
||||
|
||||
ver1.07
|
||||
Hシーンを追加しました。
|
||||
|
||||
ver1.06
|
||||
Hシーンを追加しました。
|
||||
|
||||
ver1.05
|
||||
Hシーンを追加しました。
|
||||
|
||||
ver1.04
|
||||
不具合修正 一部イベントの演出ミス
|
||||
一部敵の弱点表記ミス
|
||||
誤字脱字修正
|
||||
|
||||
ver1.03
|
||||
不具合修正 監禁時のお風呂場のイベントで
|
||||
Hステータスの回数がリセットされてしまう不具合を修正しました。
|
||||
|
||||
キノコイベントをクリア後、回想できる場所を追加しました。
|
||||
|
||||
キノコのボス敗北後に画面が暗転したままになる状態を修正しました。
|
||||
|
||||
一部テキストの記述ミス
|
||||
|
||||
ver1.02
|
||||
不具合修正 回想ルームにHステータスの画像、
|
||||
コメントをリセットする機能を追加しました。
|
||||
|
||||
売春イベントで最初に同じ相手を何人も連れて歩ける不具合を修正しました。
|
||||
|
||||
マップの繋ぎの不具合を修正
|
||||
|
||||
一部アイテムの記述ミス
|
||||
|
||||
街中のダンジョンをクリアした後、
|
||||
次のダンジョンにダンジョンルームから向かってしまうと
|
||||
ダンジョンの外に出てしまい、戻れなくなる状態を修正しました。
|
||||
|
||||
ver1.01
|
||||
不具合修正 三階東側での生徒との会話で止まってしまう状態を修正しました。
|
||||
|
||||
催眠状態でのフリートイレで
|
||||
イベントに左右から話しかけると止まってしまう状態を修正しました。
|
||||
|
||||
マップの繋ぎの不具合の修正
|
||||
|
||||
特定のHイベント後にHステータスを開くと
|
||||
参照画像が表示されない不具合を修正しました。
|
||||
|
||||
848
www/data/Actors.json
Normal file
848
www/data/Actors.json
Normal file
|
|
@ -0,0 +1,848 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"battlerName": "Actor1_1",
|
||||
"characterIndex": 0,
|
||||
"characterName": "00test",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "00test01",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "アリサ",
|
||||
"nickname": "",
|
||||
"note": "<stand_picture:001>\n<FTKR_ACTOR_COMMAND: skill 1>\n<FTKR_ACTOR_COMMAND: skill 2>\n<FTKR_ACTOR_COMMAND: custom 28 true 28>\n<FTKR_ACTOR_COMMAND: item>\n<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"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": 3,
|
||||
"battlerName": "",
|
||||
"characterIndex": 5,
|
||||
"characterName": "00test",
|
||||
"classId": 5,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "01main2_r11",
|
||||
"traits": [
|
||||
{
|
||||
"code": 54,
|
||||
"dataId": 1,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 54,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 54,
|
||||
"dataId": 3,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 54,
|
||||
"dataId": 4,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 54,
|
||||
"dataId": 5,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 10,
|
||||
"maxLevel": 99,
|
||||
"name": "六花",
|
||||
"nickname": "",
|
||||
"note": "<stand_picture:002>\n<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"battlerName": "",
|
||||
"characterIndex": 2,
|
||||
"characterName": "00test",
|
||||
"classId": 4,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "01main3_1Sutera",
|
||||
"traits": [
|
||||
{
|
||||
"code": 54,
|
||||
"dataId": 1,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 54,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 54,
|
||||
"dataId": 3,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 54,
|
||||
"dataId": 4,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 54,
|
||||
"dataId": 5,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 15,
|
||||
"maxLevel": 99,
|
||||
"name": "ステラ",
|
||||
"nickname": "",
|
||||
"note": "<stand_picture:003>\n<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"battlerName": "",
|
||||
"characterIndex": 1,
|
||||
"characterName": "00test",
|
||||
"classId": 5,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 1,
|
||||
"faceName": "01main2_1Riika",
|
||||
"traits": [],
|
||||
"initialLevel": 10,
|
||||
"maxLevel": 99,
|
||||
"name": "六花",
|
||||
"nickname": "",
|
||||
"note": "<stand_picture:002>\n<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"battlerName": "Actor1_1",
|
||||
"characterIndex": 2,
|
||||
"characterName": "ex02",
|
||||
"classId": 7,
|
||||
"equips": [
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "10sab7_1zi",
|
||||
"traits": [
|
||||
{
|
||||
"code": 53,
|
||||
"dataId": 1,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 54,
|
||||
"dataId": 5,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "ジーヴェ",
|
||||
"nickname": "",
|
||||
"note": "<stand_picture:004>\n<FTKR_ACTOR_COMMAND: skill 1>\n<FTKR_ACTOR_COMMAND: skill 2>\n<FTKR_ACTOR_COMMAND: custom 28 true 28>\n<FTKR_ACTOR_COMMAND: item>\n<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"battlerName": "Actor1_1",
|
||||
"characterIndex": 0,
|
||||
"characterName": "00test",
|
||||
"classId": 3,
|
||||
"equips": [
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "00test01",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "アリサ",
|
||||
"nickname": "",
|
||||
"note": "<stand_picture:001>\n<FTKR_ACTOR_COMMAND: skill 1>\n<FTKR_ACTOR_COMMAND: skill 2>\n<FTKR_ACTOR_COMMAND: custom 28 true 28>\n<FTKR_ACTOR_COMMAND: item>\n<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "---NPC",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"battlerName": "",
|
||||
"characterIndex": 1,
|
||||
"characterName": "sab01",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "スバル",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "sab01",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "奈緒",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "mobhc01-3",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "星良",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"battlerName": "",
|
||||
"characterIndex": 6,
|
||||
"characterName": "mobhc01-6",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "ひじり",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"battlerName": "",
|
||||
"characterIndex": 6,
|
||||
"characterName": "ex01",
|
||||
"classId": 2,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "ウィル",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"battlerName": "",
|
||||
"characterIndex": 1,
|
||||
"characterName": "00test",
|
||||
"classId": 5,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 1,
|
||||
"faceName": "01main2_1Riika",
|
||||
"traits": [],
|
||||
"initialLevel": 20,
|
||||
"maxLevel": 99,
|
||||
"name": "六花",
|
||||
"nickname": "",
|
||||
"note": "<stand_picture:002>\n<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "sab04",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "十六夜",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "sao02",
|
||||
"classId": 5,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 1,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 20,
|
||||
"maxLevel": 99,
|
||||
"name": "田中",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"battlerName": "",
|
||||
"characterIndex": 6,
|
||||
"characterName": "sao01",
|
||||
"classId": 5,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 1,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 20,
|
||||
"maxLevel": 99,
|
||||
"name": "金城",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"battlerName": "",
|
||||
"characterIndex": 6,
|
||||
"characterName": "sab01",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "藤ヶ丘",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"battlerName": "Actor1_1",
|
||||
"characterIndex": 0,
|
||||
"characterName": "00test",
|
||||
"classId": 2,
|
||||
"equips": [
|
||||
12,
|
||||
1,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "00test01",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "テストアリサ",
|
||||
"nickname": "",
|
||||
"note": "<stand_picture:001>\n<FTKR_ACTOR_COMMAND: skill 1>\n<FTKR_ACTOR_COMMAND: skill 2>\n<FTKR_ACTOR_COMMAND: custom 28 true 28>\n<FTKR_ACTOR_COMMAND: item>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "---イベントNPC",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"battlerName": "",
|
||||
"characterIndex": 2,
|
||||
"characterName": "mobhc01-5",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "お客テスト",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "mobhd01-2",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "お客チャラ",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"battlerName": "",
|
||||
"characterIndex": 3,
|
||||
"characterName": "mobhc01-5",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "お客陰気",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"battlerName": "",
|
||||
"characterIndex": 2,
|
||||
"characterName": "mobhd01-2",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "お客堅物",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"battlerName": "",
|
||||
"characterIndex": 6,
|
||||
"characterName": "sao02",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "お客変態",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"battlerName": "",
|
||||
"characterIndex": 1,
|
||||
"characterName": "saob10",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "お客追加",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"battlerName": "",
|
||||
"characterIndex": 4,
|
||||
"characterName": "saob07",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "小僧",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"battlerName": "",
|
||||
"characterIndex": 5,
|
||||
"characterName": "sao02",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "増田",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 31,
|
||||
"battlerName": "",
|
||||
"characterIndex": 1,
|
||||
"characterName": "mobhc01-3",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "ひじり",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 32,
|
||||
"battlerName": "",
|
||||
"characterIndex": 6,
|
||||
"characterName": "sao02",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "後藤",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 33,
|
||||
"battlerName": "",
|
||||
"characterIndex": 2,
|
||||
"characterName": "mobhc01-6",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "星良",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 34,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "mobhh01-1",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "石村",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 35,
|
||||
"battlerName": "",
|
||||
"characterIndex": 1,
|
||||
"characterName": "00main01",
|
||||
"classId": 5,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 3,
|
||||
"faceName": "01main1_aaaaaaaa86",
|
||||
"traits": [],
|
||||
"initialLevel": 20,
|
||||
"maxLevel": 99,
|
||||
"name": "はだかアリサ",
|
||||
"nickname": "",
|
||||
"note": "<stand_picture:002>\n<KNHShadow>",
|
||||
"profile": ""
|
||||
}
|
||||
]
|
||||
639438
www/data/Animations.json
Normal file
639438
www/data/Animations.json
Normal file
File diff suppressed because it is too large
Load diff
2470
www/data/Armors.json
Normal file
2470
www/data/Armors.json
Normal file
File diff suppressed because it is too large
Load diff
7094
www/data/Classes.json
Normal file
7094
www/data/Classes.json
Normal file
File diff suppressed because it is too large
Load diff
647092
www/data/CommonEvents.json
Normal file
647092
www/data/CommonEvents.json
Normal file
File diff suppressed because it is too large
Load diff
388
www/data/ContainerProperties.json
Normal file
388
www/data/ContainerProperties.json
Normal file
|
|
@ -0,0 +1,388 @@
|
|||
{
|
||||
"Scene_Map": {
|
||||
"WindowLayer": {
|
||||
"0,Window_Message": {
|
||||
"x": 173,
|
||||
"y": 507,
|
||||
"width": 816,
|
||||
"height": 180,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 26,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"2,Window_ChoiceList": {
|
||||
"x": 874,
|
||||
"y": 258,
|
||||
"width": 230,
|
||||
"height": 324,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 26,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
"Scene_Title": {
|
||||
"Scene_Title": {
|
||||
"0,Sprite": {
|
||||
"x": 576,
|
||||
"y": 360
|
||||
}
|
||||
}
|
||||
},
|
||||
"Scene_Save": {
|
||||
"WindowLayer": {
|
||||
"1,Window_SavefileList": {
|
||||
"x": 80,
|
||||
"y": 96,
|
||||
"width": 1000,
|
||||
"height": 324,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 26,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": "36",
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"2,Window_SavefileStatus": {
|
||||
"x": 79,
|
||||
"y": 420,
|
||||
"width": 1000,
|
||||
"height": 220,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 26,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": "36",
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"0,Window_Help": {
|
||||
"x": 79,
|
||||
"y": 24,
|
||||
"width": 1000,
|
||||
"height": 72,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
}
|
||||
},
|
||||
"Scene_Save": {
|
||||
"0,Sprite": {
|
||||
"x": 0,
|
||||
"y": 0
|
||||
}
|
||||
}
|
||||
},
|
||||
"Scene_Load": {
|
||||
"WindowLayer": {
|
||||
"2,Window_SavefileStatus": {
|
||||
"x": 79,
|
||||
"y": 428,
|
||||
"width": 1000,
|
||||
"height": 220,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"1,Window_SavefileList": {
|
||||
"x": 80,
|
||||
"y": 104,
|
||||
"width": 1000,
|
||||
"height": 324,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"0,Window_Help": {
|
||||
"x": 81,
|
||||
"y": 32,
|
||||
"width": 1000,
|
||||
"height": 72,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
"Scene_Menu": {
|
||||
"WindowLayer": {
|
||||
"0,Window_MenuCommand": {
|
||||
"x": 79,
|
||||
"y": 22,
|
||||
"width": 1000,
|
||||
"height": 144,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"2,Window_MenuStatus": {
|
||||
"x": 78,
|
||||
"y": 166,
|
||||
"width": 1000,
|
||||
"height": 450,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"1,Window_Gold": {
|
||||
"x": 820,
|
||||
"y": 616,
|
||||
"width": 240,
|
||||
"height": 72,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
"Scene_Item": {
|
||||
"WindowLayer": {
|
||||
"0,Window_Help": {
|
||||
"x": 73,
|
||||
"y": 0,
|
||||
"width": 1000,
|
||||
"height": 108,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 26,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"1,Window_ItemCategory": {
|
||||
"x": 74,
|
||||
"y": 108,
|
||||
"width": 1000,
|
||||
"height": 72,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 26,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"2,Window_ItemList": {
|
||||
"x": 73,
|
||||
"y": 180,
|
||||
"width": 1000,
|
||||
"height": 540,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 26,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
"Scene_Skill": {
|
||||
"WindowLayer": {
|
||||
"0,Window_Help": {
|
||||
"x": 85,
|
||||
"y": 0,
|
||||
"width": 1000,
|
||||
"height": 108,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 26,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"2,Window_SkillStatus": {
|
||||
"x": 324,
|
||||
"y": 108,
|
||||
"width": 750,
|
||||
"height": 180,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 26,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"1,Window_SkillType": {
|
||||
"x": 84,
|
||||
"y": 108,
|
||||
"width": 240,
|
||||
"height": 180,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 26,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"3,Window_SkillList": {
|
||||
"x": 83,
|
||||
"y": 288,
|
||||
"width": 1000,
|
||||
"height": 432,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 26,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
"Scene_Equip": {
|
||||
"WindowLayer": {
|
||||
"0,Window_Help": {
|
||||
"x": 80,
|
||||
"y": 0,
|
||||
"width": 1000,
|
||||
"height": 108,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 26,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"3,Window_EquipSlot": {
|
||||
"x": 490,
|
||||
"y": 108,
|
||||
"width": 500,
|
||||
"height": 288,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 26,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"1,Window_EquipStatus": {
|
||||
"x": 132,
|
||||
"y": 108,
|
||||
"width": 312,
|
||||
"height": 288,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 26,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"4,Window_EquipItem": {
|
||||
"x": 78,
|
||||
"y": 396,
|
||||
"width": 1000,
|
||||
"height": 324,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 26,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
"Scene_Status": {
|
||||
"WindowLayer": {
|
||||
"0,Window_Status": {
|
||||
"x": 76,
|
||||
"y": 0,
|
||||
"width": 1000,
|
||||
"height": 720,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 26,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
"Scene_Battle": {
|
||||
"WindowLayer": {
|
||||
"11,Window_ChoiceList": {
|
||||
"x": 501,
|
||||
"y": 273,
|
||||
"width": 132,
|
||||
"height": 216,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 26,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
10125
www/data/Enemies.json
Normal file
10125
www/data/Enemies.json
Normal file
File diff suppressed because it is too large
Load diff
4610
www/data/Items.json
Normal file
4610
www/data/Items.json
Normal file
File diff suppressed because it is too large
Load diff
1366
www/data/Map001.json
Normal file
1366
www/data/Map001.json
Normal file
File diff suppressed because it is too large
Load diff
23201
www/data/Map002.json
Normal file
23201
www/data/Map002.json
Normal file
File diff suppressed because it is too large
Load diff
8334
www/data/Map003.json
Normal file
8334
www/data/Map003.json
Normal file
File diff suppressed because it is too large
Load diff
5098
www/data/Map004.json
Normal file
5098
www/data/Map004.json
Normal file
File diff suppressed because it is too large
Load diff
5278
www/data/Map005.json
Normal file
5278
www/data/Map005.json
Normal file
File diff suppressed because it is too large
Load diff
5045
www/data/Map006.json
Normal file
5045
www/data/Map006.json
Normal file
File diff suppressed because it is too large
Load diff
5008
www/data/Map007.json
Normal file
5008
www/data/Map007.json
Normal file
File diff suppressed because it is too large
Load diff
4026
www/data/Map008.json
Normal file
4026
www/data/Map008.json
Normal file
File diff suppressed because it is too large
Load diff
4513
www/data/Map009.json
Normal file
4513
www/data/Map009.json
Normal file
File diff suppressed because it is too large
Load diff
4351
www/data/Map010.json
Normal file
4351
www/data/Map010.json
Normal file
File diff suppressed because it is too large
Load diff
5154
www/data/Map011.json
Normal file
5154
www/data/Map011.json
Normal file
File diff suppressed because it is too large
Load diff
13095
www/data/Map012.json
Normal file
13095
www/data/Map012.json
Normal file
File diff suppressed because it is too large
Load diff
3375
www/data/Map013.json
Normal file
3375
www/data/Map013.json
Normal file
File diff suppressed because it is too large
Load diff
3573
www/data/Map014.json
Normal file
3573
www/data/Map014.json
Normal file
File diff suppressed because it is too large
Load diff
4935
www/data/Map015.json
Normal file
4935
www/data/Map015.json
Normal file
File diff suppressed because it is too large
Load diff
2045
www/data/Map016.json
Normal file
2045
www/data/Map016.json
Normal file
File diff suppressed because it is too large
Load diff
2045
www/data/Map017.json
Normal file
2045
www/data/Map017.json
Normal file
File diff suppressed because it is too large
Load diff
2045
www/data/Map018.json
Normal file
2045
www/data/Map018.json
Normal file
File diff suppressed because it is too large
Load diff
2045
www/data/Map019.json
Normal file
2045
www/data/Map019.json
Normal file
File diff suppressed because it is too large
Load diff
2045
www/data/Map020.json
Normal file
2045
www/data/Map020.json
Normal file
File diff suppressed because it is too large
Load diff
2045
www/data/Map021.json
Normal file
2045
www/data/Map021.json
Normal file
File diff suppressed because it is too large
Load diff
11054
www/data/Map022.json
Normal file
11054
www/data/Map022.json
Normal file
File diff suppressed because it is too large
Load diff
6262
www/data/Map023.json
Normal file
6262
www/data/Map023.json
Normal file
File diff suppressed because it is too large
Load diff
5903
www/data/Map024.json
Normal file
5903
www/data/Map024.json
Normal file
File diff suppressed because it is too large
Load diff
7354
www/data/Map025.json
Normal file
7354
www/data/Map025.json
Normal file
File diff suppressed because it is too large
Load diff
1962
www/data/Map026.json
Normal file
1962
www/data/Map026.json
Normal file
File diff suppressed because it is too large
Load diff
6307
www/data/Map027.json
Normal file
6307
www/data/Map027.json
Normal file
File diff suppressed because it is too large
Load diff
9611
www/data/Map028.json
Normal file
9611
www/data/Map028.json
Normal file
File diff suppressed because it is too large
Load diff
3842
www/data/Map029.json
Normal file
3842
www/data/Map029.json
Normal file
File diff suppressed because it is too large
Load diff
7399
www/data/Map030.json
Normal file
7399
www/data/Map030.json
Normal file
File diff suppressed because it is too large
Load diff
1381
www/data/Map031.json
Normal file
1381
www/data/Map031.json
Normal file
File diff suppressed because it is too large
Load diff
15911
www/data/Map032.json
Normal file
15911
www/data/Map032.json
Normal file
File diff suppressed because it is too large
Load diff
7759
www/data/Map033.json
Normal file
7759
www/data/Map033.json
Normal file
File diff suppressed because it is too large
Load diff
10628
www/data/Map034.json
Normal file
10628
www/data/Map034.json
Normal file
File diff suppressed because it is too large
Load diff
8610
www/data/Map035.json
Normal file
8610
www/data/Map035.json
Normal file
File diff suppressed because it is too large
Load diff
11422
www/data/Map036.json
Normal file
11422
www/data/Map036.json
Normal file
File diff suppressed because it is too large
Load diff
5073
www/data/Map037.json
Normal file
5073
www/data/Map037.json
Normal file
File diff suppressed because it is too large
Load diff
6573
www/data/Map038.json
Normal file
6573
www/data/Map038.json
Normal file
File diff suppressed because it is too large
Load diff
5129
www/data/Map039.json
Normal file
5129
www/data/Map039.json
Normal file
File diff suppressed because it is too large
Load diff
6454
www/data/Map040.json
Normal file
6454
www/data/Map040.json
Normal file
File diff suppressed because it is too large
Load diff
6087
www/data/Map041.json
Normal file
6087
www/data/Map041.json
Normal file
File diff suppressed because it is too large
Load diff
6005
www/data/Map042.json
Normal file
6005
www/data/Map042.json
Normal file
File diff suppressed because it is too large
Load diff
3935
www/data/Map043.json
Normal file
3935
www/data/Map043.json
Normal file
File diff suppressed because it is too large
Load diff
4647
www/data/Map044.json
Normal file
4647
www/data/Map044.json
Normal file
File diff suppressed because it is too large
Load diff
11476
www/data/Map045.json
Normal file
11476
www/data/Map045.json
Normal file
File diff suppressed because it is too large
Load diff
3935
www/data/Map046.json
Normal file
3935
www/data/Map046.json
Normal file
File diff suppressed because it is too large
Load diff
4647
www/data/Map047.json
Normal file
4647
www/data/Map047.json
Normal file
File diff suppressed because it is too large
Load diff
3935
www/data/Map048.json
Normal file
3935
www/data/Map048.json
Normal file
File diff suppressed because it is too large
Load diff
5003
www/data/Map049.json
Normal file
5003
www/data/Map049.json
Normal file
File diff suppressed because it is too large
Load diff
9139
www/data/Map050.json
Normal file
9139
www/data/Map050.json
Normal file
File diff suppressed because it is too large
Load diff
5517
www/data/Map051.json
Normal file
5517
www/data/Map051.json
Normal file
File diff suppressed because it is too large
Load diff
1366
www/data/Map052.json
Normal file
1366
www/data/Map052.json
Normal file
File diff suppressed because it is too large
Load diff
22554
www/data/Map053.json
Normal file
22554
www/data/Map053.json
Normal file
File diff suppressed because it is too large
Load diff
8111
www/data/Map054.json
Normal file
8111
www/data/Map054.json
Normal file
File diff suppressed because it is too large
Load diff
4196
www/data/Map055.json
Normal file
4196
www/data/Map055.json
Normal file
File diff suppressed because it is too large
Load diff
4606
www/data/Map056.json
Normal file
4606
www/data/Map056.json
Normal file
File diff suppressed because it is too large
Load diff
6589
www/data/Map057.json
Normal file
6589
www/data/Map057.json
Normal file
File diff suppressed because it is too large
Load diff
16226
www/data/Map058.json
Normal file
16226
www/data/Map058.json
Normal file
File diff suppressed because it is too large
Load diff
3575
www/data/Map059.json
Normal file
3575
www/data/Map059.json
Normal file
File diff suppressed because it is too large
Load diff
6248
www/data/Map060.json
Normal file
6248
www/data/Map060.json
Normal file
File diff suppressed because it is too large
Load diff
7308
www/data/Map061.json
Normal file
7308
www/data/Map061.json
Normal file
File diff suppressed because it is too large
Load diff
24139
www/data/Map062.json
Normal file
24139
www/data/Map062.json
Normal file
File diff suppressed because it is too large
Load diff
5920
www/data/Map063.json
Normal file
5920
www/data/Map063.json
Normal file
File diff suppressed because it is too large
Load diff
10018
www/data/Map064.json
Normal file
10018
www/data/Map064.json
Normal file
File diff suppressed because it is too large
Load diff
1366
www/data/Map065.json
Normal file
1366
www/data/Map065.json
Normal file
File diff suppressed because it is too large
Load diff
11333
www/data/Map066.json
Normal file
11333
www/data/Map066.json
Normal file
File diff suppressed because it is too large
Load diff
7887
www/data/Map067.json
Normal file
7887
www/data/Map067.json
Normal file
File diff suppressed because it is too large
Load diff
5151
www/data/Map068.json
Normal file
5151
www/data/Map068.json
Normal file
File diff suppressed because it is too large
Load diff
5459
www/data/Map069.json
Normal file
5459
www/data/Map069.json
Normal file
File diff suppressed because it is too large
Load diff
13996
www/data/Map070.json
Normal file
13996
www/data/Map070.json
Normal file
File diff suppressed because it is too large
Load diff
14467
www/data/Map071.json
Normal file
14467
www/data/Map071.json
Normal file
File diff suppressed because it is too large
Load diff
8596
www/data/Map072.json
Normal file
8596
www/data/Map072.json
Normal file
File diff suppressed because it is too large
Load diff
6138
www/data/Map073.json
Normal file
6138
www/data/Map073.json
Normal file
File diff suppressed because it is too large
Load diff
4350
www/data/Map074.json
Normal file
4350
www/data/Map074.json
Normal file
File diff suppressed because it is too large
Load diff
6874
www/data/Map075.json
Normal file
6874
www/data/Map075.json
Normal file
File diff suppressed because it is too large
Load diff
2804
www/data/Map076.json
Normal file
2804
www/data/Map076.json
Normal file
File diff suppressed because it is too large
Load diff
5838
www/data/Map077.json
Normal file
5838
www/data/Map077.json
Normal file
File diff suppressed because it is too large
Load diff
6695
www/data/Map078.json
Normal file
6695
www/data/Map078.json
Normal file
File diff suppressed because it is too large
Load diff
11254
www/data/Map079.json
Normal file
11254
www/data/Map079.json
Normal file
File diff suppressed because it is too large
Load diff
6031
www/data/Map080.json
Normal file
6031
www/data/Map080.json
Normal file
File diff suppressed because it is too large
Load diff
7752
www/data/Map081.json
Normal file
7752
www/data/Map081.json
Normal file
File diff suppressed because it is too large
Load diff
5570
www/data/Map082.json
Normal file
5570
www/data/Map082.json
Normal file
File diff suppressed because it is too large
Load diff
124493
www/data/Map083.json
Normal file
124493
www/data/Map083.json
Normal file
File diff suppressed because it is too large
Load diff
21380
www/data/Map084.json
Normal file
21380
www/data/Map084.json
Normal file
File diff suppressed because it is too large
Load diff
37831
www/data/Map085.json
Normal file
37831
www/data/Map085.json
Normal file
File diff suppressed because it is too large
Load diff
4763
www/data/Map086.json
Normal file
4763
www/data/Map086.json
Normal file
File diff suppressed because it is too large
Load diff
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue