Tama Translation
This commit is contained in:
commit
0ebe7044f8
172 changed files with 1401614 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.
|
||||
20
data/Actors.json
Normal file
20
data/Actors.json
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"battlerName": "",
|
||||
"characterIndex": 5,
|
||||
"characterName": "char chip",
|
||||
"classId": 1,
|
||||
"equips": [],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "Hikaru",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
}
|
||||
]
|
||||
9661
data/Animations.json
Normal file
9661
data/Animations.json
Normal file
File diff suppressed because it is too large
Load diff
3
data/Armors.json
Normal file
3
data/Armors.json
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
[
|
||||
null
|
||||
]
|
||||
1
data/BattleHUD.json
Normal file
1
data/BattleHUD.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
[]
|
||||
916
data/Classes.json
Normal file
916
data/Classes.json
Normal file
|
|
@ -0,0 +1,916 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"expParams": [
|
||||
30,
|
||||
20,
|
||||
30,
|
||||
30
|
||||
],
|
||||
"traits": [
|
||||
{
|
||||
"code": 23,
|
||||
"dataId": 0,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 0,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 1,
|
||||
"value": 0.05
|
||||
},
|
||||
{
|
||||
"code": 22,
|
||||
"dataId": 2,
|
||||
"value": 0.1
|
||||
},
|
||||
{
|
||||
"code": 41,
|
||||
"dataId": 2,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 51,
|
||||
"dataId": 2,
|
||||
"value": 0
|
||||
},
|
||||
{
|
||||
"code": 51,
|
||||
"dataId": 1,
|
||||
"value": 1
|
||||
},
|
||||
{
|
||||
"code": 52,
|
||||
"dataId": 1,
|
||||
"value": 0
|
||||
},
|
||||
{
|
||||
"code": 52,
|
||||
"dataId": 3,
|
||||
"value": 0
|
||||
},
|
||||
{
|
||||
"code": 52,
|
||||
"dataId": 5,
|
||||
"value": 0
|
||||
}
|
||||
],
|
||||
"learnings": [
|
||||
{
|
||||
"level": 2,
|
||||
"note": "",
|
||||
"skillId": 172
|
||||
},
|
||||
{
|
||||
"level": 5,
|
||||
"note": "",
|
||||
"skillId": 173
|
||||
},
|
||||
{
|
||||
"level": 8,
|
||||
"note": "",
|
||||
"skillId": 175
|
||||
},
|
||||
{
|
||||
"level": 12,
|
||||
"note": "",
|
||||
"skillId": 176
|
||||
},
|
||||
{
|
||||
"level": 15,
|
||||
"note": "",
|
||||
"skillId": 174
|
||||
},
|
||||
{
|
||||
"level": 20,
|
||||
"note": "",
|
||||
"skillId": 178
|
||||
}
|
||||
],
|
||||
"name": "College student",
|
||||
"note": "",
|
||||
"params": [
|
||||
[
|
||||
1,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20,
|
||||
20
|
||||
],
|
||||
[
|
||||
0,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10
|
||||
],
|
||||
[
|
||||
1,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10
|
||||
],
|
||||
[
|
||||
1,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10
|
||||
],
|
||||
[
|
||||
1,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10
|
||||
],
|
||||
[
|
||||
1,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10
|
||||
],
|
||||
[
|
||||
1,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10
|
||||
],
|
||||
[
|
||||
1,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10,
|
||||
10
|
||||
]
|
||||
]
|
||||
}
|
||||
]
|
||||
2048
data/CommonEvents.json
Normal file
2048
data/CommonEvents.json
Normal file
File diff suppressed because it is too large
Load diff
1
data/DataEX.json
Normal file
1
data/DataEX.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{}
|
||||
3
data/Enemies.json
Normal file
3
data/Enemies.json
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
[
|
||||
null
|
||||
]
|
||||
783
data/Items.json
Normal file
783
data/Items.json
Normal file
|
|
@ -0,0 +1,783 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "----maze 01----",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "Magical panties that increase likability just by wearing them. They\nare cute white panties.",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 2,
|
||||
"name": "Kanade's panties",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "Magical panties that increase likability just by wearing them.\nSurprisingly, they have a mature design.",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 2,
|
||||
"name": "Tsugumi's panties",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "Magical panties that increase likability just by wearing them.\nFunctional underwear for active women.",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 2,
|
||||
"name": "Akane's Panties",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 5,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "Magic panties that increase likability just by wearing them. Cat\npanties with frills.",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 2,
|
||||
"name": "Renka's panties",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 6,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "----maze 02----",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 7,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "A size that seems like it might spill if held with one hand.",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 2,
|
||||
"name": "Kanae's Bra",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 8,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "Cute underwear in a small size.",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 2,
|
||||
"name": "Tsugumi's Bra",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "Overwhelming! Truly a bullet train!",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 2,
|
||||
"name": "Akane's Bra",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "A bra with plenty of frills and a cat pattern.",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 2,
|
||||
"name": "Renka's Bra",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "----maze 03----",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"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": "A flashlight with a typical shape. Easy to carry compact size.",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "Flashlight",
|
||||
"note": "",
|
||||
"occasion": 3,
|
||||
"price": 0,
|
||||
"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": "A simple copper ring with no decorations.",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "Copper Ring",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 14,
|
||||
"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": 15,
|
||||
"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": 16,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "----maze 04----",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"id": 21,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "----Fishing----",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 22,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "It's a delicious-looking fresh fish.",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "Fish",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 23,
|
||||
"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": 24,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "----Firewood----",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 25,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "It's a dried branch of a tree, completely parched.",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "Branch",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 26,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "Firewood",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 27,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "----Hunting----",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 28,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "It's fresh meat that still retains warmth.",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "Rabbit Meat",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 29,
|
||||
"animationId": 0,
|
||||
"consumable": true,
|
||||
"damage": {
|
||||
"critical": false,
|
||||
"elementId": 0,
|
||||
"formula": "0",
|
||||
"type": 0,
|
||||
"variance": 20
|
||||
},
|
||||
"description": "",
|
||||
"effects": [],
|
||||
"hitType": 0,
|
||||
"iconIndex": 0,
|
||||
"itypeId": 1,
|
||||
"name": "Wild Boar Meat",
|
||||
"note": "",
|
||||
"occasion": 0,
|
||||
"price": 0,
|
||||
"repeats": 1,
|
||||
"scope": 7,
|
||||
"speed": 0,
|
||||
"successRate": 100,
|
||||
"tpGain": 0
|
||||
},
|
||||
{
|
||||
"id": 30,
|
||||
"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
|
||||
}
|
||||
]
|
||||
1363
data/Map001.json
Normal file
1363
data/Map001.json
Normal file
File diff suppressed because it is too large
Load diff
18558
data/Map002.json
Normal file
18558
data/Map002.json
Normal file
File diff suppressed because it is too large
Load diff
4119
data/Map003.json
Normal file
4119
data/Map003.json
Normal file
File diff suppressed because it is too large
Load diff
7047
data/Map004.json
Normal file
7047
data/Map004.json
Normal file
File diff suppressed because it is too large
Load diff
15797
data/Map005.json
Normal file
15797
data/Map005.json
Normal file
File diff suppressed because it is too large
Load diff
1696
data/Map006.json
Normal file
1696
data/Map006.json
Normal file
File diff suppressed because it is too large
Load diff
7023
data/Map007.json
Normal file
7023
data/Map007.json
Normal file
File diff suppressed because it is too large
Load diff
2499
data/Map008.json
Normal file
2499
data/Map008.json
Normal file
File diff suppressed because it is too large
Load diff
2136
data/Map009.json
Normal file
2136
data/Map009.json
Normal file
File diff suppressed because it is too large
Load diff
14468
data/Map010.json
Normal file
14468
data/Map010.json
Normal file
File diff suppressed because it is too large
Load diff
8856
data/Map011.json
Normal file
8856
data/Map011.json
Normal file
File diff suppressed because it is too large
Load diff
1551
data/Map012.json
Normal file
1551
data/Map012.json
Normal file
File diff suppressed because it is too large
Load diff
8219
data/Map013.json
Normal file
8219
data/Map013.json
Normal file
File diff suppressed because it is too large
Load diff
2314
data/Map014.json
Normal file
2314
data/Map014.json
Normal file
File diff suppressed because it is too large
Load diff
11113
data/Map015.json
Normal file
11113
data/Map015.json
Normal file
File diff suppressed because it is too large
Load diff
3413
data/Map016.json
Normal file
3413
data/Map016.json
Normal file
File diff suppressed because it is too large
Load diff
4479
data/Map017.json
Normal file
4479
data/Map017.json
Normal file
File diff suppressed because it is too large
Load diff
6862
data/Map018.json
Normal file
6862
data/Map018.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map019.json
Normal file
1363
data/Map019.json
Normal file
File diff suppressed because it is too large
Load diff
11850
data/Map020.json
Normal file
11850
data/Map020.json
Normal file
File diff suppressed because it is too large
Load diff
18608
data/Map021.json
Normal file
18608
data/Map021.json
Normal file
File diff suppressed because it is too large
Load diff
19889
data/Map022.json
Normal file
19889
data/Map022.json
Normal file
File diff suppressed because it is too large
Load diff
9025
data/Map023.json
Normal file
9025
data/Map023.json
Normal file
File diff suppressed because it is too large
Load diff
7149
data/Map024.json
Normal file
7149
data/Map024.json
Normal file
File diff suppressed because it is too large
Load diff
5727
data/Map025.json
Normal file
5727
data/Map025.json
Normal file
File diff suppressed because it is too large
Load diff
2802
data/Map026.json
Normal file
2802
data/Map026.json
Normal file
File diff suppressed because it is too large
Load diff
7127
data/Map027.json
Normal file
7127
data/Map027.json
Normal file
File diff suppressed because it is too large
Load diff
37129
data/Map028.json
Normal file
37129
data/Map028.json
Normal file
File diff suppressed because it is too large
Load diff
14532
data/Map029.json
Normal file
14532
data/Map029.json
Normal file
File diff suppressed because it is too large
Load diff
2929
data/Map030.json
Normal file
2929
data/Map030.json
Normal file
File diff suppressed because it is too large
Load diff
1810
data/Map031.json
Normal file
1810
data/Map031.json
Normal file
File diff suppressed because it is too large
Load diff
5426
data/Map032.json
Normal file
5426
data/Map032.json
Normal file
File diff suppressed because it is too large
Load diff
5802
data/Map033.json
Normal file
5802
data/Map033.json
Normal file
File diff suppressed because it is too large
Load diff
2831
data/Map034.json
Normal file
2831
data/Map034.json
Normal file
File diff suppressed because it is too large
Load diff
3916
data/Map035.json
Normal file
3916
data/Map035.json
Normal file
File diff suppressed because it is too large
Load diff
12990
data/Map036.json
Normal file
12990
data/Map036.json
Normal file
File diff suppressed because it is too large
Load diff
1713
data/Map037.json
Normal file
1713
data/Map037.json
Normal file
File diff suppressed because it is too large
Load diff
6872
data/Map038.json
Normal file
6872
data/Map038.json
Normal file
File diff suppressed because it is too large
Load diff
1803
data/Map039.json
Normal file
1803
data/Map039.json
Normal file
File diff suppressed because it is too large
Load diff
6432
data/Map040.json
Normal file
6432
data/Map040.json
Normal file
File diff suppressed because it is too large
Load diff
4094
data/Map041.json
Normal file
4094
data/Map041.json
Normal file
File diff suppressed because it is too large
Load diff
6026
data/Map042.json
Normal file
6026
data/Map042.json
Normal file
File diff suppressed because it is too large
Load diff
10573
data/Map043.json
Normal file
10573
data/Map043.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map044.json
Normal file
1363
data/Map044.json
Normal file
File diff suppressed because it is too large
Load diff
1665
data/Map045.json
Normal file
1665
data/Map045.json
Normal file
File diff suppressed because it is too large
Load diff
3926
data/Map046.json
Normal file
3926
data/Map046.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map047.json
Normal file
1363
data/Map047.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map048.json
Normal file
1363
data/Map048.json
Normal file
File diff suppressed because it is too large
Load diff
45191
data/Map049.json
Normal file
45191
data/Map049.json
Normal file
File diff suppressed because it is too large
Load diff
3910
data/Map050.json
Normal file
3910
data/Map050.json
Normal file
File diff suppressed because it is too large
Load diff
3900
data/Map051.json
Normal file
3900
data/Map051.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map053.json
Normal file
1363
data/Map053.json
Normal file
File diff suppressed because it is too large
Load diff
9754
data/Map054.json
Normal file
9754
data/Map054.json
Normal file
File diff suppressed because it is too large
Load diff
7753
data/Map055.json
Normal file
7753
data/Map055.json
Normal file
File diff suppressed because it is too large
Load diff
9293
data/Map057.json
Normal file
9293
data/Map057.json
Normal file
File diff suppressed because it is too large
Load diff
12301
data/Map058.json
Normal file
12301
data/Map058.json
Normal file
File diff suppressed because it is too large
Load diff
13796
data/Map059.json
Normal file
13796
data/Map059.json
Normal file
File diff suppressed because it is too large
Load diff
12328
data/Map060.json
Normal file
12328
data/Map060.json
Normal file
File diff suppressed because it is too large
Load diff
16148
data/Map061.json
Normal file
16148
data/Map061.json
Normal file
File diff suppressed because it is too large
Load diff
17214
data/Map062.json
Normal file
17214
data/Map062.json
Normal file
File diff suppressed because it is too large
Load diff
17810
data/Map063.json
Normal file
17810
data/Map063.json
Normal file
File diff suppressed because it is too large
Load diff
7236
data/Map064.json
Normal file
7236
data/Map064.json
Normal file
File diff suppressed because it is too large
Load diff
2289
data/Map065.json
Normal file
2289
data/Map065.json
Normal file
File diff suppressed because it is too large
Load diff
5792
data/Map066.json
Normal file
5792
data/Map066.json
Normal file
File diff suppressed because it is too large
Load diff
3639
data/Map067.json
Normal file
3639
data/Map067.json
Normal file
File diff suppressed because it is too large
Load diff
1803
data/Map068.json
Normal file
1803
data/Map068.json
Normal file
File diff suppressed because it is too large
Load diff
24237
data/Map069.json
Normal file
24237
data/Map069.json
Normal file
File diff suppressed because it is too large
Load diff
14451
data/Map070.json
Normal file
14451
data/Map070.json
Normal file
File diff suppressed because it is too large
Load diff
5351
data/Map071.json
Normal file
5351
data/Map071.json
Normal file
File diff suppressed because it is too large
Load diff
7335
data/Map072.json
Normal file
7335
data/Map072.json
Normal file
File diff suppressed because it is too large
Load diff
13584
data/Map073.json
Normal file
13584
data/Map073.json
Normal file
File diff suppressed because it is too large
Load diff
12121
data/Map074.json
Normal file
12121
data/Map074.json
Normal file
File diff suppressed because it is too large
Load diff
15736
data/Map075.json
Normal file
15736
data/Map075.json
Normal file
File diff suppressed because it is too large
Load diff
6438
data/Map076.json
Normal file
6438
data/Map076.json
Normal file
File diff suppressed because it is too large
Load diff
29018
data/Map077.json
Normal file
29018
data/Map077.json
Normal file
File diff suppressed because it is too large
Load diff
4656
data/Map078.json
Normal file
4656
data/Map078.json
Normal file
File diff suppressed because it is too large
Load diff
8141
data/Map079.json
Normal file
8141
data/Map079.json
Normal file
File diff suppressed because it is too large
Load diff
19958
data/Map080.json
Normal file
19958
data/Map080.json
Normal file
File diff suppressed because it is too large
Load diff
17602
data/Map081.json
Normal file
17602
data/Map081.json
Normal file
File diff suppressed because it is too large
Load diff
1363
data/Map082.json
Normal file
1363
data/Map082.json
Normal file
File diff suppressed because it is too large
Load diff
15558
data/Map083.json
Normal file
15558
data/Map083.json
Normal file
File diff suppressed because it is too large
Load diff
6983
data/Map084.json
Normal file
6983
data/Map084.json
Normal file
File diff suppressed because it is too large
Load diff
163776
data/Map085.json
Normal file
163776
data/Map085.json
Normal file
File diff suppressed because it is too large
Load diff
5541
data/Map086.json
Normal file
5541
data/Map086.json
Normal file
File diff suppressed because it is too large
Load diff
5921
data/Map087.json
Normal file
5921
data/Map087.json
Normal file
File diff suppressed because it is too large
Load diff
4928
data/Map088.json
Normal file
4928
data/Map088.json
Normal file
File diff suppressed because it is too large
Load diff
10126
data/Map089.json
Normal file
10126
data/Map089.json
Normal file
File diff suppressed because it is too large
Load diff
3786
data/Map090.json
Normal file
3786
data/Map090.json
Normal file
File diff suppressed because it is too large
Load diff
4785
data/Map091.json
Normal file
4785
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