Initial Commit
This commit is contained in:
commit
bada7f0c06
297 changed files with 1250768 additions and 0 deletions
84
.gitignore
vendored
Normal file
84
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
# 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.bat
|
||||
!Game.dat
|
||||
|
||||
# Ignore
|
||||
previous_patch_sha.txt
|
||||
kabe3_save.dat
|
||||
kabe3_system.dat
|
||||
psbpack.dat
|
||||
Save*
|
||||
|
||||
# Images
|
||||
!1P_erosute_haikei.png
|
||||
!1P_erosute_serihu1_019.png
|
||||
!1P_erosute_serihu2_2039.png
|
||||
!1P_erosute_serihu3_4059.png
|
||||
!1P_erosute_serihu4_6079.png
|
||||
!1P_erosute_serihu5_8099.png
|
||||
!1P_erosute_serihu6_100.png
|
||||
!2P_zukan1_kaihou.png
|
||||
!2P_zukan1_kaihou_serihu1.png
|
||||
!2P_zukan1_kaihou_serihu2.png
|
||||
!2P_zukan1_kaihou_serihu3.png
|
||||
!2P_zukan1_mikaihou.png
|
||||
!2P_zukan2_kaihou.png
|
||||
!2P_zukan2_kaihou_serihu1.png
|
||||
!2P_zukan2_kaihou_serihu2.png
|
||||
!2P_zukan2_kaihou_serihu3.png
|
||||
!2P_zukan2_mikaihou.png
|
||||
!2P_zukan3_kaihou.png
|
||||
!2P_zukan3_kaihou_serihu1.png
|
||||
!2P_zukan3_kaihou_serihu2.png
|
||||
!2P_zukan3_kaihou_serihu3.png
|
||||
!2P_zukan3_mikaihou.png
|
||||
!2P_zukan4_kaihou.png
|
||||
!2P_zukan4_kaihou_serihu1.png
|
||||
!2P_zukan4_kaihou_serihu2.png
|
||||
!2P_zukan4_kaihou_serihu3.png
|
||||
!2P_zukan4_mikaihou.png
|
||||
!2P_zukan5_kaihou.png
|
||||
!2P_zukan5_kaihou_serihu1.png
|
||||
!2P_zukan5_kaihou_serihu2.png
|
||||
!2P_zukan5_kaihou_serihu3.png
|
||||
!2P_zukan5_mikaihou.png
|
||||
!2P_zukan6_kaihou.png
|
||||
!2P_zukan6_kaihou_serihu1.png
|
||||
!2P_zukan6_kaihou_serihu2.png
|
||||
!2P_zukan6_kaihou_serihu3.png
|
||||
!2P_zukan6_mikaihou.png
|
||||
!2P_zukan7_kaihou.png
|
||||
!2P_zukan7_kaihou_serihu1.png
|
||||
!2P_zukan7_kaihou_serihu2.png
|
||||
!2P_zukan7_kaihou_serihu3.png
|
||||
!2P_zukan7_mikaihou.png
|
||||
!70_ui_左枠.png
|
||||
!71_ui_右枠.png
|
||||
!71_ui_右枠_バステ.png
|
||||
!mapUI_test.png
|
||||
!71_basute_sitazi.png
|
||||
14
GAMEUPDATE.bat
Normal file
14
GAMEUPDATE.bat
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
@echo off
|
||||
setlocal
|
||||
|
||||
REM Copy GAMEUPDATE.bat to a new file
|
||||
copy patch.bat patch2.bat
|
||||
|
||||
REM Run the new file
|
||||
call patch2.bat
|
||||
|
||||
REM Delete the new file
|
||||
del patch2.bat
|
||||
|
||||
endlocal
|
||||
@echo on
|
||||
75
GameUpdate_linux.sh
Normal file
75
GameUpdate_linux.sh
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
#!/bin/bash
|
||||
|
||||
function check_dependency() {
|
||||
if ! command -v "$1" &> /dev/null; then
|
||||
echo "Error: '$1' is not installed. Please install it."
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
# Check for jq and unzip
|
||||
check_dependency jq
|
||||
check_dependency unzip
|
||||
|
||||
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"
|
||||
|
||||
# Read configuration from file
|
||||
source "$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')
|
||||
|
||||
function 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..."
|
||||
if [ -d "$repo-$branch/"www ]; then
|
||||
cp -r "$repo-$branch/"* .
|
||||
jq --arg repo "$repo" 'if (.name | test("^[[:space:]]*$")) then .name = $repo else . end' package.json > package.json
|
||||
else
|
||||
cp -r "$repo-$branch/"* ./www
|
||||
fi
|
||||
|
||||
echo "Cleaning up..."
|
||||
rm repo.zip
|
||||
rm -rf "$repo-$branch"
|
||||
rm 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=$(<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
|
||||
|
||||
exit 0
|
||||
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": "",
|
||||
"main": "www/index.html",
|
||||
"js-flags": "--expose-gc",
|
||||
"window": {
|
||||
"title": "",
|
||||
"toolbar": false,
|
||||
"width": 816,
|
||||
"height": 624,
|
||||
"icon": "www/icon/icon.png"
|
||||
}
|
||||
}
|
||||
105
patch.bat
Normal file
105
patch.bat
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
@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 Download zip file
|
||||
echo "Downloading latest patch..."
|
||||
!_my_shell! -Command "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 "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
|
||||
311
readme.txt
Normal file
311
readme.txt
Normal file
|
|
@ -0,0 +1,311 @@
|
|||
|
||||
|
||||
-------------------------------
|
||||
|
||||
【レナリスサーガ】
|
||||
|
||||
ver1.02 2020/01/23
|
||||
|
||||
Copyright (C) CHERIS SOFT 2019
|
||||
-------------------------------
|
||||
|
||||
|
||||
―――――――――――――――――――――――――――――
|
||||
|
||||
|
||||
【ご挨拶】
|
||||
|
||||
この度は【レナリスサーガ】をご購入して頂き
|
||||
まことにありがとうございます。
|
||||
|
||||
当ゲームの制作者代表の、金澤カナタと申します。
|
||||
以下お手数ですが、お読み頂ければ幸いです。
|
||||
|
||||
|
||||
―――――――――――――――――――――――――――――
|
||||
|
||||
|
||||
【注意事項】
|
||||
|
||||
こちらの作品は成人向けゲームです。
|
||||
18歳未満の方はプレイできません。
|
||||
|
||||
当ゲームのほうを、制作者の許可なく配布や公開
|
||||
またはアップロードすることを禁止とさせて頂きます。
|
||||
|
||||
|
||||
|
||||
【免責事項】
|
||||
|
||||
当ゲームを使用することによって発生した
|
||||
いかなる損害について、責任のほうを負いません。
|
||||
ご使用されているパソコンの性能やOSの環境によっては
|
||||
ゲームが正常に動作しない場合があります。
|
||||
|
||||
外部から入手したセーブデータを
|
||||
当ゲームにご使用しないようにお願いたします。
|
||||
|
||||
環境設定でボイス項目がありますが
|
||||
音の設定は効果音でお願いします。申し訳ありません。
|
||||
|
||||
|
||||
上記のほう、まことに恐れ入りますが
|
||||
ご了承頂けますよう、お願いいたします。
|
||||
|
||||
|
||||
―――――――――――――――――――――――――――――
|
||||
|
||||
【操作方法】
|
||||
|
||||
・左クリックで決定。右クリックで基本戻る。
|
||||
・マウスホイールの上で過去ログを読めます。
|
||||
・キーボードの「Ctrl」の長押しで、文章の早送りが可能です。
|
||||
|
||||
―――――――――――――――――――――――――――――
|
||||
|
||||
|
||||
▼攻略ヒント
|
||||
|
||||
|
||||
街中でも突然のバッドエンドがあるので
|
||||
できるだけこまめに、別々にセーブをお願いします
|
||||
|
||||
薬草 回復エキス 妖精の粉 等
|
||||
回復系のアイテムはできるだけ持つこと
|
||||
|
||||
3章の古井戸で手に入る再起の指輪は
|
||||
必ず装備すること 装備しないとハードモードに
|
||||
|
||||
ボス戦の前には、できればテントを使ってセーブすること
|
||||
(ピンク色のボスアイコンは敗北エンド有り)
|
||||
|
||||
回復系の武器
|
||||
ミラクルソード 青紅剣などを装備すると
|
||||
戦闘でHPが自動回復するので戦いが楽に
|
||||
|
||||
士気は1ターンに1上昇
|
||||
|
||||
戦闘のCPはクリティカルポイント
|
||||
MAXでクリティカル攻撃をします
|
||||
|
||||
敵に勝てない場合はCP100の時に
|
||||
ハッスルエナジーを使ってからの
|
||||
閃光の連撃がオススメです
|
||||
|
||||
戦闘でのターンが99を越すと
|
||||
自動的にゲームオーバー
|
||||
|
||||
ラスボスを倒したときの称号で
|
||||
EDが変化します
|
||||
|
||||
右クリックで基本キャンセル
|
||||
CTRLで文章をスキップできます
|
||||
|
||||
ミニゲームはマウスのホイール上下で
|
||||
スキップすることができます
|
||||
|
||||
|
||||
|
||||
詳しい攻略は
|
||||
ホームページの「サポートページ」から
|
||||
攻略ページへリンクしてありますので
|
||||
そちらをご覧ください。
|
||||
|
||||
▼チェリスソフト HP▼
|
||||
http://cheris-soft.sakura.ne.jp/
|
||||
|
||||
|
||||
―――――――――――――――――――――――――――――
|
||||
|
||||
|
||||
|
||||
【スタッフ】
|
||||
|
||||
▼企画・シナリオ・プログラム▼
|
||||
金澤カナタ
|
||||
|
||||
▼イラスト▼
|
||||
羽浦明寿
|
||||
|
||||
▼サブテキスト▼
|
||||
衛市景
|
||||
https://twitter.com/cabore_HK
|
||||
|
||||
▼テストプレイ▼
|
||||
もやしさん 衛市さん 鈴原マキナさん(Altered)
|
||||
|
||||
|
||||
|
||||
【素材提供】
|
||||
|
||||
|
||||
▼ボイス▼
|
||||
西田光 様
|
||||
https://towelkethatowel.wixsite.com/akiramura-kanri2
|
||||
|
||||
▼セーブロードスクリプト▼
|
||||
花鳥風月 様
|
||||
http://autumoon.s35.xrea.com/
|
||||
|
||||
▼フォント設定スクリプト▼
|
||||
NS栗 様
|
||||
http://www.geocities.jp/higuchuu3/
|
||||
|
||||
|
||||
▼背景▼
|
||||
|
||||
みにくる 様
|
||||
https://minikle.onlinestores.jp/
|
||||
|
||||
誰そ彼亭 様
|
||||
http://may.force.mepage.jp/
|
||||
|
||||
ぐったりにゃんこ 様
|
||||
http://guttari8.sakura.ne.jp/
|
||||
|
||||
叢~むらくも~ 様
|
||||
http://www.dlsite.com/home/circle/profile/=/maker_id/RG21335.html
|
||||
|
||||
キュキュキュのQのQ 様
|
||||
http://kyukyukyu.sakura.ne.jp/
|
||||
|
||||
智之ソフト 様
|
||||
http://www.dlsite.com/home/circle/profile/=/maker_id/RG39259.html
|
||||
|
||||
慈怨亭 様
|
||||
http://www.dlsite.com/home/work/=/product_id/RJ182434.html
|
||||
|
||||
LI Project 様
|
||||
https://www.dlsite.com/home/work/=/product_id/RJ121111.html
|
||||
|
||||
小人の背景屋 様
|
||||
http://www.dlsite.com/home/circle/profile/=/maker_id/RG37736.html
|
||||
|
||||
サファイアソフト 様
|
||||
http://www.dlsite.com/home/circle/profile/=/maker_id/RG29505.html
|
||||
|
||||
ウエストサイド 様
|
||||
http://www.dlsite.com/soft/circle/profile/=/maker_id/VG01873.html
|
||||
|
||||
BATTLERS SOFTWARE 様
|
||||
http://www.dlsite.com/home/work/=/product_id/RJ198696.html
|
||||
|
||||
sunfish 様
|
||||
https://www.dlsite.com/maniax/circle/profile/=/maker_id/RG43823.html
|
||||
|
||||
Moon☆Wind 様
|
||||
http://moonwind.pw/
|
||||
|
||||
Krachware 様
|
||||
https://krachware.com/
|
||||
|
||||
aiGame 様
|
||||
https://www.dlsite.com/home/work/=/product_id/RJ222335.html
|
||||
|
||||
|
||||
▼効果音▼
|
||||
|
||||
月に憑かれたピエロ 様
|
||||
http://uyuu.sakura.ne.jp/
|
||||
|
||||
TAM Music Factory 様
|
||||
http://www.tam-music.com/
|
||||
|
||||
WEB WAVE LIB 様
|
||||
http://www.s-t-t.com/wwl/
|
||||
|
||||
ザ・マッチメイカァズ 様
|
||||
http://osabisi.sakura.ne.jp/m2/
|
||||
|
||||
ぴぐみょんスタジオ 様
|
||||
http://www.dlsite.com/maniax/circle/profile/=/maker_id/RG17630.html
|
||||
|
||||
|
||||
|
||||
▼ゲーム音楽▼
|
||||
|
||||
華飯 様
|
||||
http://kakkin.pro.tok2.com/
|
||||
|
||||
月に憑かれたピエロ 様
|
||||
http://uyuu.sakura.ne.jp/
|
||||
|
||||
煉獄庭園 様
|
||||
http://www.rengoku-teien.com/
|
||||
|
||||
Moon☆Wind 様
|
||||
http://moonwind.pw/
|
||||
|
||||
TAM Music Factory 様
|
||||
http://www.tam-music.com/
|
||||
|
||||
有馬紘一 様
|
||||
http://arima18kouichi.blog.fc2.com/
|
||||
|
||||
|
||||
▼ラストバトル曲▼
|
||||
コーラス:飴川紫乃 様(MJS-st)大宮若葉 様(MJS-st)
|
||||
作曲:華飯 様(Reglest Works)
|
||||
|
||||
|
||||
▼NScripter▼
|
||||
Takahashi's Web 様
|
||||
http://www.nscripter.com/
|
||||
|
||||
|
||||
|
||||
素晴らしい素材を
|
||||
ご提供していただきました上記の皆様方に
|
||||
この場を借りて厚くお礼を申し上げます。
|
||||
|
||||
|
||||
▼Special thanks▼
|
||||
Ci-enでご支援頂いた皆様
|
||||
|
||||
たくさんのご支援を頂き
|
||||
本当にありがとうございました!
|
||||
|
||||
|
||||
|
||||
|
||||
―――――――――――――――――――――――――――――
|
||||
|
||||
|
||||
【ご連絡について】
|
||||
|
||||
ゲーム中にエラー等ありましたら
|
||||
Ci-enのメッセージからご連絡のほど
|
||||
お願いいたします。
|
||||
|
||||
|
||||
▼製作
|
||||
|
||||
チェリスソフト
|
||||
https://ci-en.dlsite.com/creator/1451
|
||||
|
||||
|
||||
―――――――――――――――――――――――――――――
|
||||
|
||||
|
||||
|
||||
【最後に】
|
||||
|
||||
このゲームが多くの人にプレイして頂き
|
||||
そして楽しんでいただければ、製作者冥利につきます。
|
||||
|
||||
また次回作でお会いできるように頑張りますので
|
||||
よろしくお願いいたします。
|
||||
|
||||
この度は、ご購入して遊んで頂き
|
||||
まことにありがとうございました!
|
||||
|
||||
|
||||
-------------------------------
|
||||
金澤カナタ 2019/12/24
|
||||
-------------------------------
|
||||
|
||||
Copyright (C) CHERIS SOFT 2019
|
||||
|
||||
-------------------------------
|
||||
|
||||
|
||||
193
www/data/Actors.json
Normal file
193
www/data/Actors.json
Normal file
|
|
@ -0,0 +1,193 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "01rikka",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
1,
|
||||
0,
|
||||
11
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [
|
||||
{
|
||||
"code": 51,
|
||||
"dataId": 1,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 52,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 3,
|
||||
"maxLevel": 99,
|
||||
"name": "白根 リッカ",
|
||||
"nickname": "処女",
|
||||
"note": "<damageVoice:cv_03battle_001_05,cv_03battle_001_06,cv_03battle_001_07> \n<defeatedVoice:cv_03battle_001_11> \n<victoryVoice:cv_03battle_001_12>\n<skillVoice:cv_03battle_001_01>\n\n<attackSkill:2>\n<guardSkill:3>\n\n<Sideview Battler: 着衣_0001>\n<Sideview Battler Frames: 4>\n<Sideview Battler Speed: 10>\n<Sideview Battler Size: 250, 250>\n<Sideview Battler Weapon: false>\n\n<Sideview Battler Motion>\n Name: walk\n Index: 0\n Loop\n Frames: 4\n Speed: 10\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: swing\n Index: 1\n Frames: 1\n Speed: 30\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: damage\n Index: 2\n Loop\n Frames: 2\n Speed: 5\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: dead\n Index: 3\n Loop\n Frames: 1\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: abnormal\n Index: 4\n Loop\n Frames: 4\n Speed: 6\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: THRUST\n Index: 5\n Loop\n Frames: 4\n Speed: 6\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: missile\n Index: 6\n Loop\n Frames: 4\n Speed: 6\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: skill\n Index: 7\n Loop\n Frames: 4\n Speed: 6\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: SPELL\n Index: 8\n Loop\n Frames: 4\n Speed: 6\n</Sideview Battler Motion>",
|
||||
"profile": "SIGNALの天才博士"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "02Player",
|
||||
"classId": 2,
|
||||
"equips": [
|
||||
5,
|
||||
0,
|
||||
11
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [
|
||||
{
|
||||
"code": 52,
|
||||
"dataId": 3,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "赤薙 ミミ",
|
||||
"nickname": "処女",
|
||||
"note": "<damageVoice:cv_03battle_002_05,cv_03battle_002_06,cv_03battle_002_07,cv_03battle_002_08,cv_03battle_002_09> \n<defeatedVoice:cv_03battle_002_11> \n<victoryVoice:cv_03battle_002_12>\n<skillVoice:cv_03battle_002_01>\n\n<attackSkill:2>\n<guardSkill:3>\n\n<Sideview Battler: 着衣_0002>\n<Sideview Battler Frames: 4>\n<Sideview Battler Speed: 10>\n<Sideview Battler Size: 250, 250>\n<Sideview Battler Weapon: false>\n<Sideview Battler Motion>\n Name: walk\n Index: 0\n Loop\n Frames: 4\n Speed: 12\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: swing\n Index: 1\n Frames: 1\n Speed: 30\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: damage\n Index: 2\n Loop\n Frames: 2\n Speed: 5\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: dead\n Index: 3\n Loop\n Frames: 1\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: abnormal\n Index: 4\n Loop\n Frames: 4\n Speed: 6\n</Sideview Battler Motion>\n\n\n<Sideview Battler Motion>\n Name: THRUST\n Index: 5\n Loop\n Frames: 4\n Speed: 6\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: missile\n Index: 6\n Loop\n Frames: 4\n Speed: 6\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: skill\n Index: 7\n Loop\n Frames: 4\n Speed: 6\n</Sideview Battler Motion>\n\n\n<Sideview Battler Motion>\n Name: SPELL\n Index: 8\n Loop\n Frames: 4\n Speed: 6\n</Sideview Battler Motion>",
|
||||
"profile": "スポーツ万能少女"
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "03Player",
|
||||
"classId": 3,
|
||||
"equips": [
|
||||
10,
|
||||
0,
|
||||
11
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [
|
||||
{
|
||||
"code": 52,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "錫ヶ岳 ヒトミ",
|
||||
"nickname": "処女",
|
||||
"note": "<damageVoice:cv_03battle_003_05,cv_03battle_003_06,cv_03battle_003_07> \n<defeatedVoice:cv_03battle_003_11> \n<victoryVoice:cv_03battle_003_12>\n<skillVoice:cv_03battle_003_01>\n\n<attackSkill:2>\n<guardSkill:3>\n\n<Sideview Battler: 着衣_0003>\n<Sideview Battler Frames: 4>\n<Sideview Battler Speed: 10>\n<Sideview Battler Size: 250, 250>\n<Sideview Battler Weapon: false>\n<Sideview Battler Motion>\n Name: walk\n Index: 0\n Loop\n Frames: 4\n Speed: 10\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: swing\n Index: 1\n Frames: 1\n Speed: 30\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: damage\n Index: 2\n Loop\n Frames: 2\n Speed: 5\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: dead\n Index: 3\n Loop\n Frames: 1\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: abnormal\n Index: 4\n Loop\n Frames: 4\n Speed: 4\n</Sideview Battler Motion>\n\n\n<Sideview Battler Motion>\n Name: THRUST\n Index: 5\n Loop\n Frames: 4\n Speed: 6\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: missile\n Index: 6\n Loop\n Frames: 4\n Speed: 6\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: skill\n Index: 7\n Loop\n Frames: 4\n Speed: 6\n</Sideview Battler Motion>\n\n\n<Sideview Battler Motion>\n Name: SPELL\n Index: 8\n Loop\n Frames: 4\n Speed: 6\n</Sideview Battler Motion>",
|
||||
"profile": "わがままお嬢様"
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "04Player",
|
||||
"classId": 4,
|
||||
"equips": [
|
||||
15,
|
||||
0,
|
||||
11
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [
|
||||
{
|
||||
"code": 51,
|
||||
"dataId": 4,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 52,
|
||||
"dataId": 1,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "コウ",
|
||||
"nickname": "童貞",
|
||||
"note": "<damageVoice:0cv-muon> \n<defeatedVoice:0cv-muon> \n<victoryVoice:0cv-muon>\n<skillVoice:0cv-muon>\n\n<attackSkill:2>\n<guardSkill:3>\n\n<Sideview Battler: 着衣_0004>\n<Sideview Battler Frames: 4>\n<Sideview Battler Speed: 10>\n<Sideview Battler Size: 250, 250>\n<Sideview Battler Weapon: false>\n\n<Sideview Battler Motion>\n Name: walk\n Index: 0\n Loop\n Frames: 4\n Speed: 10\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: swing\n Index: 1\n Frames: 1\n Speed: 30\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: damage\n Index: 2\n Loop\n Frames: 2\n Speed: 5\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: dead\n Index: 3\n Loop\n Frames: 1\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: abnormal\n Index: 4\n Loop\n Frames: 4\n Speed: 6\n</Sideview Battler Motion>\n\n\n<Sideview Battler Motion>\n Name: THRUST\n Index: 5\n Loop\n Frames: 4\n Speed: 6\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: missile\n Index: 6\n Loop\n Frames: 4\n Speed: 6\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: skill\n Index: 7\n Loop\n Frames: 4\n Speed: 6\n</Sideview Battler Motion>\n\n\n<Sideview Battler Motion>\n Name: SPELL\n Index: 8\n Loop\n Frames: 4\n Speed: 6\n</Sideview Battler Motion>",
|
||||
"profile": "特警部の部長"
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "05ntr-mob",
|
||||
"classId": 5,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [
|
||||
{
|
||||
"code": 11,
|
||||
"dataId": 1,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 62,
|
||||
"dataId": 0,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 64,
|
||||
"dataId": 4,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 11,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 12,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 13,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 15,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 14,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 16,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 69,
|
||||
"maxLevel": 69,
|
||||
"name": "富士見 ジュウイチロウ",
|
||||
"nickname": "経験人数:測定不能",
|
||||
"note": "<attackSkill:8>\n<damageVoice:muon> \n<defeatedVoice:muon> \n<skillVoice:muon>\n<Sideview Battler: 着衣_0005>\n<Sideview Battler Frames: 1>\n<Sideview Battler Speed: 10>\n<Sideview Battler Size: 250, 250>\n<Sideview Battler Weapon: false>\n<Sideview Battler Motion: walk, 0>\n<Sideview Battler Motion>\n Name: wait\n Index: 0\n Loop\n Frames: 4\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: walk\n Index: 0\n Loop\n Frames: 4\n Speed: 10\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: swing\n Index: 0\n Loop\n Frames: 4\n Speed: 8\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: damage\n Index: 0\n Loop\n Name: NAME\n Index: INDEX\n Loop\n</Sideview Battler Motion>\n\n<Sideview Battler Motion>\n Name: dead\n Index: 0\n Loop\n</Sideview Battler Motion>\n",
|
||||
"profile": "フジミ重工の御曹司"
|
||||
}
|
||||
]
|
||||
117575
www/data/Animations.json
Normal file
117575
www/data/Animations.json
Normal file
File diff suppressed because it is too large
Load diff
870
www/data/Armors.json
Normal file
870
www/data/Armors.json
Normal file
|
|
@ -0,0 +1,870 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"atypeId": 1,
|
||||
"description": "",
|
||||
"etypeId": 2,
|
||||
"traits": [],
|
||||
"iconIndex": 472,
|
||||
"name": "強化制服-男子",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 2000
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"atypeId": 2,
|
||||
"description": "",
|
||||
"etypeId": 2,
|
||||
"traits": [],
|
||||
"iconIndex": 474,
|
||||
"name": "強化制服-女子",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 2000
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"atypeId": 3,
|
||||
"description": "",
|
||||
"etypeId": 2,
|
||||
"traits": [],
|
||||
"iconIndex": 471,
|
||||
"name": "強化ジャージ",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 2000
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"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
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"atypeId": 1,
|
||||
"description": "エロ不可\n装備解除不可",
|
||||
"etypeId": 4,
|
||||
"traits": [
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 11,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 12,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 13,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 14,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 53,
|
||||
"dataId": 4,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"iconIndex": 137,
|
||||
"name": "汎用スーツ",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 0
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"atypeId": 1,
|
||||
"description": "催眠を防ぐ",
|
||||
"etypeId": 3,
|
||||
"traits": [
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 11,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 12,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 13,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 14,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 15,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 26,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"iconIndex": 165,
|
||||
"name": "催眠ジャミング",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 0
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"atypeId": 1,
|
||||
"description": "",
|
||||
"etypeId": 5,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 1,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"iconIndex": 0,
|
||||
"name": "死体レイプ用パンツ",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 0
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"atypeId": 1,
|
||||
"description": "催眠を防ぐ",
|
||||
"etypeId": 5,
|
||||
"traits": [
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 11,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 12,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 13,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 14,
|
||||
"dataId": 14,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 53,
|
||||
"dataId": 5,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"iconIndex": 145,
|
||||
"name": "催眠ジャミング(処女)",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 0
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"atypeId": 1,
|
||||
"description": "性的興奮だけに特化したショーツ\n日常的に履くのは調教済みのメス奴隷くらいだ",
|
||||
"etypeId": 3,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
},
|
||||
{
|
||||
"code": 54,
|
||||
"dataId": 3,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"iconIndex": 90,
|
||||
"name": "オープンショーツ・パール付き",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 0
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"atypeId": 1,
|
||||
"description": "",
|
||||
"etypeId": 3,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 153,
|
||||
"name": "パンツ",
|
||||
"note": "<SBI画像:CG40_0\\V[28]> \n<SBI座標X:-420> \n<SBI座標Y:-40>\n<SBI矩形:400,480,350,220> ",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 0
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"id": 24,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"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
|
||||
}
|
||||
]
|
||||
4463
www/data/Classes.json
Normal file
4463
www/data/Classes.json
Normal file
File diff suppressed because it is too large
Load diff
209552
www/data/CommonEvents.json
Normal file
209552
www/data/CommonEvents.json
Normal file
File diff suppressed because it is too large
Load diff
160
www/data/ContainerProperties.json
Normal file
160
www/data/ContainerProperties.json
Normal file
|
|
@ -0,0 +1,160 @@
|
|||
{
|
||||
"Scene_Menu": {
|
||||
"WindowLayer": {
|
||||
"5,Window_Custom": {
|
||||
"x": 512,
|
||||
"y": 709,
|
||||
"width": 200,
|
||||
"height": 72,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": "255",
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"7,Window_Custom": {
|
||||
"x": 766,
|
||||
"y": 708,
|
||||
"width": 200,
|
||||
"height": 72,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"6,Window_Custom": {
|
||||
"x": 1015,
|
||||
"y": 709,
|
||||
"width": 200,
|
||||
"height": 72,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
"Scene_Map": {
|
||||
"WindowLayer": {
|
||||
"2,Window_ChoiceList": {
|
||||
"x": 574,
|
||||
"y": 512,
|
||||
"width": 132,
|
||||
"height": 108,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
"Scene_Shop": {
|
||||
"WindowLayer": {
|
||||
"3,Window_Base": {
|
||||
"x": 0,
|
||||
"y": 180,
|
||||
"width": 700,
|
||||
"height": 620,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"2,Window_ShopCommand": {
|
||||
"x": 0,
|
||||
"y": 108,
|
||||
"width": 500,
|
||||
"height": 72,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"5,Window_ShopStatus": {
|
||||
"x": 456,
|
||||
"y": 180,
|
||||
"width": 300,
|
||||
"height": 620,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"1,Window_Gold": {
|
||||
"x": 500,
|
||||
"y": 108,
|
||||
"width": 200,
|
||||
"height": 72,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"6,Window_ShopBuy": {
|
||||
"x": 0,
|
||||
"y": 180,
|
||||
"width": 400,
|
||||
"height": 620,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"8,Window_ShopSell": {
|
||||
"x": 0,
|
||||
"y": 252,
|
||||
"width": 1280,
|
||||
"height": 548,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
}
|
||||
},
|
||||
"Scene_Shop": {
|
||||
"0,Sprite": {
|
||||
"x": 0,
|
||||
"y": 0
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
3738
www/data/Enemies.json
Normal file
3738
www/data/Enemies.json
Normal file
File diff suppressed because it is too large
Load diff
1505
www/data/Items.json
Normal file
1505
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
10669
www/data/Map003.json
Normal file
10669
www/data/Map003.json
Normal file
File diff suppressed because it is too large
Load diff
14330
www/data/Map004.json
Normal file
14330
www/data/Map004.json
Normal file
File diff suppressed because it is too large
Load diff
1457
www/data/Map005.json
Normal file
1457
www/data/Map005.json
Normal file
File diff suppressed because it is too large
Load diff
3326
www/data/Map006.json
Normal file
3326
www/data/Map006.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map007.json
Normal file
1363
www/data/Map007.json
Normal file
File diff suppressed because it is too large
Load diff
8806
www/data/Map008.json
Normal file
8806
www/data/Map008.json
Normal file
File diff suppressed because it is too large
Load diff
13825
www/data/Map009.json
Normal file
13825
www/data/Map009.json
Normal file
File diff suppressed because it is too large
Load diff
12668
www/data/Map010.json
Normal file
12668
www/data/Map010.json
Normal file
File diff suppressed because it is too large
Load diff
6557
www/data/Map011.json
Normal file
6557
www/data/Map011.json
Normal file
File diff suppressed because it is too large
Load diff
16015
www/data/Map013.json
Normal file
16015
www/data/Map013.json
Normal file
File diff suppressed because it is too large
Load diff
10485
www/data/Map014.json
Normal file
10485
www/data/Map014.json
Normal file
File diff suppressed because it is too large
Load diff
5960
www/data/Map015.json
Normal file
5960
www/data/Map015.json
Normal file
File diff suppressed because it is too large
Load diff
5534
www/data/Map016.json
Normal file
5534
www/data/Map016.json
Normal file
File diff suppressed because it is too large
Load diff
6962
www/data/Map017.json
Normal file
6962
www/data/Map017.json
Normal file
File diff suppressed because it is too large
Load diff
3119
www/data/Map018.json
Normal file
3119
www/data/Map018.json
Normal file
File diff suppressed because it is too large
Load diff
12601
www/data/Map019.json
Normal file
12601
www/data/Map019.json
Normal file
File diff suppressed because it is too large
Load diff
3775
www/data/Map020.json
Normal file
3775
www/data/Map020.json
Normal file
File diff suppressed because it is too large
Load diff
4837
www/data/Map023.json
Normal file
4837
www/data/Map023.json
Normal file
File diff suppressed because it is too large
Load diff
1676
www/data/Map024.json
Normal file
1676
www/data/Map024.json
Normal file
File diff suppressed because it is too large
Load diff
1912
www/data/Map025.json
Normal file
1912
www/data/Map025.json
Normal file
File diff suppressed because it is too large
Load diff
17396
www/data/Map026.json
Normal file
17396
www/data/Map026.json
Normal file
File diff suppressed because it is too large
Load diff
4056
www/data/Map027.json
Normal file
4056
www/data/Map027.json
Normal file
File diff suppressed because it is too large
Load diff
4392
www/data/Map028.json
Normal file
4392
www/data/Map028.json
Normal file
File diff suppressed because it is too large
Load diff
11386
www/data/Map029.json
Normal file
11386
www/data/Map029.json
Normal file
File diff suppressed because it is too large
Load diff
4326
www/data/Map030.json
Normal file
4326
www/data/Map030.json
Normal file
File diff suppressed because it is too large
Load diff
3930
www/data/Map031.json
Normal file
3930
www/data/Map031.json
Normal file
File diff suppressed because it is too large
Load diff
6945
www/data/Map032.json
Normal file
6945
www/data/Map032.json
Normal file
File diff suppressed because it is too large
Load diff
21724
www/data/Map033.json
Normal file
21724
www/data/Map033.json
Normal file
File diff suppressed because it is too large
Load diff
9107
www/data/Map034.json
Normal file
9107
www/data/Map034.json
Normal file
File diff suppressed because it is too large
Load diff
11322
www/data/Map035.json
Normal file
11322
www/data/Map035.json
Normal file
File diff suppressed because it is too large
Load diff
10440
www/data/Map036.json
Normal file
10440
www/data/Map036.json
Normal file
File diff suppressed because it is too large
Load diff
13183
www/data/Map037.json
Normal file
13183
www/data/Map037.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map038.json
Normal file
1363
www/data/Map038.json
Normal file
File diff suppressed because it is too large
Load diff
2877
www/data/Map039.json
Normal file
2877
www/data/Map039.json
Normal file
File diff suppressed because it is too large
Load diff
10020
www/data/Map040.json
Normal file
10020
www/data/Map040.json
Normal file
File diff suppressed because it is too large
Load diff
6930
www/data/Map041.json
Normal file
6930
www/data/Map041.json
Normal file
File diff suppressed because it is too large
Load diff
1826
www/data/Map043.json
Normal file
1826
www/data/Map043.json
Normal file
File diff suppressed because it is too large
Load diff
6455
www/data/Map047.json
Normal file
6455
www/data/Map047.json
Normal file
File diff suppressed because it is too large
Load diff
169
www/data/Map049.json
Normal file
169
www/data/Map049.json
Normal file
|
|
@ -0,0 +1,169 @@
|
|||
{
|
||||
"autoplayBgm": true,
|
||||
"autoplayBgs": false,
|
||||
"battleback1Name": "SF_Gothic1",
|
||||
"battleback2Name": "SF_GothicRoom",
|
||||
"bgm": {
|
||||
"name": "06禁止区",
|
||||
"pan": 0,
|
||||
"pitch": 60,
|
||||
"volume": 35
|
||||
},
|
||||
"bgs": {
|
||||
"name": "",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"disableDashing": false,
|
||||
"displayName": "",
|
||||
"encounterList": [],
|
||||
"encounterStep": 30,
|
||||
"height": 1,
|
||||
"note": "",
|
||||
"parallaxLoopX": false,
|
||||
"parallaxLoopY": false,
|
||||
"parallaxName": "",
|
||||
"parallaxShow": true,
|
||||
"parallaxSx": 0,
|
||||
"parallaxSy": 0,
|
||||
"scrollType": 0,
|
||||
"specifyBattleback": false,
|
||||
"tilesetId": 11,
|
||||
"width": 1,
|
||||
"data": [
|
||||
6756,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"events": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
3251
www/data/Map050.json
Normal file
3251
www/data/Map050.json
Normal file
File diff suppressed because it is too large
Load diff
5396
www/data/Map051.json
Normal file
5396
www/data/Map051.json
Normal file
File diff suppressed because it is too large
Load diff
8839
www/data/Map052.json
Normal file
8839
www/data/Map052.json
Normal file
File diff suppressed because it is too large
Load diff
1372
www/data/Map053.json
Normal file
1372
www/data/Map053.json
Normal file
File diff suppressed because it is too large
Load diff
3342
www/data/Map054.json
Normal file
3342
www/data/Map054.json
Normal file
File diff suppressed because it is too large
Load diff
2468
www/data/Map055.json
Normal file
2468
www/data/Map055.json
Normal file
File diff suppressed because it is too large
Load diff
2772
www/data/Map056.json
Normal file
2772
www/data/Map056.json
Normal file
File diff suppressed because it is too large
Load diff
4359
www/data/Map058.json
Normal file
4359
www/data/Map058.json
Normal file
File diff suppressed because it is too large
Load diff
3874
www/data/Map059.json
Normal file
3874
www/data/Map059.json
Normal file
File diff suppressed because it is too large
Load diff
12742
www/data/Map060.json
Normal file
12742
www/data/Map060.json
Normal file
File diff suppressed because it is too large
Load diff
7289
www/data/Map061.json
Normal file
7289
www/data/Map061.json
Normal file
File diff suppressed because it is too large
Load diff
4883
www/data/Map062.json
Normal file
4883
www/data/Map062.json
Normal file
File diff suppressed because it is too large
Load diff
4867
www/data/Map063.json
Normal file
4867
www/data/Map063.json
Normal file
File diff suppressed because it is too large
Load diff
23593
www/data/Map064.json
Normal file
23593
www/data/Map064.json
Normal file
File diff suppressed because it is too large
Load diff
8588
www/data/Map065.json
Normal file
8588
www/data/Map065.json
Normal file
File diff suppressed because it is too large
Load diff
5741
www/data/Map066.json
Normal file
5741
www/data/Map066.json
Normal file
File diff suppressed because it is too large
Load diff
1804
www/data/Map067.json
Normal file
1804
www/data/Map067.json
Normal file
File diff suppressed because it is too large
Load diff
4959
www/data/Map068.json
Normal file
4959
www/data/Map068.json
Normal file
File diff suppressed because it is too large
Load diff
5729
www/data/Map069.json
Normal file
5729
www/data/Map069.json
Normal file
File diff suppressed because it is too large
Load diff
3062
www/data/Map071.json
Normal file
3062
www/data/Map071.json
Normal file
File diff suppressed because it is too large
Load diff
1921
www/data/Map073.json
Normal file
1921
www/data/Map073.json
Normal file
File diff suppressed because it is too large
Load diff
3857
www/data/Map074.json
Normal file
3857
www/data/Map074.json
Normal file
File diff suppressed because it is too large
Load diff
30200
www/data/Map075.json
Normal file
30200
www/data/Map075.json
Normal file
File diff suppressed because it is too large
Load diff
2265
www/data/Map076.json
Normal file
2265
www/data/Map076.json
Normal file
File diff suppressed because it is too large
Load diff
2739
www/data/Map077.json
Normal file
2739
www/data/Map077.json
Normal file
File diff suppressed because it is too large
Load diff
6325
www/data/Map078.json
Normal file
6325
www/data/Map078.json
Normal file
File diff suppressed because it is too large
Load diff
5926
www/data/Map079.json
Normal file
5926
www/data/Map079.json
Normal file
File diff suppressed because it is too large
Load diff
4632
www/data/Map080.json
Normal file
4632
www/data/Map080.json
Normal file
File diff suppressed because it is too large
Load diff
4156
www/data/Map081.json
Normal file
4156
www/data/Map081.json
Normal file
File diff suppressed because it is too large
Load diff
7255
www/data/Map082.json
Normal file
7255
www/data/Map082.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map083.json
Normal file
1363
www/data/Map083.json
Normal file
File diff suppressed because it is too large
Load diff
10816
www/data/Map084.json
Normal file
10816
www/data/Map084.json
Normal file
File diff suppressed because it is too large
Load diff
2739
www/data/Map085.json
Normal file
2739
www/data/Map085.json
Normal file
File diff suppressed because it is too large
Load diff
4835
www/data/Map086.json
Normal file
4835
www/data/Map086.json
Normal file
File diff suppressed because it is too large
Load diff
2708
www/data/Map087.json
Normal file
2708
www/data/Map087.json
Normal file
File diff suppressed because it is too large
Load diff
3190
www/data/Map088.json
Normal file
3190
www/data/Map088.json
Normal file
File diff suppressed because it is too large
Load diff
2818
www/data/Map089.json
Normal file
2818
www/data/Map089.json
Normal file
File diff suppressed because it is too large
Load diff
7292
www/data/Map090.json
Normal file
7292
www/data/Map090.json
Normal file
File diff suppressed because it is too large
Load diff
10755
www/data/Map091.json
Normal file
10755
www/data/Map091.json
Normal file
File diff suppressed because it is too large
Load diff
10407
www/data/Map092.json
Normal file
10407
www/data/Map092.json
Normal file
File diff suppressed because it is too large
Load diff
4061
www/data/Map093.json
Normal file
4061
www/data/Map093.json
Normal file
File diff suppressed because it is too large
Load diff
2739
www/data/Map094.json
Normal file
2739
www/data/Map094.json
Normal file
File diff suppressed because it is too large
Load diff
35452
www/data/Map095.json
Normal file
35452
www/data/Map095.json
Normal file
File diff suppressed because it is too large
Load diff
12694
www/data/Map096.json
Normal file
12694
www/data/Map096.json
Normal file
File diff suppressed because it is too large
Load diff
2511
www/data/Map097.json
Normal file
2511
www/data/Map097.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