Initial Commit
This commit is contained in:
commit
c7f5962d6e
668 changed files with 4114684 additions and 0 deletions
61
.gitignore
vendored
Normal file
61
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
# Ignore all files
|
||||
*.*
|
||||
|
||||
# File Types
|
||||
!*.mps
|
||||
!*.dat
|
||||
!*.json
|
||||
!*.txt
|
||||
!*.project
|
||||
!*.js
|
||||
!*.zip
|
||||
!*.7z
|
||||
!*.csv
|
||||
!*.ain
|
||||
!*.fnl
|
||||
!*.ks
|
||||
!*.tjs
|
||||
!*.yaml
|
||||
!*.rb
|
||||
!*.rvdata2
|
||||
|
||||
# Other Needed Files
|
||||
!.gitignore
|
||||
!README.md
|
||||
!patch-config.txt
|
||||
!GameUpdate*
|
||||
!patch*
|
||||
!Game.dat
|
||||
|
||||
# Ignore
|
||||
previous_patch_sha.txt
|
||||
kabe3_save.dat
|
||||
kabe3_system.dat
|
||||
psbpack.dat
|
||||
Save*
|
||||
|
||||
# Images
|
||||
!battle002.png
|
||||
!battle009.png
|
||||
!menuback_02.png
|
||||
!menuR_01.png
|
||||
!menuR_02.png
|
||||
!menuR_03.png
|
||||
!menuR_04.png
|
||||
!menuR_06.png
|
||||
!menutab_01.png
|
||||
!menutab_01b.png
|
||||
!menutab_02.png
|
||||
!menutab_02a.png
|
||||
!menutab_02b.png
|
||||
!menutab_03.png
|
||||
!menutab_03a.png
|
||||
!menutab_04.png
|
||||
!menutab_04a.png
|
||||
!menutab_05.png
|
||||
!menutab_05b.png
|
||||
!menutab_06.png
|
||||
!menutab_06b.png
|
||||
!menutab_07a.png
|
||||
!menutab_08.png
|
||||
!zzgage00.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
|
||||
13
GameUpdate_linux.sh
Normal file
13
GameUpdate_linux.sh
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Enable error handling
|
||||
set -e
|
||||
|
||||
# Copy patch.bat to a new file
|
||||
cp patch.sh patch2.sh
|
||||
|
||||
# Run the new file
|
||||
bash patch2.sh
|
||||
|
||||
# Delete the new file
|
||||
rm patch2.sh
|
||||
91
README.md
Normal file
91
README.md
Normal file
|
|
@ -0,0 +1,91 @@
|
|||
# Apply Patch
|
||||
1. Click Code
|
||||
2. Click Download ZIP
|
||||
3. Extract to game folder and Replace All.
|
||||
|
||||
## Future Patching
|
||||
1. Run GAMEUPDATE.bat to auto patch.
|
||||
|
||||
# Troubleshooting
|
||||
**GAMEUPDATE.bat doesn't update and closes immediately**
|
||||
1. Make sure your path doesn't contain any Japanese characters or lots of whitespace.
|
||||
2. Make sure you actually have permissions in the folder
|
||||
|
||||
# Edit/Contribute
|
||||
TLDR 3 steps.
|
||||
|
||||
Fork the repository.
|
||||
Make the changes.
|
||||
Submit a merge request.
|
||||
|
||||
If everything looks good and doesn't break things I'll merge it in.
|
||||
|
||||
Longer Version:
|
||||
|
||||
# Required Software:
|
||||
* [VSCode](https://code.visualstudio.com/) Make sure you check all the boxes for context menus.
|
||||
* [Git](https://git-scm.com/downloads) (Use the default for everything. Just keep clicking Next)
|
||||
|
||||
# Guide to contributing
|
||||
|
||||
### 1. Fork the Repository
|
||||
- Go to the repository you want to fork.
|
||||
- Click the "Fork" button.
|
||||
|
||||
### 2. Clone Your Fork
|
||||
- Clone your forked repository to your local machine.
|
||||
```sh
|
||||
git clone https://gitgud.io/YOUR_USERNAME/REPO_NAME.git
|
||||
```
|
||||
|
||||
### 3. Make Your Changes (In VSCode)
|
||||
- Edit the files locally on your new branch using VSCode.
|
||||
- Add and commit your changes.
|
||||
```sh
|
||||
git add .
|
||||
git commit -m "Description of your changes"
|
||||
```
|
||||
|
||||
### 4. Push Your Changes
|
||||
- Push your changes to your fork on GitGud.io.
|
||||
```sh
|
||||
git push origin your-feature-branch
|
||||
```
|
||||
|
||||
### 5. Create a Merge Request
|
||||
- Go to your fork on GitGud.io.
|
||||
- Click on "Merge Requests" in the sidebar.
|
||||
- Click the "New merge request" button.
|
||||
- Select the branch you made changes to and the target project (the original repo).
|
||||
- Provide a title and description for your merge request and submit it.
|
||||
|
||||
---
|
||||
|
||||
## Example
|
||||
|
||||
Assuming you want to fork a repository named `example-project`:
|
||||
|
||||
### 1. Fork the Repo
|
||||
- Navigate to `https://gitgud.io/original_user/example-project` and click "Fork".
|
||||
|
||||
### 2. Clone Your Fork
|
||||
```sh
|
||||
git clone https://gitgud.io/YOUR_USERNAME/example-project.git
|
||||
```
|
||||
|
||||
### 3. Make Changes and Commit
|
||||
```sh
|
||||
# Make changes to the files
|
||||
git add .
|
||||
git commit -m "Add new feature to example project"
|
||||
```
|
||||
|
||||
### 4. Push Changes
|
||||
```sh
|
||||
git push origin add-new-feature
|
||||
```
|
||||
|
||||
### 5. Create a Merge Request
|
||||
- Go to `https://gitgud.io/YOUR_USERNAME/example-project/merge_requests` and click on "New merge request".
|
||||
- Choose the source branch `add-new-feature` and target branch (default: `main` or `master`).
|
||||
- Fill in the details and submit the merge request.
|
||||
117
Readme.txt
Normal file
117
Readme.txt
Normal file
|
|
@ -0,0 +1,117 @@
|
|||
ミラージュの離反 ちまラボ 製品版
|
||||
|
||||
■更新情報
|
||||
2024/10/05 ver.1.0.2 イベントフラグとキャラの配置修正および誤字脱字修正を行いました
|
||||
2024/10/04 ver.1.0.1 数値とイベントフラグの修正を行いました
|
||||
2024/10/04 ver.1.0.0 配信開始
|
||||
|
||||
------------------------------------
|
||||
|
||||
もしエラーや不具合を発見した場合は
|
||||
Ci-en:https://ci-en.dlsite.com/creator/18489
|
||||
Twitter:https://twitter.com/chimalabo
|
||||
|
||||
いずれかにこっそりお伝えくださいませ。
|
||||
進行不能バグを優先的に修正させていただきます。
|
||||
|
||||
-------------------------------------------------------------------
|
||||
|
||||
■はじめに
|
||||
このたびは当サークルの作品に興味を持っていただき、誠にありがとうございます。
|
||||
このデータは成人向けADV風RPG作品、
|
||||
「ミラージュの離反」
|
||||
の製品版データとなります。
|
||||
|
||||
■本作品は成人向けの描写を含んでおりますので、
|
||||
18歳未満の方はプレイしていただくことはできません。
|
||||
|
||||
■本作品の内容はすべてフィクションであり、
|
||||
実在のいかなる人物、団体、名称などとも一切関係はありません。
|
||||
|
||||
■本作品に関する各種権利は当サークルに帰属するものとします。
|
||||
なお、使用されているイラストや音声、ロゴ、BGM、効果音、
|
||||
その他の各種素材に関してはそれぞれの権利者様に帰属します。
|
||||
|
||||
■本作品を無断で複製、転載、配布することを禁じます。
|
||||
|
||||
■本作品で登場するちまラボが手掛けたイラストをAI学習に使用する行為は固く禁じます。
|
||||
|
||||
-------------------------------------------------------------------
|
||||
|
||||
【ゲームの操作方法】
|
||||
|
||||
■ゲームの起動:
|
||||
フォルダの中から「mirage_no_rihan.exe」を起動してください。
|
||||
|
||||
■操作方法:
|
||||
キーボードでもマウスでもプレイ可能です。(おすすめはマウス)
|
||||
しかしメニュー画面の「2人の心」のページ切り替えは、キーボード[←][→]のみ対応です。
|
||||
キーボード[1][2]でUIの操作を行う事が出来ます。
|
||||
|
||||
-------------------------------------------------------------------
|
||||
|
||||
【ゲーム仕様】
|
||||
|
||||
・ストーリーに沿って屋敷内を散策したりアクションを起こしてゲームを進行させます。
|
||||
その間で、キャラの感情や独り言が目まぐるしく変化するため
|
||||
「画面左下のウインドウ」やメニュー画面から「2人の心」を選択して確認してください。
|
||||
|
||||
あまり難しく考えずに遊んでみてください。
|
||||
|
||||
-------------------------------------------------------------------
|
||||
|
||||
【システム仕様】
|
||||
|
||||
この作品はRPGツクールMVを仕様して制作されています。
|
||||
画面サイズは1280x720pxになります。
|
||||
全画面にすると画像が荒くなるため、推奨しておりません。
|
||||
|
||||
-------------------------------------------------------------------
|
||||
|
||||
【制作】
|
||||
■制作:
|
||||
ちまラボ
|
||||
https://ci-en.dlsite.com/creator/18489
|
||||
シリーズ「クリプトの引き裂き」
|
||||
|
||||
■BGM:
|
||||
MusMus(https://musmus.main.jp)
|
||||
魔王魂(https://maou.audio/)
|
||||
DOVA-SYNDROME
|
||||
|
||||
■SE:
|
||||
18禁SE(https://www.dlsite.com/maniax/work/=/product_id/RJ114100.html)
|
||||
|
||||
|
||||
■プラグイン:
|
||||
Shaz
|
||||
ぽに犬
|
||||
Trb
|
||||
神無月サスケ
|
||||
トリアコンタン
|
||||
まっつUP
|
||||
フトコロ
|
||||
tomoaky
|
||||
Tor Damian Design
|
||||
Sanshiro
|
||||
かめお(Kamesoft)
|
||||
minazuki
|
||||
Thirop
|
||||
COBRA
|
||||
赤月 智平
|
||||
ルルの教会
|
||||
Yanfly Engine
|
||||
YOji Ojima
|
||||
|
||||
|
||||
■画像素材:
|
||||
ぴぽや
|
||||
ゴリラの素材屋さん
|
||||
ハト タイルセット
|
||||
|
||||
|
||||
※順不同、敬称略
|
||||
|
||||
開発の途中で使用素材を増やしてクレジットを追記する場合が御座います
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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"
|
||||
}
|
||||
}
|
||||
3
patch-config.txt
Normal file
3
patch-config.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
username=dazed-translations
|
||||
repo=princess-knight
|
||||
branch=main
|
||||
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
|
||||
74
patch.sh
Normal file
74
patch.sh
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
#!/bin/bash
|
||||
|
||||
check_dependency() {
|
||||
if ! command -v "$1" > /dev/null 2>&1; then
|
||||
echo "Error: '$1' is not installed. Please install it using 'pkg install $1'."
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
# Check for jq, unzip, and curl
|
||||
check_dependency jq
|
||||
check_dependency unzip
|
||||
check_dependency curl
|
||||
|
||||
CONFIG_FILE="patch-config.txt"
|
||||
|
||||
# Check if CONFIG_FILE exists
|
||||
if [ ! -f "$CONFIG_FILE" ]; then
|
||||
echo "Config file '$CONFIG_FILE' not found! Assuming no patching needed."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Convert line endings to Unix format
|
||||
sed -i 's/\r$//' "$CONFIG_FILE"
|
||||
|
||||
# Debug information
|
||||
echo "Current directory: $(pwd)"
|
||||
echo "Config file path: $(pwd)/$CONFIG_FILE"
|
||||
|
||||
# Read configuration from file
|
||||
. "$(pwd)/$CONFIG_FILE"
|
||||
|
||||
# Get the latest hash
|
||||
echo "Getting latest commit SHA hash"
|
||||
latest_patch_sha=$(curl -s "https://gitgud.io/api/v4/projects/$username%2F$repo/repository/branches/$branch" | jq -r '.commit.id')
|
||||
|
||||
download_extract() {
|
||||
# Download zip file
|
||||
echo "Downloading latest patch..."
|
||||
curl -sL "https://gitgud.io/$username/$repo/-/archive/$branch/$repo-$branch.zip" -o repo.zip
|
||||
|
||||
# Extract contents, overwriting conflicts
|
||||
echo "Extracting..."
|
||||
unzip -qo repo.zip
|
||||
|
||||
echo "Applying patch..."
|
||||
cp -r "$repo-$branch/"* .
|
||||
|
||||
echo "Cleaning up..."
|
||||
rm repo.zip
|
||||
rm -rf "$repo-$branch"
|
||||
rm -f latest_patch_sha.txt
|
||||
|
||||
# Store latest SHA for next check
|
||||
echo "$latest_patch_sha" > previous_patch_sha.txt
|
||||
}
|
||||
|
||||
# Check if previous_patch_sha.txt exists
|
||||
if [ ! -f previous_patch_sha.txt ]; then
|
||||
echo "Previous SHA hash not found!"
|
||||
echo "Assuming first time patching..."
|
||||
download_extract
|
||||
else
|
||||
# Read the stored SHA from previous check
|
||||
previous_patch_sha=$(cat previous_patch_sha.txt)
|
||||
|
||||
# Compare trimmed SHAs
|
||||
if [ "$latest_patch_sha" != "$previous_patch_sha" ]; then
|
||||
echo "Update found! Patching..."
|
||||
download_extract
|
||||
else
|
||||
echo "Patch is up to date."
|
||||
fi
|
||||
fi
|
||||
495
www/data/Actors.json
Normal file
495
www/data/Actors.json
Normal file
|
|
@ -0,0 +1,495 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "leo",
|
||||
"classId": 5,
|
||||
"equips": [
|
||||
1,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [
|
||||
{
|
||||
"code": 41,
|
||||
"dataId": 3,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 46,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 47,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 48,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 23,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 28,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 55,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 20,
|
||||
"maxLevel": 99,
|
||||
"name": "レオ",
|
||||
"nickname": "主人公",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 6,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "luna",
|
||||
"traits": [
|
||||
{
|
||||
"code": 41,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 17,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 18,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 20,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 21,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 64,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 63,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 62,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 65,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 66,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 19,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 41,
|
||||
"dataId": 3,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 82,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 83,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 45,
|
||||
"maxLevel": 99,
|
||||
"name": "ルナ",
|
||||
"nickname": "瑞々しい暗殺者",
|
||||
"note": "<stand_picture:v_party_luna>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 7,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "kurone",
|
||||
"traits": [
|
||||
{
|
||||
"code": 41,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 54,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 55,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 56,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 52,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 53,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 59,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 57,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 60,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 44,
|
||||
"maxLevel": 99,
|
||||
"name": "クロネ",
|
||||
"nickname": "天真爛漫の天才魔法使い",
|
||||
"note": "<stand_picture:v_party_kurone>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 8,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "kotori",
|
||||
"traits": [
|
||||
{
|
||||
"code": 41,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 41,
|
||||
"dataId": 3,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 11,
|
||||
"dataId": 1,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 3,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 8,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 13,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 14,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 11,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 15,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 96,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 18,
|
||||
"maxLevel": 99,
|
||||
"name": "コトリ",
|
||||
"nickname": "ドジな王国騎士",
|
||||
"note": "<stand_picture:v_party_kotori>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 9,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [
|
||||
{
|
||||
"code": 41,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 69,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 70,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 71,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 72,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 72,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "イビエル",
|
||||
"nickname": "小狡い悪魔",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 6,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [
|
||||
{
|
||||
"code": 41,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 17,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 18,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 20,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 21,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 64,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 63,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 62,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 65,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 66,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 19,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 41,
|
||||
"dataId": 3,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 85,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 86,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 89,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 90,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 91,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 92,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 93,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 45,
|
||||
"maxLevel": 99,
|
||||
"name": "使い魔ルナ",
|
||||
"nickname": "悪魔の手先",
|
||||
"note": "<stand_picture:v_party_luna_2>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
}
|
||||
]
|
||||
163101
www/data/Animations.json
Normal file
163101
www/data/Animations.json
Normal file
File diff suppressed because it is too large
Load diff
111
www/data/Armors.json
Normal file
111
www/data/Armors.json
Normal file
|
|
@ -0,0 +1,111 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"atypeId": 5,
|
||||
"description": "",
|
||||
"etypeId": 2,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 128,
|
||||
"name": "盾",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 300
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"atypeId": 1,
|
||||
"description": "",
|
||||
"etypeId": 3,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 130,
|
||||
"name": "帽子",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 300
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"atypeId": 1,
|
||||
"description": "",
|
||||
"etypeId": 4,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 135,
|
||||
"name": "服",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 300
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"atypeId": 1,
|
||||
"description": "",
|
||||
"etypeId": 5,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 145,
|
||||
"name": "指輪",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 300
|
||||
}
|
||||
]
|
||||
7895
www/data/Classes.json
Normal file
7895
www/data/Classes.json
Normal file
File diff suppressed because it is too large
Load diff
148552
www/data/CommonEvents.json
Normal file
148552
www/data/CommonEvents.json
Normal file
File diff suppressed because it is too large
Load diff
644
www/data/Enemies.json
Normal file
644
www/data/Enemies.json
Normal file
|
|
@ -0,0 +1,644 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Bat",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "こうもり",
|
||||
"note": "",
|
||||
"params": [
|
||||
200,
|
||||
0,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Slime",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "スライム",
|
||||
"note": "",
|
||||
"params": [
|
||||
250,
|
||||
0,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Orc",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "オーク",
|
||||
"note": "",
|
||||
"params": [
|
||||
300,
|
||||
0,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Minotaur",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "ミノタウロス",
|
||||
"note": "",
|
||||
"params": [
|
||||
500,
|
||||
0,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
},
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 196
|
||||
},
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 52
|
||||
},
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 197
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "sakyu",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "sakyu",
|
||||
"note": "",
|
||||
"params": [
|
||||
100,
|
||||
0,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"params": [
|
||||
100,
|
||||
0,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"params": [
|
||||
100,
|
||||
0,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"params": [
|
||||
100,
|
||||
0,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"params": [
|
||||
100,
|
||||
0,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"params": [
|
||||
100,
|
||||
0,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10
|
||||
]
|
||||
}
|
||||
]
|
||||
10417
www/data/Items.json
Normal file
10417
www/data/Items.json
Normal file
File diff suppressed because it is too large
Load diff
5914
www/data/Map000.json
Normal file
5914
www/data/Map000.json
Normal file
File diff suppressed because it is too large
Load diff
1643
www/data/Map001.json
Normal file
1643
www/data/Map001.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map002.json
Normal file
1363
www/data/Map002.json
Normal file
File diff suppressed because it is too large
Load diff
5186
www/data/Map003.json
Normal file
5186
www/data/Map003.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map004.json
Normal file
1363
www/data/Map004.json
Normal file
File diff suppressed because it is too large
Load diff
8966
www/data/Map005.json
Normal file
8966
www/data/Map005.json
Normal file
File diff suppressed because it is too large
Load diff
4102
www/data/Map006.json
Normal file
4102
www/data/Map006.json
Normal file
File diff suppressed because it is too large
Load diff
14481
www/data/Map007.json
Normal file
14481
www/data/Map007.json
Normal file
File diff suppressed because it is too large
Load diff
2731
www/data/Map008.json
Normal file
2731
www/data/Map008.json
Normal file
File diff suppressed because it is too large
Load diff
2163
www/data/Map009.json
Normal file
2163
www/data/Map009.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map010.json
Normal file
1363
www/data/Map010.json
Normal file
File diff suppressed because it is too large
Load diff
7266
www/data/Map011.json
Normal file
7266
www/data/Map011.json
Normal file
File diff suppressed because it is too large
Load diff
2867
www/data/Map012.json
Normal file
2867
www/data/Map012.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map013.json
Normal file
1363
www/data/Map013.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map014.json
Normal file
1363
www/data/Map014.json
Normal file
File diff suppressed because it is too large
Load diff
12301
www/data/Map015.json
Normal file
12301
www/data/Map015.json
Normal file
File diff suppressed because it is too large
Load diff
4902
www/data/Map016.json
Normal file
4902
www/data/Map016.json
Normal file
File diff suppressed because it is too large
Load diff
4713
www/data/Map017.json
Normal file
4713
www/data/Map017.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map018.json
Normal file
1363
www/data/Map018.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map019.json
Normal file
1363
www/data/Map019.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map020.json
Normal file
1363
www/data/Map020.json
Normal file
File diff suppressed because it is too large
Load diff
4040
www/data/Map021.json
Normal file
4040
www/data/Map021.json
Normal file
File diff suppressed because it is too large
Load diff
9166
www/data/Map022.json
Normal file
9166
www/data/Map022.json
Normal file
File diff suppressed because it is too large
Load diff
2795
www/data/Map023.json
Normal file
2795
www/data/Map023.json
Normal file
File diff suppressed because it is too large
Load diff
3988
www/data/Map024.json
Normal file
3988
www/data/Map024.json
Normal file
File diff suppressed because it is too large
Load diff
4231
www/data/Map025.json
Normal file
4231
www/data/Map025.json
Normal file
File diff suppressed because it is too large
Load diff
6065
www/data/Map026.json
Normal file
6065
www/data/Map026.json
Normal file
File diff suppressed because it is too large
Load diff
3423
www/data/Map027.json
Normal file
3423
www/data/Map027.json
Normal file
File diff suppressed because it is too large
Load diff
1497
www/data/Map028.json
Normal file
1497
www/data/Map028.json
Normal file
File diff suppressed because it is too large
Load diff
1558
www/data/Map029.json
Normal file
1558
www/data/Map029.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map030.json
Normal file
1363
www/data/Map030.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map031.json
Normal file
1363
www/data/Map031.json
Normal file
File diff suppressed because it is too large
Load diff
6990
www/data/Map032.json
Normal file
6990
www/data/Map032.json
Normal file
File diff suppressed because it is too large
Load diff
8370
www/data/Map033.json
Normal file
8370
www/data/Map033.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map034.json
Normal file
1363
www/data/Map034.json
Normal file
File diff suppressed because it is too large
Load diff
2899
www/data/Map035.json
Normal file
2899
www/data/Map035.json
Normal file
File diff suppressed because it is too large
Load diff
5815
www/data/Map036.json
Normal file
5815
www/data/Map036.json
Normal file
File diff suppressed because it is too large
Load diff
3898
www/data/Map037.json
Normal file
3898
www/data/Map037.json
Normal file
File diff suppressed because it is too large
Load diff
6748
www/data/Map038.json
Normal file
6748
www/data/Map038.json
Normal file
File diff suppressed because it is too large
Load diff
3887
www/data/Map039.json
Normal file
3887
www/data/Map039.json
Normal file
File diff suppressed because it is too large
Load diff
1581
www/data/Map040.json
Normal file
1581
www/data/Map040.json
Normal file
File diff suppressed because it is too large
Load diff
1581
www/data/Map041.json
Normal file
1581
www/data/Map041.json
Normal file
File diff suppressed because it is too large
Load diff
2182
www/data/Map042.json
Normal file
2182
www/data/Map042.json
Normal file
File diff suppressed because it is too large
Load diff
3759
www/data/Map043.json
Normal file
3759
www/data/Map043.json
Normal file
File diff suppressed because it is too large
Load diff
4539
www/data/Map044.json
Normal file
4539
www/data/Map044.json
Normal file
File diff suppressed because it is too large
Load diff
6137
www/data/Map045.json
Normal file
6137
www/data/Map045.json
Normal file
File diff suppressed because it is too large
Load diff
1833
www/data/Map046.json
Normal file
1833
www/data/Map046.json
Normal file
File diff suppressed because it is too large
Load diff
3527
www/data/Map047.json
Normal file
3527
www/data/Map047.json
Normal file
File diff suppressed because it is too large
Load diff
6100
www/data/Map048.json
Normal file
6100
www/data/Map048.json
Normal file
File diff suppressed because it is too large
Load diff
4544
www/data/Map049.json
Normal file
4544
www/data/Map049.json
Normal file
File diff suppressed because it is too large
Load diff
4231
www/data/Map050.json
Normal file
4231
www/data/Map050.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map051.json
Normal file
1363
www/data/Map051.json
Normal file
File diff suppressed because it is too large
Load diff
6612
www/data/Map052.json
Normal file
6612
www/data/Map052.json
Normal file
File diff suppressed because it is too large
Load diff
3272
www/data/Map053.json
Normal file
3272
www/data/Map053.json
Normal file
File diff suppressed because it is too large
Load diff
2779
www/data/Map054.json
Normal file
2779
www/data/Map054.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map055.json
Normal file
1363
www/data/Map055.json
Normal file
File diff suppressed because it is too large
Load diff
13602
www/data/Map056.json
Normal file
13602
www/data/Map056.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map057.json
Normal file
1363
www/data/Map057.json
Normal file
File diff suppressed because it is too large
Load diff
8908
www/data/Map058.json
Normal file
8908
www/data/Map058.json
Normal file
File diff suppressed because it is too large
Load diff
4287
www/data/Map059.json
Normal file
4287
www/data/Map059.json
Normal file
File diff suppressed because it is too large
Load diff
8560
www/data/Map060.json
Normal file
8560
www/data/Map060.json
Normal file
File diff suppressed because it is too large
Load diff
6304
www/data/Map061.json
Normal file
6304
www/data/Map061.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map062.json
Normal file
1363
www/data/Map062.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map063.json
Normal file
1363
www/data/Map063.json
Normal file
File diff suppressed because it is too large
Load diff
9805
www/data/Map064.json
Normal file
9805
www/data/Map064.json
Normal file
File diff suppressed because it is too large
Load diff
22706
www/data/Map065.json
Normal file
22706
www/data/Map065.json
Normal file
File diff suppressed because it is too large
Load diff
2300
www/data/Map066.json
Normal file
2300
www/data/Map066.json
Normal file
File diff suppressed because it is too large
Load diff
1928
www/data/Map067.json
Normal file
1928
www/data/Map067.json
Normal file
File diff suppressed because it is too large
Load diff
4702
www/data/Map068.json
Normal file
4702
www/data/Map068.json
Normal file
File diff suppressed because it is too large
Load diff
3815
www/data/Map069.json
Normal file
3815
www/data/Map069.json
Normal file
File diff suppressed because it is too large
Load diff
6590
www/data/Map070.json
Normal file
6590
www/data/Map070.json
Normal file
File diff suppressed because it is too large
Load diff
1782
www/data/Map071.json
Normal file
1782
www/data/Map071.json
Normal file
File diff suppressed because it is too large
Load diff
1783
www/data/Map072.json
Normal file
1783
www/data/Map072.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map073.json
Normal file
1363
www/data/Map073.json
Normal file
File diff suppressed because it is too large
Load diff
7078
www/data/Map074.json
Normal file
7078
www/data/Map074.json
Normal file
File diff suppressed because it is too large
Load diff
14216
www/data/Map075.json
Normal file
14216
www/data/Map075.json
Normal file
File diff suppressed because it is too large
Load diff
7083
www/data/Map076.json
Normal file
7083
www/data/Map076.json
Normal file
File diff suppressed because it is too large
Load diff
4761
www/data/Map077.json
Normal file
4761
www/data/Map077.json
Normal file
File diff suppressed because it is too large
Load diff
5835
www/data/Map078.json
Normal file
5835
www/data/Map078.json
Normal file
File diff suppressed because it is too large
Load diff
5628
www/data/Map079.json
Normal file
5628
www/data/Map079.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map080.json
Normal file
1363
www/data/Map080.json
Normal file
File diff suppressed because it is too large
Load diff
6893
www/data/Map081.json
Normal file
6893
www/data/Map081.json
Normal file
File diff suppressed because it is too large
Load diff
2740
www/data/Map082.json
Normal file
2740
www/data/Map082.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