Initial Commit
This commit is contained in:
commit
20a622d7bd
408 changed files with 4706296 additions and 0 deletions
76
.gitignore
vendored
Normal file
76
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
# 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
|
||||
!bsxx.dat*
|
||||
!game.ini
|
||||
!package.nw
|
||||
|
||||
# Ignore
|
||||
previous_patch_sha.txt
|
||||
kabe3_save.dat
|
||||
kabe3_system.dat
|
||||
psbpack.dat
|
||||
Save*
|
||||
cg.dat
|
||||
scene.dat
|
||||
BSXScript_*
|
||||
|
||||
# Images
|
||||
!gauge_BG.png_
|
||||
!TUTORIAL_01.png_
|
||||
!TUTORIAL_02.png_
|
||||
!TUTORIAL_03.png_
|
||||
!TUTORIAL_04.png_
|
||||
!headgear02.png_
|
||||
!headgear03.png_
|
||||
!f_H01_06.png_
|
||||
!f_H01_07.png_
|
||||
!f_H01_08.png_
|
||||
!f_H01_09.png_
|
||||
!f_H01_10.png_
|
||||
!f_H01_11.png_
|
||||
!f_H01_12.png_
|
||||
!f_H01_13.png_
|
||||
!f_H01_14.png_
|
||||
!f_H01_15.png_
|
||||
!f_H01_16.png_
|
||||
!f_H01_17.png_
|
||||
!f_H01_18.png_
|
||||
!f_H01_19.png_
|
||||
!f_H01_20.png_
|
||||
!f_H01_21.png_
|
||||
!f_H01_22.png_
|
||||
!f_H01_23.png_
|
||||
!f_H01_24.png_
|
||||
!EroStatus_1.png_
|
||||
!EroStatus_2.png_
|
||||
!EroStatus_3.png_
|
||||
!EroStatus_4.png_
|
||||
!EroStatus_5.png_
|
||||
!EroStatus_6.png_
|
||||
!UI_3F.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
|
||||
102
README.md
Normal file
102
README.md
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
# Apply Patch
|
||||
1. Click Code
|
||||
2. Click Download ZIP
|
||||
3. Extract to game folder and Replace All.
|
||||
|
||||
## Future Patching
|
||||
1. Run GAMEUPDATE.bat to auto patch.
|
||||
|
||||
# Troubleshooting
|
||||
**GAMEUPDATE.bat doesn't update and closes immediately**
|
||||
1. Make sure your path doesn't contain any Japanese characters or lots of whitespace.
|
||||
2. Make sure you actually have permissions in the folder
|
||||
|
||||
For WOLF RPG games, if you downloaded the game off of DLSite, you will need to do some extra steps to patch it. This is because there is a "master" file called Data.wolf that will take priority over the english patch files. You will need this file to be a folder before patching will work.
|
||||
|
||||
# Wolf Games
|
||||
1) Download the latest UberWolf.exe release from the following link:
|
||||
https://github.com/Sinflower/UberWolf/releases
|
||||
2) Drag Data.wolf onto UberWolf.exe. This will create a new folder called data.wolf~
|
||||
3) Rename the new data.wolf~ folder to Data
|
||||
4) Delete the Data.wolf file
|
||||
5) Delete previous_patch_sha.txt (this will exist if you ran GameUpdate.bat previously)
|
||||
6) Run GameUpdate.bat
|
||||
|
||||
# Edit/Contribute
|
||||
TLDR 3 steps.
|
||||
|
||||
Fork the repository.
|
||||
Make the changes.
|
||||
Submit a merge request.
|
||||
|
||||
If everything looks good and doesn't break things I'll merge it in.
|
||||
|
||||
Longer Version:
|
||||
|
||||
# Required Software:
|
||||
* [VSCode](https://code.visualstudio.com/) Make sure you check all the boxes for context menus.
|
||||
* [Git](https://git-scm.com/downloads) (Use the default for everything. Just keep clicking Next)
|
||||
|
||||
# Guide to contributing
|
||||
|
||||
### 1. Fork the Repository
|
||||
- Go to the repository you want to fork.
|
||||
- Click the "Fork" button.
|
||||
|
||||
### 2. Clone Your Fork
|
||||
- Clone your forked repository to your local machine.
|
||||
```sh
|
||||
git clone https://gitgud.io/YOUR_USERNAME/REPO_NAME.git
|
||||
```
|
||||
|
||||
### 3. Make Your Changes (In VSCode)
|
||||
- Edit the files locally on your new branch using VSCode.
|
||||
- Add and commit your changes.
|
||||
```sh
|
||||
git add .
|
||||
git commit -m "Description of your changes"
|
||||
```
|
||||
|
||||
### 4. Push Your Changes
|
||||
- Push your changes to your fork on GitGud.io.
|
||||
```sh
|
||||
git push origin your-feature-branch
|
||||
```
|
||||
|
||||
### 5. Create a Merge Request
|
||||
- Go to your fork on GitGud.io.
|
||||
- Click on "Merge Requests" in the sidebar.
|
||||
- Click the "New merge request" button.
|
||||
- Select the branch you made changes to and the target project (the original repo).
|
||||
- Provide a title and description for your merge request and submit it.
|
||||
|
||||
---
|
||||
|
||||
## Example
|
||||
|
||||
Assuming you want to fork a repository named `example-project`:
|
||||
|
||||
### 1. Fork the Repo
|
||||
- Navigate to `https://gitgud.io/original_user/example-project` and click "Fork".
|
||||
|
||||
### 2. Clone Your Fork
|
||||
```sh
|
||||
git clone https://gitgud.io/YOUR_USERNAME/example-project.git
|
||||
```
|
||||
|
||||
### 3. Make Changes and Commit
|
||||
```sh
|
||||
# Make changes to the files
|
||||
git add .
|
||||
git commit -m "Add new feature to example project"
|
||||
```
|
||||
|
||||
### 4. Push Changes
|
||||
```sh
|
||||
git push origin add-new-feature
|
||||
```
|
||||
|
||||
### 5. Create a Merge Request
|
||||
- Go to `https://gitgud.io/YOUR_USERNAME/example-project/merge_requests` and click on "New merge request".
|
||||
- Choose the source branch `add-new-feature` and target branch (default: `main` or `master`).
|
||||
- Fill in the details and submit the merge request.
|
||||
150
Treasure【read me】.txt
Normal file
150
Treasure【read me】.txt
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
|
||||
|
||||
【Treasure オレが見つけた掛け替えのないモノ】を
|
||||
ダウンロードしていただき誠にありがとうございます
|
||||
|
||||
・はじめに
|
||||
この作品はRPGツクールMZで制作されています
|
||||
画面解像度は1280×720です
|
||||
体験版での動作確認を強く推奨致します
|
||||
立ち絵、背景等のCGは有償の素材に加え
|
||||
主に『VroidStudio』を使って作成しています
|
||||
|
||||
|
||||
Sキー メッセージログ確認
|
||||
Aキー オートテキストモードに切り替え
|
||||
Qキー イベントシーンにてメッセージウィンドウ一時消去 再入力で一時消去解除
|
||||
Wキー ロード画面へ移行(ロードが行えないイベントも一部あります)
|
||||
|
||||
必要であれば【オプション】でメッセージ表示速度などの調整を行ってください
|
||||
|
||||
|
||||
〇クレジット紹介
|
||||
|
||||
・VroidStudio 衣装
|
||||
|
||||
Fox Corp.様
|
||||
https://booth.pm/ja/items/3741695
|
||||
https://booth.pm/ja/items/5475453
|
||||
|
||||
YSSS.様
|
||||
https://booth.pm/ja/items/2996814
|
||||
https://ysss.booth.pm/items/5214157
|
||||
https://ysss.booth.pm/items/2687389
|
||||
https://ysss.booth.pm/items/3195788
|
||||
https://ysss.booth.pm/items/2985761
|
||||
https://booth.pm/ja/items/3566709
|
||||
https://booth.pm/ja/items/3990027
|
||||
|
||||
SheepySnow様
|
||||
https://watayukihii.booth.pm/items/3619443
|
||||
|
||||
虹屋様
|
||||
https://booth.pm/ja/items/2666365
|
||||
https://niziya.booth.pm/items/5682732
|
||||
|
||||
~Starry Sea~☆彡様
|
||||
https://booth.pm/ja/items/1648415
|
||||
https://booth.pm/ja/items/3705385
|
||||
|
||||
|
||||
田中桔梗(ききょうぱんだ)様
|
||||
https://booth.pm/ja/items/3144605
|
||||
|
||||
雪待つばき@はーふとお様
|
||||
https://booth.pm/ja/items/2049521
|
||||
|
||||
Atelier Mirea | アトリエミレア様
|
||||
https://booth.pm/ja/items/1650152
|
||||
|
||||
赤羽根衣装店様
|
||||
https://booth.pm/ja/items/3996911
|
||||
|
||||
ティードットショップ様
|
||||
https://tdot0.booth.pm/items/5906103
|
||||
https://booth.pm/ja/items/1465505
|
||||
https://booth.pm/ja/items/5735266
|
||||
|
||||
7692_shop様
|
||||
https://narukuni.booth.pm/items/2528400
|
||||
|
||||
イキテク様
|
||||
https://booth.pm/ja/items/3541397
|
||||
|
||||
しらとりこはね【とりんご】様
|
||||
https://shiratori.booth.pm/items/5736269
|
||||
https://shiratori.booth.pm/items/3833579
|
||||
|
||||
こるきゅ!様
|
||||
https://coruq.booth.pm/items/3665122
|
||||
|
||||
ワンダホの店(wonderfulp store)様
|
||||
https://booth.pm/ja/items/2120713
|
||||
|
||||
モンスター&タイルチップ素材
|
||||
|
||||
Studio Tokiwa様
|
||||
https://studio-tokiwa.booth.pm/
|
||||
|
||||
|
||||
小道具素材
|
||||
|
||||
sozaiya-create様
|
||||
https://booth.pm/ja/items/5959002
|
||||
|
||||
森の奥の隠れ里様
|
||||
https://www.dlsite.com/home/circle/profile/=/maker_id/RG29726.html
|
||||
|
||||
|
||||
|
||||
・背景素材
|
||||
|
||||
背景専門店みにくる様
|
||||
https://www.dlsite.com/home/circle/profile/=/maker_id/RG08888.html
|
||||
|
||||
素材POMPACK様
|
||||
https://booth.pm/ja/items/5147008
|
||||
|
||||
BGスポット様
|
||||
https://www.dlsite.com/home/circle/profile/=/maker_id/RG56286.html
|
||||
|
||||
幻想背景店様
|
||||
https://gensou-haikei.booth.pm/items/5264470
|
||||
|
||||
|
||||
|
||||
・タイトル画面及びイベントシーンBGM
|
||||
|
||||
|
||||
コノエサウンド様
|
||||
https://www.dlsite.com/maniax/work/=/product_id/RJ01246763.html
|
||||
|
||||
ayato sound create様
|
||||
https://www.dlsite.com/home/work/=/product_id/RJ01188596.html
|
||||
|
||||
the Circle Carnage/Ariadne Record様
|
||||
https://www.dlsite.com/home/work/=/product_id/RJ01103024.html
|
||||
|
||||
ゲーム音素材プロジェクト様
|
||||
https://www.dlsite.com/home/work/=/product_id/RJ01127450.html
|
||||
https://www.dlsite.com/home/work/=/product_id/RJ01094983.html
|
||||
|
||||
Sometimes Bad Tool
|
||||
https://www.dlsite.com/home/work/=/product_id/RJ01077708.html
|
||||
|
||||
|
||||
・エッチな音声素材
|
||||
|
||||
Pincree様
|
||||
https://www.dlsite.com/maniax/work/=/product_id/RJ420928.html
|
||||
|
||||
https://www.dlsite.com/maniax/work/=/product_id/RJ01006109.html
|
||||
Pincree(CV:龍涎にこみ)様
|
||||
|
||||
|
||||
|
||||
※利用報告は不要とされている方は省略させて頂きました
|
||||
この場を借りてお礼を申し上げます 誠にありがとうございます
|
||||
|
||||
|
||||
不具合等ございましたらCi-enの当サークルページへご連絡ください
|
||||
187
data/Actors.json
Normal file
187
data/Actors.json
Normal file
|
|
@ -0,0 +1,187 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "0 syuzinkou",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "Actor1",
|
||||
"traits": [],
|
||||
"initialLevel": 5,
|
||||
"maxLevel": 99,
|
||||
"name": "ケヴィン",
|
||||
"nickname": "aaaaa",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"battlerName": "Actor1_2",
|
||||
"characterIndex": 1,
|
||||
"characterName": "Actor1",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
1,
|
||||
0,
|
||||
0,
|
||||
9,
|
||||
0
|
||||
],
|
||||
"faceIndex": 1,
|
||||
"faceName": "Actor1",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "プリシア",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"battlerName": "Actor1_3",
|
||||
"characterIndex": 2,
|
||||
"characterName": "Actor1",
|
||||
"classId": 5,
|
||||
"equips": [
|
||||
31,
|
||||
0,
|
||||
65,
|
||||
5,
|
||||
0
|
||||
],
|
||||
"faceIndex": 2,
|
||||
"faceName": "Actor1",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "ゲイル",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"battlerName": "Actor1_4",
|
||||
"characterIndex": 3,
|
||||
"characterName": "Actor1",
|
||||
"classId": 5,
|
||||
"equips": [
|
||||
31,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0
|
||||
],
|
||||
"faceIndex": 3,
|
||||
"faceName": "Actor1",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "ミシェル",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"battlerName": "Actor1_5",
|
||||
"characterIndex": 4,
|
||||
"characterName": "Actor1",
|
||||
"classId": 2,
|
||||
"equips": [
|
||||
7,
|
||||
0,
|
||||
0,
|
||||
20,
|
||||
0
|
||||
],
|
||||
"faceIndex": 4,
|
||||
"faceName": "Actor1",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "アルベール",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"battlerName": "Actor1_6",
|
||||
"characterIndex": 5,
|
||||
"characterName": "Actor1",
|
||||
"classId": 2,
|
||||
"equips": [
|
||||
7,
|
||||
0,
|
||||
65,
|
||||
21,
|
||||
0
|
||||
],
|
||||
"faceIndex": 5,
|
||||
"faceName": "Actor1",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "ケイシー",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"battlerName": "Actor1_7",
|
||||
"characterIndex": 6,
|
||||
"characterName": "Actor1",
|
||||
"classId": 3,
|
||||
"equips": [
|
||||
7,
|
||||
0,
|
||||
0,
|
||||
20,
|
||||
0
|
||||
],
|
||||
"faceIndex": 6,
|
||||
"faceName": "Actor1",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "エリオット",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"battlerName": "Actor1_8",
|
||||
"characterIndex": 7,
|
||||
"characterName": "Actor1",
|
||||
"classId": 3,
|
||||
"equips": [
|
||||
7,
|
||||
0,
|
||||
0,
|
||||
20,
|
||||
0
|
||||
],
|
||||
"faceIndex": 7,
|
||||
"faceName": "Actor1",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "ローザ",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
}
|
||||
]
|
||||
11004
data/Animations.json
Normal file
11004
data/Animations.json
Normal file
File diff suppressed because it is too large
Load diff
2853
data/Armors.json
Normal file
2853
data/Armors.json
Normal file
File diff suppressed because it is too large
Load diff
9267
data/Classes.json
Normal file
9267
data/Classes.json
Normal file
File diff suppressed because it is too large
Load diff
43006
data/CommonEvents.json
Normal file
43006
data/CommonEvents.json
Normal file
File diff suppressed because it is too large
Load diff
358
data/Enemies.json
Normal file
358
data/Enemies.json
Normal file
|
|
@ -0,0 +1,358 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
},
|
||||
{
|
||||
"skillId": 20,
|
||||
"rating": 5,
|
||||
"conditionType": 0,
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Goblin",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 10,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 5,
|
||||
"name": "ゴブリン",
|
||||
"note": "",
|
||||
"params": [
|
||||
200,
|
||||
0,
|
||||
25,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
},
|
||||
{
|
||||
"skillId": 23,
|
||||
"rating": 3,
|
||||
"conditionType": 1,
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 2
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Gnome",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 10,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 8,
|
||||
"name": "ノーム",
|
||||
"note": "",
|
||||
"params": [
|
||||
250,
|
||||
0,
|
||||
20,
|
||||
25,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Crow",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 15,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.1
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 8,
|
||||
"name": "クロウ",
|
||||
"note": "",
|
||||
"params": [
|
||||
250,
|
||||
50,
|
||||
25,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
25,
|
||||
20
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
},
|
||||
{
|
||||
"skillId": 52,
|
||||
"rating": 4,
|
||||
"conditionType": 2,
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0.3
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Treant",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 30,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
},
|
||||
{
|
||||
"code": 11,
|
||||
"dataId": 2,
|
||||
"value": 2
|
||||
}
|
||||
],
|
||||
"gold": 15,
|
||||
"name": "トレント",
|
||||
"note": "",
|
||||
"params": [
|
||||
500,
|
||||
50,
|
||||
30,
|
||||
20,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
},
|
||||
{
|
||||
"skillId": 99,
|
||||
"rating": 4,
|
||||
"conditionType": 1,
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 2
|
||||
},
|
||||
{
|
||||
"skillId": 13,
|
||||
"rating": 6,
|
||||
"conditionType": 2,
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0.3
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Hi_monster",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 100,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
},
|
||||
{
|
||||
"code": 63,
|
||||
"dataId": 1,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"gold": 50,
|
||||
"name": "魔獣",
|
||||
"note": "",
|
||||
"params": [
|
||||
1000,
|
||||
50,
|
||||
40,
|
||||
20,
|
||||
40,
|
||||
40,
|
||||
40,
|
||||
40
|
||||
]
|
||||
}
|
||||
]
|
||||
5388
data/Items.json
Normal file
5388
data/Items.json
Normal file
File diff suppressed because it is too large
Load diff
19133
data/Map001.json
Normal file
19133
data/Map001.json
Normal file
File diff suppressed because it is too large
Load diff
19615
data/Map002.json
Normal file
19615
data/Map002.json
Normal file
File diff suppressed because it is too large
Load diff
2421
data/Map022.json
Normal file
2421
data/Map022.json
Normal file
File diff suppressed because it is too large
Load diff
6893
data/Map023.json
Normal file
6893
data/Map023.json
Normal file
File diff suppressed because it is too large
Load diff
6371
data/Map024.json
Normal file
6371
data/Map024.json
Normal file
File diff suppressed because it is too large
Load diff
7717
data/Map025.json
Normal file
7717
data/Map025.json
Normal file
File diff suppressed because it is too large
Load diff
10650
data/Map026.json
Normal file
10650
data/Map026.json
Normal file
File diff suppressed because it is too large
Load diff
11749
data/Map027.json
Normal file
11749
data/Map027.json
Normal file
File diff suppressed because it is too large
Load diff
7341
data/Map028.json
Normal file
7341
data/Map028.json
Normal file
File diff suppressed because it is too large
Load diff
10035
data/Map029.json
Normal file
10035
data/Map029.json
Normal file
File diff suppressed because it is too large
Load diff
10518
data/Map030.json
Normal file
10518
data/Map030.json
Normal file
File diff suppressed because it is too large
Load diff
5836
data/Map031.json
Normal file
5836
data/Map031.json
Normal file
File diff suppressed because it is too large
Load diff
1920
data/Map032.json
Normal file
1920
data/Map032.json
Normal file
File diff suppressed because it is too large
Load diff
2116
data/Map033.json
Normal file
2116
data/Map033.json
Normal file
File diff suppressed because it is too large
Load diff
1972
data/Map034.json
Normal file
1972
data/Map034.json
Normal file
File diff suppressed because it is too large
Load diff
9343
data/Map035.json
Normal file
9343
data/Map035.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map036.json
Normal file
1363
data/Map036.json
Normal file
File diff suppressed because it is too large
Load diff
17700
data/Map037.json
Normal file
17700
data/Map037.json
Normal file
File diff suppressed because it is too large
Load diff
9351
data/Map038.json
Normal file
9351
data/Map038.json
Normal file
File diff suppressed because it is too large
Load diff
7066
data/Map039.json
Normal file
7066
data/Map039.json
Normal file
File diff suppressed because it is too large
Load diff
9349
data/Map040.json
Normal file
9349
data/Map040.json
Normal file
File diff suppressed because it is too large
Load diff
9238
data/Map041.json
Normal file
9238
data/Map041.json
Normal file
File diff suppressed because it is too large
Load diff
6075
data/Map042.json
Normal file
6075
data/Map042.json
Normal file
File diff suppressed because it is too large
Load diff
14422
data/Map043.json
Normal file
14422
data/Map043.json
Normal file
File diff suppressed because it is too large
Load diff
6845
data/Map044.json
Normal file
6845
data/Map044.json
Normal file
File diff suppressed because it is too large
Load diff
11621
data/Map045.json
Normal file
11621
data/Map045.json
Normal file
File diff suppressed because it is too large
Load diff
6297
data/Map046.json
Normal file
6297
data/Map046.json
Normal file
File diff suppressed because it is too large
Load diff
10550
data/Map047.json
Normal file
10550
data/Map047.json
Normal file
File diff suppressed because it is too large
Load diff
12380
data/Map048.json
Normal file
12380
data/Map048.json
Normal file
File diff suppressed because it is too large
Load diff
4897
data/Map049.json
Normal file
4897
data/Map049.json
Normal file
File diff suppressed because it is too large
Load diff
8141
data/Map050.json
Normal file
8141
data/Map050.json
Normal file
File diff suppressed because it is too large
Load diff
2764
data/Map051.json
Normal file
2764
data/Map051.json
Normal file
File diff suppressed because it is too large
Load diff
11793
data/Map052.json
Normal file
11793
data/Map052.json
Normal file
File diff suppressed because it is too large
Load diff
10374
data/Map053.json
Normal file
10374
data/Map053.json
Normal file
File diff suppressed because it is too large
Load diff
11549
data/Map054.json
Normal file
11549
data/Map054.json
Normal file
File diff suppressed because it is too large
Load diff
16055
data/Map055.json
Normal file
16055
data/Map055.json
Normal file
File diff suppressed because it is too large
Load diff
8919
data/Map056.json
Normal file
8919
data/Map056.json
Normal file
File diff suppressed because it is too large
Load diff
21842
data/Map057.json
Normal file
21842
data/Map057.json
Normal file
File diff suppressed because it is too large
Load diff
14139
data/Map058.json
Normal file
14139
data/Map058.json
Normal file
File diff suppressed because it is too large
Load diff
7650
data/Map059.json
Normal file
7650
data/Map059.json
Normal file
File diff suppressed because it is too large
Load diff
14608
data/Map060.json
Normal file
14608
data/Map060.json
Normal file
File diff suppressed because it is too large
Load diff
9660
data/Map061.json
Normal file
9660
data/Map061.json
Normal file
File diff suppressed because it is too large
Load diff
9719
data/Map062.json
Normal file
9719
data/Map062.json
Normal file
File diff suppressed because it is too large
Load diff
11524
data/Map063.json
Normal file
11524
data/Map063.json
Normal file
File diff suppressed because it is too large
Load diff
12612
data/Map064.json
Normal file
12612
data/Map064.json
Normal file
File diff suppressed because it is too large
Load diff
17870
data/Map065.json
Normal file
17870
data/Map065.json
Normal file
File diff suppressed because it is too large
Load diff
12466
data/Map066.json
Normal file
12466
data/Map066.json
Normal file
File diff suppressed because it is too large
Load diff
13043
data/Map067.json
Normal file
13043
data/Map067.json
Normal file
File diff suppressed because it is too large
Load diff
12908
data/Map068.json
Normal file
12908
data/Map068.json
Normal file
File diff suppressed because it is too large
Load diff
10096
data/Map069.json
Normal file
10096
data/Map069.json
Normal file
File diff suppressed because it is too large
Load diff
8772
data/Map070.json
Normal file
8772
data/Map070.json
Normal file
File diff suppressed because it is too large
Load diff
5796
data/Map072.json
Normal file
5796
data/Map072.json
Normal file
File diff suppressed because it is too large
Load diff
9173
data/Map073.json
Normal file
9173
data/Map073.json
Normal file
File diff suppressed because it is too large
Load diff
1766
data/Map074.json
Normal file
1766
data/Map074.json
Normal file
File diff suppressed because it is too large
Load diff
8064
data/Map075.json
Normal file
8064
data/Map075.json
Normal file
File diff suppressed because it is too large
Load diff
8582
data/Map076.json
Normal file
8582
data/Map076.json
Normal file
File diff suppressed because it is too large
Load diff
10408
data/Map077.json
Normal file
10408
data/Map077.json
Normal file
File diff suppressed because it is too large
Load diff
7262
data/Map078.json
Normal file
7262
data/Map078.json
Normal file
File diff suppressed because it is too large
Load diff
6662
data/Map079.json
Normal file
6662
data/Map079.json
Normal file
File diff suppressed because it is too large
Load diff
12614
data/Map080.json
Normal file
12614
data/Map080.json
Normal file
File diff suppressed because it is too large
Load diff
12403
data/Map081.json
Normal file
12403
data/Map081.json
Normal file
File diff suppressed because it is too large
Load diff
3394
data/Map082.json
Normal file
3394
data/Map082.json
Normal file
File diff suppressed because it is too large
Load diff
11545
data/Map083.json
Normal file
11545
data/Map083.json
Normal file
File diff suppressed because it is too large
Load diff
13095
data/Map084.json
Normal file
13095
data/Map084.json
Normal file
File diff suppressed because it is too large
Load diff
21612
data/Map085.json
Normal file
21612
data/Map085.json
Normal file
File diff suppressed because it is too large
Load diff
16810
data/Map086.json
Normal file
16810
data/Map086.json
Normal file
File diff suppressed because it is too large
Load diff
6749
data/Map087.json
Normal file
6749
data/Map087.json
Normal file
File diff suppressed because it is too large
Load diff
12401
data/Map088.json
Normal file
12401
data/Map088.json
Normal file
File diff suppressed because it is too large
Load diff
12169
data/Map090.json
Normal file
12169
data/Map090.json
Normal file
File diff suppressed because it is too large
Load diff
12797
data/Map091.json
Normal file
12797
data/Map091.json
Normal file
File diff suppressed because it is too large
Load diff
8969
data/Map092.json
Normal file
8969
data/Map092.json
Normal file
File diff suppressed because it is too large
Load diff
8199
data/Map093.json
Normal file
8199
data/Map093.json
Normal file
File diff suppressed because it is too large
Load diff
7824
data/Map094.json
Normal file
7824
data/Map094.json
Normal file
File diff suppressed because it is too large
Load diff
7759
data/Map095.json
Normal file
7759
data/Map095.json
Normal file
File diff suppressed because it is too large
Load diff
16691
data/Map096.json
Normal file
16691
data/Map096.json
Normal file
File diff suppressed because it is too large
Load diff
11269
data/Map097.json
Normal file
11269
data/Map097.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map098.json
Normal file
1363
data/Map098.json
Normal file
File diff suppressed because it is too large
Load diff
11907
data/Map099.json
Normal file
11907
data/Map099.json
Normal file
File diff suppressed because it is too large
Load diff
2895
data/Map100.json
Normal file
2895
data/Map100.json
Normal file
File diff suppressed because it is too large
Load diff
15429
data/Map101.json
Normal file
15429
data/Map101.json
Normal file
File diff suppressed because it is too large
Load diff
29011
data/Map102.json
Normal file
29011
data/Map102.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map103.json
Normal file
1363
data/Map103.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map104.json
Normal file
1363
data/Map104.json
Normal file
File diff suppressed because it is too large
Load diff
10674
data/Map105.json
Normal file
10674
data/Map105.json
Normal file
File diff suppressed because it is too large
Load diff
9051
data/Map106.json
Normal file
9051
data/Map106.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map107.json
Normal file
1363
data/Map107.json
Normal file
File diff suppressed because it is too large
Load diff
11452
data/Map108.json
Normal file
11452
data/Map108.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map109.json
Normal file
1363
data/Map109.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