Initial Commit
This commit is contained in:
commit
a806ff6345
464 changed files with 2305181 additions and 0 deletions
108
.gitignore
vendored
Normal file
108
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,108 @@
|
|||
# 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.bat
|
||||
|
||||
# Ignore
|
||||
previous_patch_sha.txt
|
||||
kabe3_save.dat
|
||||
kabe3_system.dat
|
||||
psbpack.dat
|
||||
Save*
|
||||
|
||||
# Images
|
||||
!hsb001.rpgmvp
|
||||
!hsh0.rpgmvp
|
||||
!hsh100.rpgmvp
|
||||
!hsh101.rpgmvp
|
||||
!hsh102.rpgmvp
|
||||
!hsh103.rpgmvp
|
||||
!hsh104.rpgmvp
|
||||
!hsh105.rpgmvp
|
||||
!hsh106.rpgmvp
|
||||
!hsh107.rpgmvp
|
||||
!hsh108.rpgmvp
|
||||
!hsh109.rpgmvp
|
||||
!hsh11.rpgmvp
|
||||
!hsh110.rpgmvp
|
||||
!hsh111.rpgmvp
|
||||
!hsh12.rpgmvp
|
||||
!hsh13.rpgmvp
|
||||
!hsh14.rpgmvp
|
||||
!hsh15.rpgmvp
|
||||
!hsh16.rpgmvp
|
||||
!hsh17.rpgmvp
|
||||
!hsh18.rpgmvp
|
||||
!hsh19.rpgmvp
|
||||
!hsh20.rpgmvp
|
||||
!hsh21.rpgmvp
|
||||
!hsh22.rpgmvp
|
||||
!hsh23.rpgmvp
|
||||
!hsh24.rpgmvp
|
||||
!hsh25.rpgmvp
|
||||
!hsh26.rpgmvp
|
||||
!hsh27.rpgmvp
|
||||
!hsh28.rpgmvp
|
||||
!hsh29.rpgmvp
|
||||
!hsh30.rpgmvp
|
||||
!hsh31.rpgmvp
|
||||
!hsh32.rpgmvp
|
||||
!hsh33.rpgmvp
|
||||
!hsh34.rpgmvp
|
||||
!hsh35.rpgmvp
|
||||
!hsh36.rpgmvp
|
||||
!hsh37.rpgmvp
|
||||
!hsh38.rpgmvp
|
||||
!hsh39.rpgmvp
|
||||
!hsh41.rpgmvp
|
||||
!hsh42.rpgmvp
|
||||
!hsh43.rpgmvp
|
||||
!hsh44.rpgmvp
|
||||
!hsh45.rpgmvp
|
||||
!hsh46.rpgmvp
|
||||
!hsh47.rpgmvp
|
||||
!hsh48.rpgmvp
|
||||
!hsh49.rpgmvp
|
||||
!hsh50.rpgmvp
|
||||
!hsh60.rpgmvp
|
||||
!hsh61.rpgmvp
|
||||
!hsh62.rpgmvp
|
||||
!hsh63.rpgmvp
|
||||
!hsh64.rpgmvp
|
||||
!hssa1.rpgmvp
|
||||
!hssb1.rpgmvp
|
||||
!hssc1.rpgmvp
|
||||
!hssd1.rpgmvp
|
||||
!hsse1.rpgmvp
|
||||
!hssf1.rpgmvp
|
||||
!hssg1.rpgmvp
|
||||
!hssh1.rpgmvp
|
||||
!hssi1.rpgmvp
|
||||
!sab04.rpgmvp
|
||||
!sab05.rpgmvp
|
||||
!sab06.rpgmvp
|
||||
!sab17.rpgmvp
|
||||
!sab18.rpgmvp
|
||||
!sab30.rpgmvp
|
||||
72
GAMEUPDATE.bat
Normal file
72
GAMEUPDATE.bat
Normal file
|
|
@ -0,0 +1,72 @@
|
|||
@echo off
|
||||
setlocal enabledelayedexpansion
|
||||
|
||||
REM Check if patch-config.txt exists
|
||||
if not exist patch-config.txt (
|
||||
echo "Config file (patch-config.txt) not found! Assuming no patching needed."
|
||||
exit /b
|
||||
)
|
||||
|
||||
REM Read configuration from file
|
||||
for /f "tokens=1,2 delims==" %%a in (patch-config.txt) do (
|
||||
if "%%a"=="username" set "username=%%b"
|
||||
if "%%a"=="repo" set "repo=%%b"
|
||||
if "%%a"=="branch" set "branch=%%b"
|
||||
)
|
||||
|
||||
REM Get the latest hash
|
||||
echo "Getting latest commit SHA hash"
|
||||
powershell -Command "(Invoke-WebRequest -Uri 'https://api.github.com/repos/%username%/%repo%/branches/%branch%').Content | ConvertFrom-Json | Select-Object -ExpandProperty commit | Select-Object -ExpandProperty sha" > latest_patch_sha.txt
|
||||
|
||||
REM Read the latest SHA from the file
|
||||
set /p latest_patch_sha=<latest_patch_sha.txt
|
||||
|
||||
REM Check if previous_patch_sha.txt exists
|
||||
if not exist previous_patch_sha.txt (
|
||||
echo "Previous SHA hash not found!"
|
||||
echo "Assuming first time patching..."
|
||||
goto download_extract
|
||||
)
|
||||
|
||||
REM Read the stored SHA from previous check
|
||||
set /p previous_patch_sha=<previous_patch_sha.txt
|
||||
|
||||
REM Trim whitespace from SHA strings
|
||||
set "previous_patch_sha=%previous_patch_sha: =%"
|
||||
set "latest_patch_sha=%latest_patch_sha: =%"
|
||||
|
||||
REM Compare trimmed SHAs
|
||||
if "%latest_patch_sha%" neq "%previous_patch_sha%" (
|
||||
echo "Update found! Patching...
|
||||
goto download_extract
|
||||
) else (
|
||||
echo "Patch is up to date."
|
||||
)
|
||||
|
||||
REM Delete latest_patch_sha.txt
|
||||
del latest_patch_sha.txt
|
||||
|
||||
endlocal
|
||||
exit /b
|
||||
|
||||
:download_extract
|
||||
REM Download zip file
|
||||
echo "Downloading latest patch..."
|
||||
powershell -Command "Invoke-WebRequest -Uri 'https://codeload.github.com/%username%/%repo%/zip/refs/heads/%branch%' -OutFile 'repo.zip'"
|
||||
|
||||
REM Extract contents, overwriting conflicts
|
||||
echo "Extracting..."
|
||||
powershell -Command "Expand-Archive -Path '.\repo.zip' -DestinationPath '.' -Force"
|
||||
echo "Applying patch..."
|
||||
xcopy /s /e /y "%repo%-%branch%\*" "."
|
||||
|
||||
REM Clean up
|
||||
echo "Cleaning up..."
|
||||
del repo.zip
|
||||
rmdir /s /q "%repo%-main"
|
||||
del latest_patch_sha.txt
|
||||
|
||||
REM Store latest SHA for next check
|
||||
echo %latest_patch_sha% > previous_patch_sha.txt
|
||||
endlocal
|
||||
exit /b
|
||||
57
README.md
Normal file
57
README.md
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
# 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 pull request to the project owner.
|
||||
|
||||
If everything looks good and doesn't break things I'll merge it in.
|
||||
|
||||
Longer Version:
|
||||
|
||||
Things that are needed:
|
||||
* [VSCode](https://code.visualstudio.com/) Make sure you check all the boxes for context menus. 
|
||||
* The Game
|
||||
* [Git](https://git-scm.com/downloads) (Use the default for everything. Just keep clicking Next)
|
||||
* Motivation to learn
|
||||
|
||||
Installation:
|
||||
1. Fork the repo using the fork button at the top. Click Code > HTTPS > Copy URL.
|
||||
2. Right click on the game folder and click 'Open with VSCode' (Shift+Right_Click if you are on Windows 11)
|
||||
3. Click on the Source Control Button and click initialize repository.
|
||||
|
||||

|
||||
|
||||
4. At the top click on Terminal > New Terminal. Enter the following: `git clone [URL_YOU_COPIED_ABOVE]`.
|
||||
5. Copy the contents of the new folder created with git clone into the game folder and replace all.
|
||||
6. Your source control menu should be good to go and look like this.
|
||||
|
||||

|
||||
|
||||
Now you are all setup, all you need to do is play the game and look for any changes that need to be made. Stuff like spelling errors, wrong names, inconsistencies, spacing issues, etc.
|
||||
|
||||
7. Use the FIND functionality to search for what you are trying to fix. For example if a character's name is wrong, type that into the search menu and start looking, then make the change. Try not to mess with any scripts or variables you might see.
|
||||
|
||||

|
||||
|
||||
8. After you are satisfied with your changes it's time to put in a PR. Go to source control to see all your changes. Add a message and click the `Commit` button to save them all.
|
||||
|
||||

|
||||
|
||||
8. Click Sync to push your changes to your fork. Now all that's left is to put in a pull request.
|
||||
9. Go to Pull Requests > New Pull Requests. Look at the arrow, your fork should be pointing to the original repo (mine). Add in details on what you fixed and Submit. If everything looks good I'll merge it in and you would have successfully contributed.
|
||||
|
||||
Got questions? Just shoot me a message, more than happy to walk you through any of the tools.
|
||||
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=DazedMTL
|
||||
repo=Grace-of-the-Labyrinth
|
||||
branch=main
|
||||
BIN
readmeお読みください.txt
Normal file
BIN
readmeお読みください.txt
Normal file
Binary file not shown.
347
www/data/Actors.json
Normal file
347
www/data/Actors.json
Normal file
|
|
@ -0,0 +1,347 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"battlerName": "Teana_03",
|
||||
"characterIndex": 0,
|
||||
"characterName": "teana",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
1,
|
||||
1,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "T_Face_A",
|
||||
"traits": [],
|
||||
"initialLevel": 5,
|
||||
"maxLevel": 30,
|
||||
"name": "ティアナ",
|
||||
"nickname": "",
|
||||
"note": "<attackVoice:CV_BT_A04,CV_BT_A05,CV_BT_A06,CV_BT_A07,CV_BT_A08,CV_BT_A09>\n<damageVoice:CV_BT_D01,CV_BT_D02,CV_BT_D03,CV_BT_D04,CV_BT_D05,CV_BT_D06>\n<evadeVoice:CV_BT_A01,CV_BT_A02,CV_BT_A03>\n<victoryVoice:CV_BT_D07> \n<defeatedVoice:CV_BT_D08>",
|
||||
"profile": "\\C[16]AGE:\\C[0]〇6 / \\C[16]T:\\C[0]159 / \\C[16]B:\\C[0]96(H) / \\C[16]W:\\C[0]61 / \\C[16]H:\\C[0]95\n\\C[16]所属:\\C[0]王立騎士団 / \\C[16]役職:\\C[0]聖騎士"
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "透明",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"battlerName": "",
|
||||
"characterIndex": 5,
|
||||
"characterName": "teana",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "壁尻",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"battlerName": "",
|
||||
"characterIndex": 6,
|
||||
"characterName": "teana",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "転ぶ",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"battlerName": "",
|
||||
"characterIndex": 1,
|
||||
"characterName": "teana",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "下着",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"battlerName": "",
|
||||
"characterIndex": 2,
|
||||
"characterName": "teana",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "全裸",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"battlerName": "",
|
||||
"characterIndex": 3,
|
||||
"characterName": "teana",
|
||||
"classId": 2,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "T_Face_C",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "ティアナ",
|
||||
"nickname": "",
|
||||
"note": "拘束",
|
||||
"profile": "\\C[16]AGE:\\C[0]〇6 / \\C[16]T:\\C[0]159 / \\C[16]B:\\C[0]96(H) / \\C[16]W:\\C[0]61 / \\C[16]H:\\C[0]95\n\\C[16]所属:\\C[0]王立騎士団 / \\C[16]役職:\\C[0]聖騎士"
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"battlerName": "",
|
||||
"characterIndex": 2,
|
||||
"characterName": "teana",
|
||||
"classId": 2,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 4,
|
||||
"faceName": "T_Face_B",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "ティアナ",
|
||||
"nickname": "",
|
||||
"note": "全裸",
|
||||
"profile": "\\C[16]AGE:\\C[0]〇6 / \\C[16]T:\\C[0]159 / \\C[16]B:\\C[0]96(H) / \\C[16]W:\\C[0]61 / \\C[16]H:\\C[0]95\n\\C[16]所属:\\C[0]王立騎士団 / \\C[16]役職:\\C[0]聖騎士"
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
}
|
||||
]
|
||||
129871
www/data/Animations.json
Normal file
129871
www/data/Animations.json
Normal file
File diff suppressed because it is too large
Load diff
2202
www/data/Armors.json
Normal file
2202
www/data/Armors.json
Normal file
File diff suppressed because it is too large
Load diff
1913
www/data/Classes.json
Normal file
1913
www/data/Classes.json
Normal file
File diff suppressed because it is too large
Load diff
230019
www/data/CommonEvents.json
Normal file
230019
www/data/CommonEvents.json
Normal file
File diff suppressed because it is too large
Load diff
83
www/data/Enemies.json
Normal file
83
www/data/Enemies.json
Normal file
|
|
@ -0,0 +1,83 @@
|
|||
[
|
||||
null,
|
||||
{"id":1,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":1}],"battlerHue":0,"battlerName":"boss_00","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":[9999,0,90,30,90,30,1,30]},
|
||||
{"id":2,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":116},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":117},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":118},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":4,"skillId":119},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":4,"skillId":120},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":4,"skillId":121}],"battlerHue":0,"battlerName":"boss_01","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":10000,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0},{"code":63,"dataId":1,"value":1},{"code":13,"dataId":3,"value":0.5},{"code":13,"dataId":5,"value":0.5}],"gold":500,"name":"インフェルノデーモン","note":"","params":[6000,9999,130,100,130,100,1,30]},
|
||||
{"id":3,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":100},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":4,"skillId":101},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":99}],"battlerHue":0,"battlerName":"boss_02","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":120,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0},{"code":13,"dataId":3,"value":0.5},{"code":13,"dataId":5,"value":0.5}],"gold":12,"name":"ヘルプリースト","note":"","params":[2000,9999,50,100,50,100,1,30]},
|
||||
{"id":4,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":104},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":103},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":4,"skillId":105}],"battlerHue":0,"battlerName":"boss_03","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":158,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0},{"code":13,"dataId":3,"value":0.5},{"code":13,"dataId":5,"value":0.5}],"gold":123,"name":"シャドウゲイザー","note":"","params":[2000,9999,50,100,50,100,1,30]},
|
||||
{"id":5,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":109},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":4,"skillId":110},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":108}],"battlerHue":0,"battlerName":"boss_04","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":28,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0},{"code":13,"dataId":3,"value":0.5},{"code":13,"dataId":5,"value":0.5}],"gold":12,"name":"ナイトスパイダー","note":"","params":[2000,9999,50,100,50,100,1,30]},
|
||||
{"id":6,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":112},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":4,"skillId":113}],"battlerHue":0,"battlerName":"boss_05","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":1,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":1,"name":"グリムアイA","note":"","params":[900,9999,50,100,50,100,1,30]},
|
||||
{"id":7,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":112},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":4,"skillId":113}],"battlerHue":120,"battlerName":"boss_05","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":1,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":1,"name":"グリムアイB","note":"","params":[900,9999,50,100,50,100,1,30]},
|
||||
{"id":8,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":112},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":4,"skillId":113}],"battlerHue":240,"battlerName":"boss_05","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":1,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":1,"name":"グリムアイC","note":"","params":[900,9999,50,100,50,100,1,30]},
|
||||
{"id":9,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":112},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":4,"skillId":113}],"battlerHue":360,"battlerName":"boss_05","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":1,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":1,"name":"グリムアイD","note":"","params":[900,9999,50,100,50,100,1,30]},
|
||||
{"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]},
|
||||
{"id":11,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":133},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":134},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":135},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":4,"skillId":136},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":4,"skillId":137}],"battlerHue":0,"battlerName":"boss_06","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":9000,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0},{"code":63,"dataId":1,"value":1},{"code":13,"dataId":3,"value":0.5},{"code":13,"dataId":5,"value":0.5}],"gold":240,"name":"封印されしもの","note":"","params":[3800,9999,87,90,78,90,1,30]},
|
||||
{"id":12,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":131},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":99},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":140}],"battlerHue":0,"battlerName":"boss_07","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":200,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":58,"name":"顕現された悪意","note":"","params":[900,9999,50,100,50,100,1,30]},
|
||||
{"id":13,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":101},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":4,"skillId":113},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":139}],"battlerHue":0,"battlerName":"boss_08","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":124,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":12,"name":"小さな亡霊","note":"","params":[900,9999,50,100,50,100,1,30]},
|
||||
{"id":14,"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":15,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":110},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":142},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":4,"skillId":143}],"battlerHue":0,"battlerName":"boss_09","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":5000,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0},{"code":63,"dataId":1,"value":1},{"code":13,"dataId":3,"value":0.5},{"code":13,"dataId":5,"value":0.5}],"gold":180,"name":"キングゴーレム","note":"","params":[3500,9999,74,75,70,75,1,30]},
|
||||
{"id":16,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":145},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":146},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":4,"skillId":147}],"battlerHue":0,"battlerName":"boss_10","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":300,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":120,"name":"ブロンズ・レオ","note":"","params":[700,9999,45,75,45,75,1,30]},
|
||||
{"id":17,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":151},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":149},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":4,"skillId":150}],"battlerHue":0,"battlerName":"boss_11","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":308,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":15,"name":"ハーピィ","note":"","params":[700,9999,41,75,41,75,1,30]},
|
||||
{"id":18,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":153},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":154},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":4,"skillId":155},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":2,"skillId":156}],"battlerHue":0,"battlerName":"boss_12","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":364,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":28,"name":"不思議なつぼ","note":"","params":[900,9999,30,75,30,75,1,30]},
|
||||
{"id":19,"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":20,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":161},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":160},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":4,"skillId":158},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":158}],"battlerHue":0,"battlerName":"boss_13","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":3000,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0},{"code":63,"dataId":1,"value":1},{"code":13,"dataId":3,"value":0.5},{"code":13,"dataId":5,"value":0.5}],"gold":150,"name":"おばけツリー","note":"","params":[3000,9999,55,50,51,50,1,30]},
|
||||
{"id":21,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":116},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":163}],"battlerHue":0,"battlerName":"boss_14","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":201,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":21,"name":"死神カマキリ","note":"","params":[600,9999,38,35,35,35,1,30]},
|
||||
{"id":22,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":110},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":4,"skillId":127},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":164}],"battlerHue":0,"battlerName":"boss_15","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":203,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":23,"name":"森の賢者","note":"","params":[500,9999,38,33,35,33,1,30]},
|
||||
{"id":23,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":153},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":154},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":4,"skillId":113}],"battlerHue":0,"battlerName":"boss_16","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":214,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":5,"name":"魔導クリスタル","note":"","params":[900,9999,38,33,35,33,1,30]},
|
||||
{"id":24,"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":25,"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":26,"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":27,"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":28,"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":29,"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":30,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":126},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":4}],"battlerHue":0,"battlerName":"monster03","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":199,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":25,"name":"キバネズミ","note":"","params":[80,0,15,30,15,30,1,30]},
|
||||
{"id":31,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":126},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":113}],"battlerHue":0,"battlerName":"monster02","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":212,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":33,"name":"こうもり","note":"","params":[100,0,20,30,20,30,1,30]},
|
||||
{"id":32,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":127},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":110}],"battlerHue":0,"battlerName":"monster01","dropItems":[{"kind":1,"dataId":21,"denominator":1},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":241,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":36,"name":"スライム","note":"","params":[200,0,25,30,25,30,1,30]},
|
||||
{"id":33,"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":34,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":126},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":4}],"battlerHue":0,"battlerName":"monster06","dropItems":[{"kind":1,"dataId":22,"denominator":1},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":589,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":68,"name":"マンドラゴラ","note":"","params":[384,0,41,40,41,40,1,30]},
|
||||
{"id":35,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":128},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":113}],"battlerHue":0,"battlerName":"monster04","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":623,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":71,"name":"ホーネット","note":"","params":[250,0,30,39,30,39,1,30]},
|
||||
{"id":36,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":126},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":4}],"battlerHue":0,"battlerName":"monster07","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":651,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":73,"name":"マンイーター","note":"","params":[480,0,51,40,52,40,1,30]},
|
||||
{"id":37,"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":38,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":149},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":151}],"battlerHue":0,"battlerName":"monster10","dropItems":[{"kind":1,"dataId":23,"denominator":1},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":1198,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":74,"name":"ムクロドリ","note":"","params":[579,0,65,61,65,62,1,30]},
|
||||
{"id":39,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":112},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":4}],"battlerHue":0,"battlerName":"monster11","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":1154,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":71,"name":"山の番人","note":"","params":[672,0,58,63,60,63,1,30]},
|
||||
{"id":40,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":126},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":4}],"battlerHue":0,"battlerName":"monster08","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":1234,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":76,"name":"マウンテンウルフ","note":"","params":[620,0,64,58,58,59,1,30]},
|
||||
{"id":41,"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":42,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":126},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":4}],"battlerHue":0,"battlerName":"monster05","dropItems":[{"kind":1,"dataId":24,"denominator":1},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":1864,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":112,"name":"スネーク","note":"","params":[580,0,61,71,60,71,1,30]},
|
||||
{"id":43,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":126},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":4}],"battlerHue":0,"battlerName":"monster12","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":1842,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":108,"name":"スコルピ","note":"","params":[570,0,63,67,60,67,1,30]},
|
||||
{"id":44,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":112},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":110}],"battlerHue":0,"battlerName":"monster09","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":1897,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":145,"name":"サンドボーイ","note":"","params":[751,0,65,75,65,61,1,30]},
|
||||
{"id":45,"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":46,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":131},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":113}],"battlerHue":0,"battlerName":"monster13","dropItems":[{"kind":1,"dataId":25,"denominator":1},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":2514,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":265,"name":"ゴースト","note":"","params":[812,0,81,70,80,75,1,30]},
|
||||
{"id":47,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":127},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":155}],"battlerHue":269,"battlerName":"monster14","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":2341,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":264,"name":"怨念ガイコツ","note":"","params":[795,0,81,85,80,75,1,30]},
|
||||
{"id":48,"actions":[{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":5,"skillId":127},{"conditionParam1":0,"conditionParam2":0,"conditionType":0,"rating":3,"skillId":110}],"battlerHue":0,"battlerName":"monster15","dropItems":[{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0},{"dataId":1,"denominator":1,"kind":0}],"exp":2217,"traits":[{"code":22,"dataId":0,"value":0.95},{"code":31,"dataId":1,"value":0}],"gold":294,"name":"ロックボーイ","note":"","params":[856,0,78,91,78,90,1,30]},
|
||||
{"id":49,"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":50,"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":51,"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":52,"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":53,"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":54,"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":55,"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":56,"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":57,"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":58,"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":59,"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":60,"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":61,"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":62,"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":63,"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":64,"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":65,"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":66,"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":67,"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":68,"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":69,"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":70,"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":71,"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":72,"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":73,"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":74,"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":75,"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":76,"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":77,"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":78,"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":79,"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":80,"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]}
|
||||
]
|
||||
1937
www/data/Items.json
Normal file
1937
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
8532
www/data/Map002.json
Normal file
8532
www/data/Map002.json
Normal file
File diff suppressed because it is too large
Load diff
3278
www/data/Map003.json
Normal file
3278
www/data/Map003.json
Normal file
File diff suppressed because it is too large
Load diff
10743
www/data/Map004.json
Normal file
10743
www/data/Map004.json
Normal file
File diff suppressed because it is too large
Load diff
3061
www/data/Map005.json
Normal file
3061
www/data/Map005.json
Normal file
File diff suppressed because it is too large
Load diff
5040
www/data/Map006.json
Normal file
5040
www/data/Map006.json
Normal file
File diff suppressed because it is too large
Load diff
8325
www/data/Map007.json
Normal file
8325
www/data/Map007.json
Normal file
File diff suppressed because it is too large
Load diff
2598
www/data/Map008.json
Normal file
2598
www/data/Map008.json
Normal file
File diff suppressed because it is too large
Load diff
1858
www/data/Map009.json
Normal file
1858
www/data/Map009.json
Normal file
File diff suppressed because it is too large
Load diff
2089
www/data/Map010.json
Normal file
2089
www/data/Map010.json
Normal file
File diff suppressed because it is too large
Load diff
2102
www/data/Map011.json
Normal file
2102
www/data/Map011.json
Normal file
File diff suppressed because it is too large
Load diff
2272
www/data/Map012.json
Normal file
2272
www/data/Map012.json
Normal file
File diff suppressed because it is too large
Load diff
4363
www/data/Map013.json
Normal file
4363
www/data/Map013.json
Normal file
File diff suppressed because it is too large
Load diff
1454
www/data/Map014.json
Normal file
1454
www/data/Map014.json
Normal file
File diff suppressed because it is too large
Load diff
1511
www/data/Map015.json
Normal file
1511
www/data/Map015.json
Normal file
File diff suppressed because it is too large
Load diff
1511
www/data/Map016.json
Normal file
1511
www/data/Map016.json
Normal file
File diff suppressed because it is too large
Load diff
2940
www/data/Map017.json
Normal file
2940
www/data/Map017.json
Normal file
File diff suppressed because it is too large
Load diff
5776
www/data/Map018.json
Normal file
5776
www/data/Map018.json
Normal file
File diff suppressed because it is too large
Load diff
2040
www/data/Map019.json
Normal file
2040
www/data/Map019.json
Normal file
File diff suppressed because it is too large
Load diff
1979
www/data/Map020.json
Normal file
1979
www/data/Map020.json
Normal file
File diff suppressed because it is too large
Load diff
4991
www/data/Map021.json
Normal file
4991
www/data/Map021.json
Normal file
File diff suppressed because it is too large
Load diff
5210
www/data/Map022.json
Normal file
5210
www/data/Map022.json
Normal file
File diff suppressed because it is too large
Load diff
3318
www/data/Map023.json
Normal file
3318
www/data/Map023.json
Normal file
File diff suppressed because it is too large
Load diff
12289
www/data/Map024.json
Normal file
12289
www/data/Map024.json
Normal file
File diff suppressed because it is too large
Load diff
11050
www/data/Map025.json
Normal file
11050
www/data/Map025.json
Normal file
File diff suppressed because it is too large
Load diff
3256
www/data/Map026.json
Normal file
3256
www/data/Map026.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map027.json
Normal file
1363
www/data/Map027.json
Normal file
File diff suppressed because it is too large
Load diff
14773
www/data/Map028.json
Normal file
14773
www/data/Map028.json
Normal file
File diff suppressed because it is too large
Load diff
2937
www/data/Map029.json
Normal file
2937
www/data/Map029.json
Normal file
File diff suppressed because it is too large
Load diff
3542
www/data/Map030.json
Normal file
3542
www/data/Map030.json
Normal file
File diff suppressed because it is too large
Load diff
3518
www/data/Map031.json
Normal file
3518
www/data/Map031.json
Normal file
File diff suppressed because it is too large
Load diff
1861
www/data/Map032.json
Normal file
1861
www/data/Map032.json
Normal file
File diff suppressed because it is too large
Load diff
2406
www/data/Map033.json
Normal file
2406
www/data/Map033.json
Normal file
File diff suppressed because it is too large
Load diff
2088
www/data/Map034.json
Normal file
2088
www/data/Map034.json
Normal file
File diff suppressed because it is too large
Load diff
2286
www/data/Map035.json
Normal file
2286
www/data/Map035.json
Normal file
File diff suppressed because it is too large
Load diff
2164
www/data/Map036.json
Normal file
2164
www/data/Map036.json
Normal file
File diff suppressed because it is too large
Load diff
2367
www/data/Map037.json
Normal file
2367
www/data/Map037.json
Normal file
File diff suppressed because it is too large
Load diff
2136
www/data/Map038.json
Normal file
2136
www/data/Map038.json
Normal file
File diff suppressed because it is too large
Load diff
1800
www/data/Map039.json
Normal file
1800
www/data/Map039.json
Normal file
File diff suppressed because it is too large
Load diff
1837
www/data/Map040.json
Normal file
1837
www/data/Map040.json
Normal file
File diff suppressed because it is too large
Load diff
2876
www/data/Map041.json
Normal file
2876
www/data/Map041.json
Normal file
File diff suppressed because it is too large
Load diff
2791
www/data/Map042.json
Normal file
2791
www/data/Map042.json
Normal file
File diff suppressed because it is too large
Load diff
13683
www/data/Map043.json
Normal file
13683
www/data/Map043.json
Normal file
File diff suppressed because it is too large
Load diff
3040
www/data/Map044.json
Normal file
3040
www/data/Map044.json
Normal file
File diff suppressed because it is too large
Load diff
3078
www/data/Map045.json
Normal file
3078
www/data/Map045.json
Normal file
File diff suppressed because it is too large
Load diff
2183
www/data/Map046.json
Normal file
2183
www/data/Map046.json
Normal file
File diff suppressed because it is too large
Load diff
2550
www/data/Map047.json
Normal file
2550
www/data/Map047.json
Normal file
File diff suppressed because it is too large
Load diff
2103
www/data/Map048.json
Normal file
2103
www/data/Map048.json
Normal file
File diff suppressed because it is too large
Load diff
1877
www/data/Map049.json
Normal file
1877
www/data/Map049.json
Normal file
File diff suppressed because it is too large
Load diff
1980
www/data/Map050.json
Normal file
1980
www/data/Map050.json
Normal file
File diff suppressed because it is too large
Load diff
1511
www/data/Map051.json
Normal file
1511
www/data/Map051.json
Normal file
File diff suppressed because it is too large
Load diff
2126
www/data/Map052.json
Normal file
2126
www/data/Map052.json
Normal file
File diff suppressed because it is too large
Load diff
2041
www/data/Map053.json
Normal file
2041
www/data/Map053.json
Normal file
File diff suppressed because it is too large
Load diff
16019
www/data/Map054.json
Normal file
16019
www/data/Map054.json
Normal file
File diff suppressed because it is too large
Load diff
1674
www/data/Map055.json
Normal file
1674
www/data/Map055.json
Normal file
File diff suppressed because it is too large
Load diff
1699
www/data/Map056.json
Normal file
1699
www/data/Map056.json
Normal file
File diff suppressed because it is too large
Load diff
1735
www/data/Map057.json
Normal file
1735
www/data/Map057.json
Normal file
File diff suppressed because it is too large
Load diff
1698
www/data/Map058.json
Normal file
1698
www/data/Map058.json
Normal file
File diff suppressed because it is too large
Load diff
11663
www/data/Map059.json
Normal file
11663
www/data/Map059.json
Normal file
File diff suppressed because it is too large
Load diff
1674
www/data/Map060.json
Normal file
1674
www/data/Map060.json
Normal file
File diff suppressed because it is too large
Load diff
4484
www/data/Map061.json
Normal file
4484
www/data/Map061.json
Normal file
File diff suppressed because it is too large
Load diff
1781
www/data/Map062.json
Normal file
1781
www/data/Map062.json
Normal file
File diff suppressed because it is too large
Load diff
1753
www/data/Map063.json
Normal file
1753
www/data/Map063.json
Normal file
File diff suppressed because it is too large
Load diff
1451
www/data/Map064.json
Normal file
1451
www/data/Map064.json
Normal file
File diff suppressed because it is too large
Load diff
1668
www/data/Map065.json
Normal file
1668
www/data/Map065.json
Normal file
File diff suppressed because it is too large
Load diff
1572
www/data/Map066.json
Normal file
1572
www/data/Map066.json
Normal file
File diff suppressed because it is too large
Load diff
1737
www/data/Map067.json
Normal file
1737
www/data/Map067.json
Normal file
File diff suppressed because it is too large
Load diff
3388
www/data/Map068.json
Normal file
3388
www/data/Map068.json
Normal file
File diff suppressed because it is too large
Load diff
2884
www/data/Map069.json
Normal file
2884
www/data/Map069.json
Normal file
File diff suppressed because it is too large
Load diff
2888
www/data/Map070.json
Normal file
2888
www/data/Map070.json
Normal file
File diff suppressed because it is too large
Load diff
1956
www/data/Map071.json
Normal file
1956
www/data/Map071.json
Normal file
File diff suppressed because it is too large
Load diff
1816
www/data/Map072.json
Normal file
1816
www/data/Map072.json
Normal file
File diff suppressed because it is too large
Load diff
1450
www/data/Map073.json
Normal file
1450
www/data/Map073.json
Normal file
File diff suppressed because it is too large
Load diff
15066
www/data/Map074.json
Normal file
15066
www/data/Map074.json
Normal file
File diff suppressed because it is too large
Load diff
3423
www/data/Map075.json
Normal file
3423
www/data/Map075.json
Normal file
File diff suppressed because it is too large
Load diff
3339
www/data/Map076.json
Normal file
3339
www/data/Map076.json
Normal file
File diff suppressed because it is too large
Load diff
2284
www/data/Map077.json
Normal file
2284
www/data/Map077.json
Normal file
File diff suppressed because it is too large
Load diff
2226
www/data/Map078.json
Normal file
2226
www/data/Map078.json
Normal file
File diff suppressed because it is too large
Load diff
2697
www/data/Map079.json
Normal file
2697
www/data/Map079.json
Normal file
File diff suppressed because it is too large
Load diff
3573
www/data/Map080.json
Normal file
3573
www/data/Map080.json
Normal file
File diff suppressed because it is too large
Load diff
2305
www/data/Map081.json
Normal file
2305
www/data/Map081.json
Normal file
File diff suppressed because it is too large
Load diff
2305
www/data/Map082.json
Normal file
2305
www/data/Map082.json
Normal file
File diff suppressed because it is too large
Load diff
6243
www/data/Map083.json
Normal file
6243
www/data/Map083.json
Normal file
File diff suppressed because it is too large
Load diff
4135
www/data/Map084.json
Normal file
4135
www/data/Map084.json
Normal file
File diff suppressed because it is too large
Load diff
11187
www/data/Map085.json
Normal file
11187
www/data/Map085.json
Normal file
File diff suppressed because it is too large
Load diff
3826
www/data/Map086.json
Normal file
3826
www/data/Map086.json
Normal file
File diff suppressed because it is too large
Load diff
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue