Initial Commit
This commit is contained in:
commit
e7aeeeaba7
283 changed files with 3382564 additions and 0 deletions
12
.gitignore
vendored
Normal file
12
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
# Ignore all files
|
||||
*.*
|
||||
|
||||
# Except
|
||||
!*.json
|
||||
!*.js
|
||||
!*.zip
|
||||
!*.7z
|
||||
!*.csv
|
||||
!.gitignore
|
||||
!README.md
|
||||
package.json
|
||||
49
README.md
Normal file
49
README.md
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
# Apply Patch
|
||||
1. Click Code
|
||||
2. Click Download ZIP
|
||||
3. Extract to game folder and Replace All.
|
||||
|
||||
# How To 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.
|
||||
208
www/data/Actors.json
Normal file
208
www/data/Actors.json
Normal file
|
|
@ -0,0 +1,208 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "ayako",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
1,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 9,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 6,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 37,
|
||||
"maxLevel": 99,
|
||||
"name": "永辻 綾子",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 9,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 6,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"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": [
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 9,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 6,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 37,
|
||||
"maxLevel": 99,
|
||||
"name": "永辻 綾子",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "ayako",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
1,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 9,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 43,
|
||||
"dataId": 6,
|
||||
"value": 1
|
||||
}
|
||||
],
|
||||
"initialLevel": 37,
|
||||
"maxLevel": 99,
|
||||
"name": "永辻 綾子",
|
||||
"nickname": "",
|
||||
"note": "<KNHShadow>",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 6,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "ケンタルロス",
|
||||
"nickname": "",
|
||||
"note": "ケンタ コメ用",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"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": 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": ""
|
||||
}
|
||||
]
|
||||
136381
www/data/Animations.json
Normal file
136381
www/data/Animations.json
Normal file
File diff suppressed because it is too large
Load diff
111
www/data/Armors.json
Normal file
111
www/data/Armors.json
Normal file
|
|
@ -0,0 +1,111 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"atypeId": 5,
|
||||
"description": "",
|
||||
"etypeId": 2,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 128,
|
||||
"name": "盾",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 300
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"atypeId": 1,
|
||||
"description": "",
|
||||
"etypeId": 3,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 130,
|
||||
"name": "帽子",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 300
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"atypeId": 1,
|
||||
"description": "",
|
||||
"etypeId": 4,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 135,
|
||||
"name": "服",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 300
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"atypeId": 1,
|
||||
"description": "",
|
||||
"etypeId": 5,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"iconIndex": 145,
|
||||
"name": "指輪",
|
||||
"note": "",
|
||||
"params": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"price": 300
|
||||
}
|
||||
]
|
||||
8643
www/data/Classes.json
Normal file
8643
www/data/Classes.json
Normal file
File diff suppressed because it is too large
Load diff
108826
www/data/CommonEvents.json
Normal file
108826
www/data/CommonEvents.json
Normal file
File diff suppressed because it is too large
Load diff
251
www/data/Enemies.json
Normal file
251
www/data/Enemies.json
Normal file
|
|
@ -0,0 +1,251 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Bat",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "こうもり",
|
||||
"note": "",
|
||||
"params": [
|
||||
200,
|
||||
0,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Slime",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "スライム",
|
||||
"note": "",
|
||||
"params": [
|
||||
250,
|
||||
0,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Orc",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "オーク",
|
||||
"note": "",
|
||||
"params": [
|
||||
300,
|
||||
0,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"actions": [
|
||||
{
|
||||
"conditionParam1": 0,
|
||||
"conditionParam2": 0,
|
||||
"conditionType": 0,
|
||||
"rating": 5,
|
||||
"skillId": 1
|
||||
}
|
||||
],
|
||||
"battlerHue": 0,
|
||||
"battlerName": "Minotaur",
|
||||
"dropItems": [
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
},
|
||||
{
|
||||
"dataId": 1,
|
||||
"denominator": 1,
|
||||
"kind": 0
|
||||
}
|
||||
],
|
||||
"exp": 0,
|
||||
"traits": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 0.95
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 31,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"gold": 0,
|
||||
"name": "ミノタウロス",
|
||||
"note": "",
|
||||
"params": [
|
||||
500,
|
||||
0,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30,
|
||||
30
|
||||
]
|
||||
}
|
||||
]
|
||||
615
www/data/Items.json
Normal file
615
www/data/Items.json
Normal file
|
|
@ -0,0 +1,615 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"animationId": 41,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "ゲームヘルプを表示します",
|
||||
"effects": [
|
||||
{
|
||||
"code": 44,
|
||||
"dataId": 7,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 4,
|
||||
"itypeId": 2,
|
||||
"name": "ゲームヘルプ",
|
||||
"note": "",
|
||||
"occasion": 2,
|
||||
"price": 50,
|
||||
"repeats": 1,
|
||||
"scope": 0,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"animationId": 41,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [
|
||||
{
|
||||
"code": 12,
|
||||
"dataId": 0,
|
||||
"value1": 0,
|
||||
"value2": 200
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 176,
|
||||
"itypeId": 1,
|
||||
"name": "マジックウォーター",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 100,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"animationId": 45,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 4,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 5,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 6,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 7,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 8,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 9,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 10,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 176,
|
||||
"itypeId": 1,
|
||||
"name": "ディスペルハーブ",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 200,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"animationId": 49,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "b.mhp / 2",
|
||||
"type": 3,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 176,
|
||||
"itypeId": 1,
|
||||
"name": "スティミュラント",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 300,
|
||||
"repeats": 1,
|
||||
"scope": 9,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 6,
|
||||
"itypeId": 2,
|
||||
"name": "ステルクZERO",
|
||||
"note": "<拡張説明:\"STERK ZERO\" 通称:ステゼロ \n非常に強いアルコールが特徴のチューハイ。\n嫌な事を忘れることができるという。>",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 154,
|
||||
"itypeId": 2,
|
||||
"name": "学生服",
|
||||
"note": "<拡張説明:近くの学校の指定制服\nしばらく放置されていたが状態は良く、\n青春の香りがする。綾子にはかなりパツパツ。>",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 0,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 188,
|
||||
"itypeId": 2,
|
||||
"name": "ウルトラレアカード",
|
||||
"note": "<拡張説明:レイが落としたレアカード\nこれでもかというほど光り輝くイラストとは対照に、\nテキスト欄はすごくシンプル。>",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 193,
|
||||
"itypeId": 2,
|
||||
"name": "しなびたお札",
|
||||
"note": "<拡張説明:どこかの神社に貼ってあったであろうお札\n墨でお経が書いてあるが達筆すぎて読めない。>",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 79,
|
||||
"itypeId": 2,
|
||||
"name": "キラキラノート",
|
||||
"note": "<拡張説明:誰かが落としたノート\n表紙には色んなシールが貼られており、キラキラしている。>",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 138,
|
||||
"itypeId": 2,
|
||||
"name": "露出狂のコート",
|
||||
"note": "<拡張説明:露出を愛する者の正装\n古くより多くの紳士の間を受け継がれてきた伝統ある一品。\nカシミヤ製。>",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 0,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 306,
|
||||
"itypeId": 2,
|
||||
"name": "PrayStationX",
|
||||
"note": "<拡張説明:大人気ゲームが数多く遊べるゲーム機\n美麗なグラフィックと重厚なサウンドが人気を博す。\n新品のまま数多くの所有者の手を渡り歩くことがある。>",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [
|
||||
{
|
||||
"code": 44,
|
||||
"dataId": 55,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 7,
|
||||
"itypeId": 2,
|
||||
"name": "アナルディルド",
|
||||
"note": "<拡張説明:アナルでの自慰を可能にする性玩具\n現在は入手困難な逸品であり、大きさ、長さ、形状、材質、\n初心者から上級者まで大満足できるオールラウンダー型。>",
|
||||
"occasion": 0,
|
||||
"price": 10000,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 13,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [
|
||||
{
|
||||
"code": 44,
|
||||
"dataId": 57,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 228,
|
||||
"itypeId": 1,
|
||||
"name": "特濃母ミルク500ml",
|
||||
"note": "<拡張説明:綾子の乳房で生成された特濃母乳\nミルクマニアの間で超高額で取引されており、\nコクのある飲み口と甘味、芳醇な香りが飲用欲求を刺激する。>",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [
|
||||
{
|
||||
"code": 44,
|
||||
"dataId": 55,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 7,
|
||||
"itypeId": 2,
|
||||
"name": "極太アナルビーズ",
|
||||
"note": "<拡張説明:一般的な物よりも何倍も大きい上級者向けの性玩具\n挿入するのも一苦労だが、排泄する時の快感はそれ以上。\nこれを日常的に使用する者はSランクアナニストと呼ばれる。>",
|
||||
"occasion": 0,
|
||||
"price": 10000,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 15,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 192,
|
||||
"itypeId": 2,
|
||||
"name": "会員証",
|
||||
"note": "<拡張説明:酒場奥のショーを見るための会員証\n時期毎に入手方法が異なり、\n直近は大食いチャレンジの成功者に渡していた。>",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 16,
|
||||
"animationId": 0,
|
||||
"consumable": false,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [
|
||||
{
|
||||
"code": 44,
|
||||
"dataId": 20,
|
||||
"value1": 1,
|
||||
"value2": 0
|
||||
}
|
||||
],
|
||||
"hitType": 0,
|
||||
"iconIndex": 188,
|
||||
"itypeId": 2,
|
||||
"name": "証明写真",
|
||||
"note": "<拡張説明:綾子のイキ顔が映った証明写真\n男とセックスに興じ、悦ぶ綾子が映っており、\n綾子の淫乱さが証明されている。>",
|
||||
"occasion": 2,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 0,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 17,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 18,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 19,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 20,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
}
|
||||
]
|
||||
36111
www/data/Map001.json
Normal file
36111
www/data/Map001.json
Normal file
File diff suppressed because it is too large
Load diff
68782
www/data/Map002.json
Normal file
68782
www/data/Map002.json
Normal file
File diff suppressed because it is too large
Load diff
6497
www/data/Map003.json
Normal file
6497
www/data/Map003.json
Normal file
File diff suppressed because it is too large
Load diff
10146
www/data/Map004.json
Normal file
10146
www/data/Map004.json
Normal file
File diff suppressed because it is too large
Load diff
466
www/data/Map005.json
Normal file
466
www/data/Map005.json
Normal file
|
|
@ -0,0 +1,466 @@
|
|||
{
|
||||
"autoplayBgm": false,
|
||||
"autoplayBgs": false,
|
||||
"battleback1Name": "SF_Concrete",
|
||||
"battleback2Name": "SF_Hospital",
|
||||
"bgm": {
|
||||
"name": "",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"bgs": {
|
||||
"name": "",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"disableDashing": false,
|
||||
"displayName": "",
|
||||
"encounterList": [],
|
||||
"encounterStep": 30,
|
||||
"height": 7,
|
||||
"note": "",
|
||||
"parallaxLoopX": false,
|
||||
"parallaxLoopY": false,
|
||||
"parallaxName": "",
|
||||
"parallaxShow": true,
|
||||
"parallaxSx": 0,
|
||||
"parallaxSy": 0,
|
||||
"scrollType": 0,
|
||||
"specifyBattleback": true,
|
||||
"tilesetId": 6,
|
||||
"width": 10,
|
||||
"data": [
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
5906,
|
||||
5916,
|
||||
5916,
|
||||
5896,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
5920,
|
||||
7138,
|
||||
7138,
|
||||
5904,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
5920,
|
||||
7144,
|
||||
7144,
|
||||
5904,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
5932,
|
||||
1602,
|
||||
1602,
|
||||
5904,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
7151,
|
||||
1602,
|
||||
1602,
|
||||
5904,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1602,
|
||||
1602,
|
||||
1602,
|
||||
5904,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
1544,
|
||||
5922,
|
||||
5908,
|
||||
5908,
|
||||
5889,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
163,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
161,
|
||||
171,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
169,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
287,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"events": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
8732
www/data/Map006.json
Normal file
8732
www/data/Map006.json
Normal file
File diff suppressed because it is too large
Load diff
31918
www/data/Map007.json
Normal file
31918
www/data/Map007.json
Normal file
File diff suppressed because it is too large
Load diff
3901
www/data/Map008.json
Normal file
3901
www/data/Map008.json
Normal file
File diff suppressed because it is too large
Load diff
22162
www/data/Map009.json
Normal file
22162
www/data/Map009.json
Normal file
File diff suppressed because it is too large
Load diff
5081
www/data/Map010.json
Normal file
5081
www/data/Map010.json
Normal file
File diff suppressed because it is too large
Load diff
1571
www/data/Map011.json
Normal file
1571
www/data/Map011.json
Normal file
File diff suppressed because it is too large
Load diff
5526
www/data/Map012.json
Normal file
5526
www/data/Map012.json
Normal file
File diff suppressed because it is too large
Load diff
5023
www/data/Map013.json
Normal file
5023
www/data/Map013.json
Normal file
File diff suppressed because it is too large
Load diff
30734
www/data/Map014.json
Normal file
30734
www/data/Map014.json
Normal file
File diff suppressed because it is too large
Load diff
6965
www/data/Map015.json
Normal file
6965
www/data/Map015.json
Normal file
File diff suppressed because it is too large
Load diff
1774
www/data/Map016.json
Normal file
1774
www/data/Map016.json
Normal file
File diff suppressed because it is too large
Load diff
7516
www/data/Map017.json
Normal file
7516
www/data/Map017.json
Normal file
File diff suppressed because it is too large
Load diff
23370
www/data/Map018.json
Normal file
23370
www/data/Map018.json
Normal file
File diff suppressed because it is too large
Load diff
1830
www/data/Map019.json
Normal file
1830
www/data/Map019.json
Normal file
File diff suppressed because it is too large
Load diff
11298
www/data/Map020.json
Normal file
11298
www/data/Map020.json
Normal file
File diff suppressed because it is too large
Load diff
1469
www/data/Map021.json
Normal file
1469
www/data/Map021.json
Normal file
File diff suppressed because it is too large
Load diff
4650
www/data/Map022.json
Normal file
4650
www/data/Map022.json
Normal file
File diff suppressed because it is too large
Load diff
10488
www/data/Map023.json
Normal file
10488
www/data/Map023.json
Normal file
File diff suppressed because it is too large
Load diff
1433
www/data/Map024.json
Normal file
1433
www/data/Map024.json
Normal file
File diff suppressed because it is too large
Load diff
7655
www/data/Map025.json
Normal file
7655
www/data/Map025.json
Normal file
File diff suppressed because it is too large
Load diff
33379
www/data/Map026.json
Normal file
33379
www/data/Map026.json
Normal file
File diff suppressed because it is too large
Load diff
381
www/data/Map027.json
Normal file
381
www/data/Map027.json
Normal file
|
|
@ -0,0 +1,381 @@
|
|||
{
|
||||
"autoplayBgm": false,
|
||||
"autoplayBgs": false,
|
||||
"battleback1Name": "SF_Concrete",
|
||||
"battleback2Name": "SF_Hospital",
|
||||
"bgm": {
|
||||
"name": "",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"bgs": {
|
||||
"name": "",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"disableDashing": false,
|
||||
"displayName": "",
|
||||
"encounterList": [],
|
||||
"encounterStep": 30,
|
||||
"height": 7,
|
||||
"note": "",
|
||||
"parallaxLoopX": false,
|
||||
"parallaxLoopY": false,
|
||||
"parallaxName": "",
|
||||
"parallaxShow": true,
|
||||
"parallaxSx": 0,
|
||||
"parallaxSy": 0,
|
||||
"scrollType": 0,
|
||||
"specifyBattleback": true,
|
||||
"tilesetId": 6,
|
||||
"width": 6,
|
||||
"data": [
|
||||
5892,
|
||||
5916,
|
||||
5916,
|
||||
5916,
|
||||
5916,
|
||||
5896,
|
||||
5912,
|
||||
7138,
|
||||
7138,
|
||||
7138,
|
||||
7138,
|
||||
5904,
|
||||
5912,
|
||||
7144,
|
||||
7144,
|
||||
7144,
|
||||
7144,
|
||||
5904,
|
||||
5926,
|
||||
1602,
|
||||
1602,
|
||||
1602,
|
||||
1602,
|
||||
5928,
|
||||
7151,
|
||||
1602,
|
||||
1602,
|
||||
1602,
|
||||
1602,
|
||||
7151,
|
||||
1602,
|
||||
1602,
|
||||
1602,
|
||||
1602,
|
||||
1602,
|
||||
1602,
|
||||
5908,
|
||||
5908,
|
||||
5908,
|
||||
5908,
|
||||
5908,
|
||||
5908,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
139,
|
||||
0,
|
||||
0,
|
||||
163,
|
||||
0,
|
||||
0,
|
||||
162,
|
||||
162,
|
||||
162,
|
||||
171,
|
||||
0,
|
||||
0,
|
||||
170,
|
||||
170,
|
||||
170,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
10,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"events": [
|
||||
null,
|
||||
null,
|
||||
{
|
||||
"id": 2,
|
||||
"name": "EV002",
|
||||
"note": "",
|
||||
"pages": [
|
||||
{
|
||||
"conditions": {
|
||||
"actorId": 1,
|
||||
"actorValid": false,
|
||||
"itemId": 1,
|
||||
"itemValid": false,
|
||||
"selfSwitchCh": "A",
|
||||
"selfSwitchValid": false,
|
||||
"switch1Id": 1,
|
||||
"switch1Valid": false,
|
||||
"switch2Id": 1,
|
||||
"switch2Valid": false,
|
||||
"variableId": 1,
|
||||
"variableValid": false,
|
||||
"variableValue": 0
|
||||
},
|
||||
"directionFix": false,
|
||||
"image": {
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"direction": 2,
|
||||
"pattern": 0,
|
||||
"tileId": 0
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 250,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
{
|
||||
"name": "Move1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 201,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
0,
|
||||
18,
|
||||
10,
|
||||
6,
|
||||
0,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"moveFrequency": 3,
|
||||
"moveRoute": {
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"repeat": true,
|
||||
"skippable": false,
|
||||
"wait": false
|
||||
},
|
||||
"moveSpeed": 3,
|
||||
"moveType": 0,
|
||||
"priorityType": 0,
|
||||
"stepAnime": false,
|
||||
"through": false,
|
||||
"trigger": 1,
|
||||
"walkAnime": true
|
||||
}
|
||||
],
|
||||
"x": 0,
|
||||
"y": 5
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
3046
www/data/Map028.json
Normal file
3046
www/data/Map028.json
Normal file
File diff suppressed because it is too large
Load diff
5374
www/data/Map029.json
Normal file
5374
www/data/Map029.json
Normal file
File diff suppressed because it is too large
Load diff
9832
www/data/Map030.json
Normal file
9832
www/data/Map030.json
Normal file
File diff suppressed because it is too large
Load diff
14086
www/data/Map031.json
Normal file
14086
www/data/Map031.json
Normal file
File diff suppressed because it is too large
Load diff
2513
www/data/Map032.json
Normal file
2513
www/data/Map032.json
Normal file
File diff suppressed because it is too large
Load diff
763
www/data/Map033.json
Normal file
763
www/data/Map033.json
Normal file
|
|
@ -0,0 +1,763 @@
|
|||
{
|
||||
"autoplayBgm": false,
|
||||
"autoplayBgs": false,
|
||||
"battleback1Name": "",
|
||||
"battleback2Name": "",
|
||||
"bgm": {
|
||||
"name": "",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"bgs": {
|
||||
"name": "",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"disableDashing": false,
|
||||
"displayName": "",
|
||||
"encounterList": [],
|
||||
"encounterStep": 30,
|
||||
"height": 11,
|
||||
"note": "",
|
||||
"parallaxLoopX": false,
|
||||
"parallaxLoopY": false,
|
||||
"parallaxName": "",
|
||||
"parallaxShow": true,
|
||||
"parallaxSx": 0,
|
||||
"parallaxSy": 0,
|
||||
"scrollType": 0,
|
||||
"specifyBattleback": false,
|
||||
"tilesetId": 23,
|
||||
"width": 11,
|
||||
"data": [
|
||||
5892,
|
||||
5916,
|
||||
5916,
|
||||
5916,
|
||||
5916,
|
||||
5916,
|
||||
5916,
|
||||
5916,
|
||||
5916,
|
||||
5916,
|
||||
5913,
|
||||
5912,
|
||||
7858,
|
||||
7858,
|
||||
7858,
|
||||
7858,
|
||||
7858,
|
||||
7858,
|
||||
7858,
|
||||
7858,
|
||||
7858,
|
||||
5920,
|
||||
5912,
|
||||
7864,
|
||||
7864,
|
||||
7864,
|
||||
7864,
|
||||
7864,
|
||||
7864,
|
||||
7864,
|
||||
7864,
|
||||
7864,
|
||||
5920,
|
||||
5912,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
5920,
|
||||
5894,
|
||||
5921,
|
||||
5921,
|
||||
5933,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
5931,
|
||||
5915,
|
||||
5912,
|
||||
7858,
|
||||
7858,
|
||||
7862,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
7859,
|
||||
5920,
|
||||
5912,
|
||||
7864,
|
||||
7864,
|
||||
7868,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
7865,
|
||||
5920,
|
||||
5912,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
1566,
|
||||
5920,
|
||||
5918,
|
||||
5921,
|
||||
5921,
|
||||
5921,
|
||||
5921,
|
||||
5921,
|
||||
5925,
|
||||
1566,
|
||||
5923,
|
||||
5921,
|
||||
5927,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5920,
|
||||
1606,
|
||||
5920,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5929,
|
||||
5921,
|
||||
5927,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
360,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
576,
|
||||
577,
|
||||
578,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
488,
|
||||
488,
|
||||
488,
|
||||
0,
|
||||
438,
|
||||
438,
|
||||
438,
|
||||
0,
|
||||
377,
|
||||
0,
|
||||
0,
|
||||
496,
|
||||
496,
|
||||
496,
|
||||
0,
|
||||
579,
|
||||
580,
|
||||
581,
|
||||
0,
|
||||
368,
|
||||
0,
|
||||
0,
|
||||
504,
|
||||
504,
|
||||
504,
|
||||
0,
|
||||
584,
|
||||
585,
|
||||
586,
|
||||
0,
|
||||
376,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
488,
|
||||
488,
|
||||
488,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
429,
|
||||
0,
|
||||
0,
|
||||
496,
|
||||
496,
|
||||
496,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
437,
|
||||
0,
|
||||
0,
|
||||
504,
|
||||
504,
|
||||
504,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
7,
|
||||
3,
|
||||
3,
|
||||
0,
|
||||
3,
|
||||
3,
|
||||
3,
|
||||
1,
|
||||
3,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
7,
|
||||
3,
|
||||
3,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
4,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
13,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"events": []
|
||||
}
|
||||
436
www/data/Map034.json
Normal file
436
www/data/Map034.json
Normal file
|
|
@ -0,0 +1,436 @@
|
|||
{
|
||||
"autoplayBgm": false,
|
||||
"autoplayBgs": false,
|
||||
"battleback1Name": "",
|
||||
"battleback2Name": "",
|
||||
"bgm": {
|
||||
"name": "",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"bgs": {
|
||||
"name": "",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"disableDashing": false,
|
||||
"displayName": "",
|
||||
"encounterList": [],
|
||||
"encounterStep": 30,
|
||||
"height": 8,
|
||||
"note": "",
|
||||
"parallaxLoopX": false,
|
||||
"parallaxLoopY": false,
|
||||
"parallaxName": "",
|
||||
"parallaxShow": true,
|
||||
"parallaxSx": 0,
|
||||
"parallaxSy": 0,
|
||||
"scrollType": 0,
|
||||
"specifyBattleback": false,
|
||||
"tilesetId": 23,
|
||||
"width": 7,
|
||||
"data": [
|
||||
5892,
|
||||
5916,
|
||||
5916,
|
||||
5916,
|
||||
5900,
|
||||
5916,
|
||||
5896,
|
||||
5912,
|
||||
6378,
|
||||
6378,
|
||||
6378,
|
||||
5920,
|
||||
6378,
|
||||
5904,
|
||||
5912,
|
||||
1661,
|
||||
1661,
|
||||
1661,
|
||||
5932,
|
||||
1661,
|
||||
5904,
|
||||
5912,
|
||||
1661,
|
||||
1661,
|
||||
1661,
|
||||
6383,
|
||||
1661,
|
||||
5904,
|
||||
5912,
|
||||
1661,
|
||||
1661,
|
||||
1661,
|
||||
1661,
|
||||
1661,
|
||||
5904,
|
||||
5918,
|
||||
5925,
|
||||
1661,
|
||||
5923,
|
||||
5921,
|
||||
5921,
|
||||
5917,
|
||||
0,
|
||||
5920,
|
||||
1606,
|
||||
5920,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5929,
|
||||
5921,
|
||||
5927,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
171,
|
||||
162,
|
||||
162,
|
||||
0,
|
||||
161,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
170,
|
||||
170,
|
||||
0,
|
||||
169,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
2,
|
||||
2,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"events": [
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"name": "EV001",
|
||||
"note": "",
|
||||
"pages": [
|
||||
{
|
||||
"conditions": {
|
||||
"actorId": 1,
|
||||
"actorValid": false,
|
||||
"itemId": 1,
|
||||
"itemValid": false,
|
||||
"selfSwitchCh": "A",
|
||||
"selfSwitchValid": false,
|
||||
"switch1Id": 1,
|
||||
"switch1Valid": false,
|
||||
"switch2Id": 1,
|
||||
"switch2Valid": false,
|
||||
"variableId": 1,
|
||||
"variableValid": false,
|
||||
"variableValue": 0
|
||||
},
|
||||
"directionFix": false,
|
||||
"image": {
|
||||
"tileId": 0,
|
||||
"characterName": "!Door1",
|
||||
"direction": 2,
|
||||
"pattern": 0,
|
||||
"characterIndex": 4
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"moveFrequency": 3,
|
||||
"moveRoute": {
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"repeat": true,
|
||||
"skippable": false,
|
||||
"wait": false
|
||||
},
|
||||
"moveSpeed": 3,
|
||||
"moveType": 0,
|
||||
"priorityType": 1,
|
||||
"stepAnime": false,
|
||||
"through": false,
|
||||
"trigger": 0,
|
||||
"walkAnime": true
|
||||
}
|
||||
],
|
||||
"x": 5,
|
||||
"y": 3
|
||||
},
|
||||
null
|
||||
]
|
||||
}
|
||||
5369
www/data/Map035.json
Normal file
5369
www/data/Map035.json
Normal file
File diff suppressed because it is too large
Load diff
23892
www/data/Map036.json
Normal file
23892
www/data/Map036.json
Normal file
File diff suppressed because it is too large
Load diff
4436
www/data/Map037.json
Normal file
4436
www/data/Map037.json
Normal file
File diff suppressed because it is too large
Load diff
459
www/data/Map038.json
Normal file
459
www/data/Map038.json
Normal file
|
|
@ -0,0 +1,459 @@
|
|||
{
|
||||
"autoplayBgm": false,
|
||||
"autoplayBgs": false,
|
||||
"battleback1Name": "",
|
||||
"battleback2Name": "",
|
||||
"bgm": {
|
||||
"name": "",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"bgs": {
|
||||
"name": "",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"disableDashing": false,
|
||||
"displayName": "",
|
||||
"encounterList": [],
|
||||
"encounterStep": 30,
|
||||
"height": 8,
|
||||
"note": "",
|
||||
"parallaxLoopX": false,
|
||||
"parallaxLoopY": false,
|
||||
"parallaxName": "",
|
||||
"parallaxShow": true,
|
||||
"parallaxSx": 0,
|
||||
"parallaxSy": 0,
|
||||
"scrollType": 0,
|
||||
"specifyBattleback": false,
|
||||
"tilesetId": 21,
|
||||
"width": 7,
|
||||
"data": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5909,
|
||||
5921,
|
||||
5921,
|
||||
5925,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5912,
|
||||
6378,
|
||||
6378,
|
||||
5920,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5912,
|
||||
1661,
|
||||
1661,
|
||||
5920,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5912,
|
||||
1661,
|
||||
1661,
|
||||
5920,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5918,
|
||||
5925,
|
||||
1661,
|
||||
5920,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5932,
|
||||
1661,
|
||||
5932,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
171,
|
||||
161,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
169,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
4,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
15,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"events": [
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"name": "EV001",
|
||||
"note": "",
|
||||
"pages": [
|
||||
{
|
||||
"conditions": {
|
||||
"actorId": 1,
|
||||
"actorValid": false,
|
||||
"itemId": 1,
|
||||
"itemValid": false,
|
||||
"selfSwitchCh": "A",
|
||||
"selfSwitchValid": false,
|
||||
"switch1Id": 1,
|
||||
"switch1Valid": false,
|
||||
"switch2Id": 1,
|
||||
"switch2Valid": false,
|
||||
"variableId": 1,
|
||||
"variableValid": false,
|
||||
"variableValue": 0
|
||||
},
|
||||
"directionFix": false,
|
||||
"image": {
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"direction": 2,
|
||||
"pattern": 0,
|
||||
"tileId": 0
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 250,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
{
|
||||
"name": "Move1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 201,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
0,
|
||||
28,
|
||||
14,
|
||||
6,
|
||||
4,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"moveFrequency": 3,
|
||||
"moveRoute": {
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"repeat": true,
|
||||
"skippable": false,
|
||||
"wait": false
|
||||
},
|
||||
"moveSpeed": 3,
|
||||
"moveType": 0,
|
||||
"priorityType": 0,
|
||||
"stepAnime": false,
|
||||
"through": false,
|
||||
"trigger": 1,
|
||||
"walkAnime": true
|
||||
}
|
||||
],
|
||||
"x": 2,
|
||||
"y": 6
|
||||
}
|
||||
]
|
||||
}
|
||||
1569
www/data/Map039.json
Normal file
1569
www/data/Map039.json
Normal file
File diff suppressed because it is too large
Load diff
3594
www/data/Map040.json
Normal file
3594
www/data/Map040.json
Normal file
File diff suppressed because it is too large
Load diff
2821
www/data/Map041.json
Normal file
2821
www/data/Map041.json
Normal file
File diff suppressed because it is too large
Load diff
6658
www/data/Map042.json
Normal file
6658
www/data/Map042.json
Normal file
File diff suppressed because it is too large
Load diff
4987
www/data/Map043.json
Normal file
4987
www/data/Map043.json
Normal file
File diff suppressed because it is too large
Load diff
910
www/data/Map044.json
Normal file
910
www/data/Map044.json
Normal file
|
|
@ -0,0 +1,910 @@
|
|||
{
|
||||
"autoplayBgm": true,
|
||||
"autoplayBgs": false,
|
||||
"battleback1Name": "",
|
||||
"battleback2Name": "",
|
||||
"bgm": {
|
||||
"name": "Town1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"bgs": {
|
||||
"name": "",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"disableDashing": false,
|
||||
"displayName": "",
|
||||
"encounterList": [],
|
||||
"encounterStep": 30,
|
||||
"height": 10,
|
||||
"note": "",
|
||||
"parallaxLoopX": false,
|
||||
"parallaxLoopY": false,
|
||||
"parallaxName": "",
|
||||
"parallaxShow": true,
|
||||
"parallaxSx": 0,
|
||||
"parallaxSy": 0,
|
||||
"scrollType": 0,
|
||||
"specifyBattleback": false,
|
||||
"tilesetId": 10,
|
||||
"width": 11,
|
||||
"data": [
|
||||
6756,
|
||||
6780,
|
||||
6764,
|
||||
6780,
|
||||
6780,
|
||||
6780,
|
||||
6780,
|
||||
6780,
|
||||
6780,
|
||||
6760,
|
||||
6752,
|
||||
6776,
|
||||
6282,
|
||||
6784,
|
||||
6282,
|
||||
6282,
|
||||
6282,
|
||||
6282,
|
||||
6282,
|
||||
6282,
|
||||
6768,
|
||||
6752,
|
||||
6776,
|
||||
4010,
|
||||
6784,
|
||||
4002,
|
||||
3988,
|
||||
3988,
|
||||
3988,
|
||||
3988,
|
||||
4004,
|
||||
6768,
|
||||
6752,
|
||||
6776,
|
||||
4000,
|
||||
6796,
|
||||
3984,
|
||||
3968,
|
||||
3968,
|
||||
3968,
|
||||
3968,
|
||||
3992,
|
||||
6792,
|
||||
6780,
|
||||
6776,
|
||||
4000,
|
||||
6287,
|
||||
3984,
|
||||
3968,
|
||||
3968,
|
||||
3968,
|
||||
3968,
|
||||
3992,
|
||||
6283,
|
||||
6286,
|
||||
6776,
|
||||
4009,
|
||||
4001,
|
||||
3997,
|
||||
3996,
|
||||
3996,
|
||||
3996,
|
||||
3996,
|
||||
3998,
|
||||
4001,
|
||||
4001,
|
||||
6754,
|
||||
6772,
|
||||
6772,
|
||||
6772,
|
||||
6772,
|
||||
6772,
|
||||
6772,
|
||||
6772,
|
||||
6772,
|
||||
6772,
|
||||
6772,
|
||||
6780,
|
||||
6780,
|
||||
6780,
|
||||
6780,
|
||||
6780,
|
||||
6780,
|
||||
6780,
|
||||
6780,
|
||||
6780,
|
||||
6780,
|
||||
6780,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
161,
|
||||
0,
|
||||
162,
|
||||
162,
|
||||
162,
|
||||
171,
|
||||
0,
|
||||
171,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
169,
|
||||
0,
|
||||
170,
|
||||
170,
|
||||
170,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38
|
||||
],
|
||||
"events": [
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"name": "EV001",
|
||||
"note": "",
|
||||
"pages": [
|
||||
{
|
||||
"conditions": {
|
||||
"actorId": 1,
|
||||
"actorValid": false,
|
||||
"itemId": 1,
|
||||
"itemValid": false,
|
||||
"selfSwitchCh": "A",
|
||||
"selfSwitchValid": false,
|
||||
"switch1Id": 1,
|
||||
"switch1Valid": false,
|
||||
"switch2Id": 1,
|
||||
"switch2Valid": false,
|
||||
"variableId": 1,
|
||||
"variableValid": false,
|
||||
"variableValue": 0
|
||||
},
|
||||
"directionFix": false,
|
||||
"image": {
|
||||
"tileId": 0,
|
||||
"characterName": "gakuseio",
|
||||
"direction": 8,
|
||||
"pattern": 1,
|
||||
"characterIndex": 6
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 108,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
"<KNHShadow>"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"moveFrequency": 3,
|
||||
"moveRoute": {
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"repeat": true,
|
||||
"skippable": false,
|
||||
"wait": false
|
||||
},
|
||||
"moveSpeed": 3,
|
||||
"moveType": 0,
|
||||
"priorityType": 1,
|
||||
"stepAnime": false,
|
||||
"through": false,
|
||||
"trigger": 0,
|
||||
"walkAnime": true
|
||||
}
|
||||
],
|
||||
"x": 4,
|
||||
"y": 2
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"name": "EV002",
|
||||
"note": "",
|
||||
"pages": [
|
||||
{
|
||||
"conditions": {
|
||||
"actorId": 1,
|
||||
"actorValid": false,
|
||||
"itemId": 1,
|
||||
"itemValid": false,
|
||||
"selfSwitchCh": "A",
|
||||
"selfSwitchValid": false,
|
||||
"switch1Id": 1,
|
||||
"switch1Valid": false,
|
||||
"switch2Id": 1,
|
||||
"switch2Valid": false,
|
||||
"variableId": 1,
|
||||
"variableValid": false,
|
||||
"variableValue": 0
|
||||
},
|
||||
"directionFix": false,
|
||||
"image": {
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"direction": 2,
|
||||
"pattern": 0,
|
||||
"tileId": 0
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 250,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
{
|
||||
"name": "Move1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 201,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
0,
|
||||
43,
|
||||
26,
|
||||
4,
|
||||
2,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"moveFrequency": 3,
|
||||
"moveRoute": {
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"repeat": true,
|
||||
"skippable": false,
|
||||
"wait": false
|
||||
},
|
||||
"moveSpeed": 3,
|
||||
"moveType": 0,
|
||||
"priorityType": 0,
|
||||
"stepAnime": false,
|
||||
"through": false,
|
||||
"trigger": 1,
|
||||
"walkAnime": true
|
||||
}
|
||||
],
|
||||
"x": 10,
|
||||
"y": 5
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"name": "EV003",
|
||||
"note": "",
|
||||
"pages": [
|
||||
{
|
||||
"conditions": {
|
||||
"actorId": 1,
|
||||
"actorValid": false,
|
||||
"itemId": 1,
|
||||
"itemValid": false,
|
||||
"selfSwitchCh": "A",
|
||||
"selfSwitchValid": false,
|
||||
"switch1Id": 1,
|
||||
"switch1Valid": false,
|
||||
"switch2Id": 1,
|
||||
"switch2Valid": false,
|
||||
"variableId": 1,
|
||||
"variableValid": false,
|
||||
"variableValue": 0
|
||||
},
|
||||
"directionFix": false,
|
||||
"image": {
|
||||
"tileId": 0,
|
||||
"characterName": "!SF_Door1",
|
||||
"direction": 2,
|
||||
"pattern": 0,
|
||||
"characterIndex": 1
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"moveFrequency": 3,
|
||||
"moveRoute": {
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"repeat": true,
|
||||
"skippable": false,
|
||||
"wait": false
|
||||
},
|
||||
"moveSpeed": 3,
|
||||
"moveType": 0,
|
||||
"priorityType": 1,
|
||||
"stepAnime": false,
|
||||
"through": false,
|
||||
"trigger": 0,
|
||||
"walkAnime": true
|
||||
}
|
||||
],
|
||||
"x": 1,
|
||||
"y": 4
|
||||
}
|
||||
]
|
||||
}
|
||||
4303
www/data/Map045.json
Normal file
4303
www/data/Map045.json
Normal file
File diff suppressed because it is too large
Load diff
1940
www/data/Map046.json
Normal file
1940
www/data/Map046.json
Normal file
File diff suppressed because it is too large
Load diff
15989
www/data/Map047.json
Normal file
15989
www/data/Map047.json
Normal file
File diff suppressed because it is too large
Load diff
4007
www/data/Map048.json
Normal file
4007
www/data/Map048.json
Normal file
File diff suppressed because it is too large
Load diff
1920
www/data/Map049.json
Normal file
1920
www/data/Map049.json
Normal file
File diff suppressed because it is too large
Load diff
3383
www/data/Map050.json
Normal file
3383
www/data/Map050.json
Normal file
File diff suppressed because it is too large
Load diff
6479
www/data/Map051.json
Normal file
6479
www/data/Map051.json
Normal file
File diff suppressed because it is too large
Load diff
917
www/data/Map052.json
Normal file
917
www/data/Map052.json
Normal file
|
|
@ -0,0 +1,917 @@
|
|||
{
|
||||
"autoplayBgm": true,
|
||||
"autoplayBgs": false,
|
||||
"battleback1Name": "",
|
||||
"battleback2Name": "",
|
||||
"bgm": {
|
||||
"name": "Town1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 70
|
||||
},
|
||||
"bgs": {
|
||||
"name": "",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"disableDashing": false,
|
||||
"displayName": "",
|
||||
"encounterList": [],
|
||||
"encounterStep": 30,
|
||||
"height": 11,
|
||||
"note": "",
|
||||
"parallaxLoopX": false,
|
||||
"parallaxLoopY": false,
|
||||
"parallaxName": "",
|
||||
"parallaxShow": true,
|
||||
"parallaxSx": 0,
|
||||
"parallaxSy": 0,
|
||||
"scrollType": 0,
|
||||
"specifyBattleback": false,
|
||||
"tilesetId": 25,
|
||||
"width": 12,
|
||||
"data": [
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
6002,
|
||||
6012,
|
||||
6012,
|
||||
6012,
|
||||
6012,
|
||||
6012,
|
||||
5992,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
6016,
|
||||
6370,
|
||||
6370,
|
||||
6370,
|
||||
6370,
|
||||
6370,
|
||||
6000,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
6016,
|
||||
6376,
|
||||
6376,
|
||||
6376,
|
||||
6376,
|
||||
6376,
|
||||
6000,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
6016,
|
||||
3234,
|
||||
3220,
|
||||
3220,
|
||||
3220,
|
||||
3236,
|
||||
6000,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
6016,
|
||||
3216,
|
||||
3200,
|
||||
3200,
|
||||
3200,
|
||||
3224,
|
||||
6000,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
6016,
|
||||
3216,
|
||||
3200,
|
||||
3200,
|
||||
3200,
|
||||
3224,
|
||||
6000,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
6016,
|
||||
3216,
|
||||
3200,
|
||||
3200,
|
||||
3200,
|
||||
3224,
|
||||
6000,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
6016,
|
||||
3216,
|
||||
3200,
|
||||
3200,
|
||||
3200,
|
||||
3224,
|
||||
6000,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
6016,
|
||||
3240,
|
||||
3228,
|
||||
3212,
|
||||
3228,
|
||||
3238,
|
||||
6000,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
6025,
|
||||
6017,
|
||||
6029,
|
||||
3244,
|
||||
6027,
|
||||
6017,
|
||||
6013,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
612,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
542,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
15,
|
||||
15,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
530,
|
||||
530,
|
||||
530,
|
||||
604,
|
||||
605,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
538,
|
||||
538,
|
||||
538,
|
||||
43,
|
||||
613,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
756,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
542,
|
||||
764,
|
||||
7,
|
||||
7,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
550,
|
||||
550,
|
||||
7,
|
||||
7,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
558,
|
||||
558,
|
||||
15,
|
||||
15,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
12,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38
|
||||
],
|
||||
"events": [
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"name": "EV001",
|
||||
"note": "",
|
||||
"pages": [
|
||||
{
|
||||
"conditions": {
|
||||
"actorId": 1,
|
||||
"actorValid": false,
|
||||
"itemId": 1,
|
||||
"itemValid": false,
|
||||
"selfSwitchCh": "A",
|
||||
"selfSwitchValid": false,
|
||||
"switch1Id": 1,
|
||||
"switch1Valid": false,
|
||||
"switch2Id": 1,
|
||||
"switch2Valid": false,
|
||||
"variableId": 1,
|
||||
"variableValid": false,
|
||||
"variableValue": 0
|
||||
},
|
||||
"directionFix": false,
|
||||
"image": {
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"direction": 2,
|
||||
"pattern": 0,
|
||||
"tileId": 0
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 250,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
{
|
||||
"name": "Move1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 201,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
0,
|
||||
48,
|
||||
28,
|
||||
4,
|
||||
0,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"moveFrequency": 3,
|
||||
"moveRoute": {
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"repeat": true,
|
||||
"skippable": false,
|
||||
"wait": false
|
||||
},
|
||||
"moveSpeed": 3,
|
||||
"moveType": 0,
|
||||
"priorityType": 0,
|
||||
"stepAnime": false,
|
||||
"through": false,
|
||||
"trigger": 1,
|
||||
"walkAnime": true
|
||||
}
|
||||
],
|
||||
"x": 8,
|
||||
"y": 9
|
||||
},
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
28188
www/data/Map053.json
Normal file
28188
www/data/Map053.json
Normal file
File diff suppressed because it is too large
Load diff
2991
www/data/Map054.json
Normal file
2991
www/data/Map054.json
Normal file
File diff suppressed because it is too large
Load diff
31658
www/data/Map055.json
Normal file
31658
www/data/Map055.json
Normal file
File diff suppressed because it is too large
Load diff
6181
www/data/Map056.json
Normal file
6181
www/data/Map056.json
Normal file
File diff suppressed because it is too large
Load diff
5283
www/data/Map057.json
Normal file
5283
www/data/Map057.json
Normal file
File diff suppressed because it is too large
Load diff
1873
www/data/Map058.json
Normal file
1873
www/data/Map058.json
Normal file
File diff suppressed because it is too large
Load diff
5015
www/data/Map059.json
Normal file
5015
www/data/Map059.json
Normal file
File diff suppressed because it is too large
Load diff
610
www/data/Map060.json
Normal file
610
www/data/Map060.json
Normal file
|
|
@ -0,0 +1,610 @@
|
|||
{
|
||||
"autoplayBgm": true,
|
||||
"autoplayBgs": false,
|
||||
"battleback1Name": "",
|
||||
"battleback2Name": "",
|
||||
"bgm": {
|
||||
"name": "Town1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"bgs": {
|
||||
"name": "",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"disableDashing": false,
|
||||
"displayName": "",
|
||||
"encounterList": [],
|
||||
"encounterStep": 30,
|
||||
"height": 9,
|
||||
"note": "",
|
||||
"parallaxLoopX": false,
|
||||
"parallaxLoopY": false,
|
||||
"parallaxName": "",
|
||||
"parallaxShow": true,
|
||||
"parallaxSx": 0,
|
||||
"parallaxSy": 0,
|
||||
"scrollType": 0,
|
||||
"specifyBattleback": false,
|
||||
"tilesetId": 6,
|
||||
"width": 9,
|
||||
"data": [
|
||||
6708,
|
||||
6732,
|
||||
6732,
|
||||
6732,
|
||||
6732,
|
||||
6732,
|
||||
6732,
|
||||
6732,
|
||||
6712,
|
||||
6728,
|
||||
7138,
|
||||
7138,
|
||||
7138,
|
||||
7138,
|
||||
7138,
|
||||
7138,
|
||||
7138,
|
||||
6720,
|
||||
6728,
|
||||
7144,
|
||||
7144,
|
||||
7144,
|
||||
7144,
|
||||
7144,
|
||||
7144,
|
||||
7144,
|
||||
6720,
|
||||
6728,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
6720,
|
||||
6728,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
6720,
|
||||
6728,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
6720,
|
||||
6728,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
6720,
|
||||
6728,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
1572,
|
||||
6720,
|
||||
6706,
|
||||
6724,
|
||||
6724,
|
||||
6740,
|
||||
1572,
|
||||
6738,
|
||||
6724,
|
||||
6724,
|
||||
6705,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
180,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
923,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
923,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
18,
|
||||
0,
|
||||
0,
|
||||
289,
|
||||
0,
|
||||
0,
|
||||
134,
|
||||
180,
|
||||
0,
|
||||
26,
|
||||
0,
|
||||
180,
|
||||
180,
|
||||
0,
|
||||
0,
|
||||
188,
|
||||
188,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
188,
|
||||
188,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
246,
|
||||
247,
|
||||
246,
|
||||
247,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
342,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
283,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
246,
|
||||
247,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
15,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38,
|
||||
38
|
||||
],
|
||||
"events": [
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"name": "EV001",
|
||||
"note": "",
|
||||
"pages": [
|
||||
{
|
||||
"conditions": {
|
||||
"actorId": 1,
|
||||
"actorValid": false,
|
||||
"itemId": 1,
|
||||
"itemValid": false,
|
||||
"selfSwitchCh": "A",
|
||||
"selfSwitchValid": false,
|
||||
"switch1Id": 1,
|
||||
"switch1Valid": false,
|
||||
"switch2Id": 1,
|
||||
"switch2Valid": false,
|
||||
"variableId": 1,
|
||||
"variableValid": false,
|
||||
"variableValue": 0
|
||||
},
|
||||
"directionFix": false,
|
||||
"image": {
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"direction": 2,
|
||||
"pattern": 0,
|
||||
"tileId": 0
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 250,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
{
|
||||
"name": "Move1",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 201,
|
||||
"indent": 0,
|
||||
"parameters": [
|
||||
0,
|
||||
30,
|
||||
29,
|
||||
14,
|
||||
0,
|
||||
0
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"moveFrequency": 3,
|
||||
"moveRoute": {
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"repeat": true,
|
||||
"skippable": false,
|
||||
"wait": false
|
||||
},
|
||||
"moveSpeed": 3,
|
||||
"moveType": 0,
|
||||
"priorityType": 0,
|
||||
"stepAnime": false,
|
||||
"through": false,
|
||||
"trigger": 1,
|
||||
"walkAnime": true
|
||||
}
|
||||
],
|
||||
"x": 4,
|
||||
"y": 8
|
||||
},
|
||||
null
|
||||
]
|
||||
}
|
||||
1938
www/data/Map061.json
Normal file
1938
www/data/Map061.json
Normal file
File diff suppressed because it is too large
Load diff
2259
www/data/Map062.json
Normal file
2259
www/data/Map062.json
Normal file
File diff suppressed because it is too large
Load diff
6285
www/data/Map063.json
Normal file
6285
www/data/Map063.json
Normal file
File diff suppressed because it is too large
Load diff
2500
www/data/Map064.json
Normal file
2500
www/data/Map064.json
Normal file
File diff suppressed because it is too large
Load diff
2797
www/data/Map065.json
Normal file
2797
www/data/Map065.json
Normal file
File diff suppressed because it is too large
Load diff
4065
www/data/Map066.json
Normal file
4065
www/data/Map066.json
Normal file
File diff suppressed because it is too large
Load diff
22554
www/data/Map067.json
Normal file
22554
www/data/Map067.json
Normal file
File diff suppressed because it is too large
Load diff
9133
www/data/Map068.json
Normal file
9133
www/data/Map068.json
Normal file
File diff suppressed because it is too large
Load diff
1750
www/data/Map069.json
Normal file
1750
www/data/Map069.json
Normal file
File diff suppressed because it is too large
Load diff
4930
www/data/Map070.json
Normal file
4930
www/data/Map070.json
Normal file
File diff suppressed because it is too large
Load diff
1765
www/data/Map071.json
Normal file
1765
www/data/Map071.json
Normal file
File diff suppressed because it is too large
Load diff
2310
www/data/Map072.json
Normal file
2310
www/data/Map072.json
Normal file
File diff suppressed because it is too large
Load diff
11617
www/data/Map073.json
Normal file
11617
www/data/Map073.json
Normal file
File diff suppressed because it is too large
Load diff
8185
www/data/Map074.json
Normal file
8185
www/data/Map074.json
Normal file
File diff suppressed because it is too large
Load diff
645
www/data/Map075.json
Normal file
645
www/data/Map075.json
Normal file
|
|
@ -0,0 +1,645 @@
|
|||
{
|
||||
"autoplayBgm": false,
|
||||
"autoplayBgs": false,
|
||||
"battleback1Name": "SF_Concrete",
|
||||
"battleback2Name": "SF_Hospital",
|
||||
"bgm": {
|
||||
"name": "",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 90
|
||||
},
|
||||
"bgs": {
|
||||
"name": "Quake",
|
||||
"pan": 0,
|
||||
"pitch": 100,
|
||||
"volume": 5
|
||||
},
|
||||
"disableDashing": false,
|
||||
"displayName": "",
|
||||
"encounterList": [],
|
||||
"encounterStep": 30,
|
||||
"height": 9,
|
||||
"note": "",
|
||||
"parallaxLoopX": false,
|
||||
"parallaxLoopY": false,
|
||||
"parallaxName": "",
|
||||
"parallaxShow": true,
|
||||
"parallaxSx": 0,
|
||||
"parallaxSy": 0,
|
||||
"scrollType": 0,
|
||||
"specifyBattleback": false,
|
||||
"tilesetId": 6,
|
||||
"width": 10,
|
||||
"data": [
|
||||
7428,
|
||||
7452,
|
||||
7452,
|
||||
7452,
|
||||
7452,
|
||||
7452,
|
||||
7452,
|
||||
7452,
|
||||
7452,
|
||||
7432,
|
||||
7448,
|
||||
7810,
|
||||
7810,
|
||||
7810,
|
||||
7810,
|
||||
7810,
|
||||
7810,
|
||||
7810,
|
||||
7810,
|
||||
7440,
|
||||
7448,
|
||||
7816,
|
||||
7816,
|
||||
7816,
|
||||
7816,
|
||||
7816,
|
||||
7816,
|
||||
7816,
|
||||
7816,
|
||||
7440,
|
||||
7448,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
7440,
|
||||
7448,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
7440,
|
||||
7448,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
7440,
|
||||
7448,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
1590,
|
||||
7440,
|
||||
7454,
|
||||
7457,
|
||||
7457,
|
||||
7457,
|
||||
7457,
|
||||
7457,
|
||||
7457,
|
||||
7461,
|
||||
1590,
|
||||
7440,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
7468,
|
||||
1590,
|
||||
7440,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
3578,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
3580,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
473,
|
||||
0,
|
||||
0,
|
||||
221,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
288,
|
||||
289,
|
||||
0,
|
||||
467,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
180,
|
||||
180,
|
||||
180,
|
||||
0,
|
||||
465,
|
||||
475,
|
||||
213,
|
||||
213,
|
||||
0,
|
||||
0,
|
||||
188,
|
||||
188,
|
||||
188,
|
||||
299,
|
||||
293,
|
||||
0,
|
||||
221,
|
||||
305,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
301,
|
||||
275,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
410,
|
||||
283,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
438,
|
||||
430,
|
||||
426,
|
||||
466,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
5,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"events": [
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"name": "EV001",
|
||||
"note": "",
|
||||
"pages": [
|
||||
{
|
||||
"conditions": {
|
||||
"actorId": 1,
|
||||
"actorValid": false,
|
||||
"itemId": 1,
|
||||
"itemValid": false,
|
||||
"selfSwitchCh": "A",
|
||||
"selfSwitchValid": false,
|
||||
"switch1Id": 1,
|
||||
"switch1Valid": false,
|
||||
"switch2Id": 1,
|
||||
"switch2Valid": false,
|
||||
"variableId": 1,
|
||||
"variableValid": false,
|
||||
"variableValue": 0
|
||||
},
|
||||
"directionFix": false,
|
||||
"image": {
|
||||
"tileId": 418,
|
||||
"characterName": "",
|
||||
"characterIndex": 0,
|
||||
"direction": 2,
|
||||
"pattern": 0
|
||||
},
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"indent": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"moveFrequency": 3,
|
||||
"moveRoute": {
|
||||
"list": [
|
||||
{
|
||||
"code": 0,
|
||||
"parameters": []
|
||||
}
|
||||
],
|
||||
"repeat": true,
|
||||
"skippable": false,
|
||||
"wait": false
|
||||
},
|
||||
"moveSpeed": 3,
|
||||
"moveType": 0,
|
||||
"priorityType": 0,
|
||||
"stepAnime": false,
|
||||
"through": false,
|
||||
"trigger": 0,
|
||||
"walkAnime": true
|
||||
}
|
||||
],
|
||||
"x": 6,
|
||||
"y": 3
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
2596
www/data/Map076.json
Normal file
2596
www/data/Map076.json
Normal file
File diff suppressed because it is too large
Load diff
16907
www/data/Map077.json
Normal file
16907
www/data/Map077.json
Normal file
File diff suppressed because it is too large
Load diff
2679
www/data/Map078.json
Normal file
2679
www/data/Map078.json
Normal file
File diff suppressed because it is too large
Load diff
13725
www/data/Map079.json
Normal file
13725
www/data/Map079.json
Normal file
File diff suppressed because it is too large
Load diff
2431
www/data/Map080.json
Normal file
2431
www/data/Map080.json
Normal file
File diff suppressed because it is too large
Load diff
13561
www/data/Map081.json
Normal file
13561
www/data/Map081.json
Normal file
File diff suppressed because it is too large
Load diff
8505
www/data/Map082.json
Normal file
8505
www/data/Map082.json
Normal file
File diff suppressed because it is too large
Load diff
1937
www/data/Map083.json
Normal file
1937
www/data/Map083.json
Normal file
File diff suppressed because it is too large
Load diff
1051
www/data/Map084.json
Normal file
1051
www/data/Map084.json
Normal file
File diff suppressed because it is too large
Load diff
25509
www/data/Map085.json
Normal file
25509
www/data/Map085.json
Normal file
File diff suppressed because it is too large
Load diff
9834
www/data/Map086.json
Normal file
9834
www/data/Map086.json
Normal file
File diff suppressed because it is too large
Load diff
5082
www/data/Map087.json
Normal file
5082
www/data/Map087.json
Normal file
File diff suppressed because it is too large
Load diff
4414
www/data/Map088.json
Normal file
4414
www/data/Map088.json
Normal file
File diff suppressed because it is too large
Load diff
55416
www/data/Map089.json
Normal file
55416
www/data/Map089.json
Normal file
File diff suppressed because it is too large
Load diff
1838
www/data/Map090.json
Normal file
1838
www/data/Map090.json
Normal file
File diff suppressed because it is too large
Load diff
25304
www/data/Map091.json
Normal file
25304
www/data/Map091.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