Initial Commit
This commit is contained in:
commit
507c7c45e0
374 changed files with 3748881 additions and 0 deletions
16
.gitignore
vendored
Normal file
16
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# Ignore all files
|
||||
*.*
|
||||
|
||||
# Except
|
||||
!*.json
|
||||
!*.js
|
||||
!*.zip
|
||||
!*.7z
|
||||
!*.csv
|
||||
!.gitignore
|
||||
!README.md
|
||||
package.json
|
||||
|
||||
# Images
|
||||
!menu_P03 ステータス-ちんぽ-ピッグマン270.png
|
||||
!PC001-ero019-03-装飾-入れ墨-bs.png
|
||||
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.
|
||||
87
www/data/Actors.json
Normal file
87
www/data/Actors.json
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
[
|
||||
null,
|
||||
{
|
||||
"id": 1,
|
||||
"battlerName": "Actor1_1",
|
||||
"characterIndex": 3,
|
||||
"characterName": "People4",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
1,
|
||||
1,
|
||||
3
|
||||
],
|
||||
"faceIndex": 37,
|
||||
"faceName": "SuccuVB[BUST][Exp2x3]",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "kei",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 2,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 3,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
},
|
||||
{
|
||||
"id": 4,
|
||||
"battlerName": "",
|
||||
"characterIndex": 0,
|
||||
"characterName": "",
|
||||
"classId": 1,
|
||||
"equips": [
|
||||
0,
|
||||
0,
|
||||
0
|
||||
],
|
||||
"faceIndex": 0,
|
||||
"faceName": "",
|
||||
"traits": [],
|
||||
"initialLevel": 1,
|
||||
"maxLevel": 99,
|
||||
"name": "",
|
||||
"nickname": "",
|
||||
"note": "",
|
||||
"profile": ""
|
||||
}
|
||||
]
|
||||
185028
www/data/Animations.json
Normal file
185028
www/data/Animations.json
Normal file
File diff suppressed because it is too large
Load diff
2703
www/data/Armors.json
Normal file
2703
www/data/Armors.json
Normal file
File diff suppressed because it is too large
Load diff
93
www/data/BattleHUD.json
Normal file
93
www/data/BattleHUD.json
Normal file
|
|
@ -0,0 +1,93 @@
|
|||
{
|
||||
"": [],
|
||||
"test": [
|
||||
{
|
||||
"type": "Text",
|
||||
"Value": "Day: ${$gameVariables.setValue(1,5}",
|
||||
"Condition": "",
|
||||
"Layer": "0",
|
||||
"Font": "GameFont",
|
||||
"Max Width": "150",
|
||||
"Align": "center",
|
||||
"Font Size": "30",
|
||||
"Text Color": "#ffffff",
|
||||
"Text Alpha": "255",
|
||||
"Outline Color": "#000000",
|
||||
"Outline Alpha": "127",
|
||||
"animateInfo": {
|
||||
"x": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
},
|
||||
"y": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
},
|
||||
"s": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 1,
|
||||
"max": 1
|
||||
},
|
||||
"r": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
}
|
||||
},
|
||||
"id": 1,
|
||||
"x": 713,
|
||||
"y": 149
|
||||
}
|
||||
],
|
||||
"NormalUI": [
|
||||
{
|
||||
"type": "Text",
|
||||
"Value": "Day: ${$gameVariables.setValue(1,5}",
|
||||
"Condition": "",
|
||||
"Layer": "0",
|
||||
"Font": "GameFont",
|
||||
"Max Width": "150",
|
||||
"Align": "center",
|
||||
"Font Size": "30",
|
||||
"Text Color": "#ffffff",
|
||||
"Text Alpha": "255",
|
||||
"Outline Color": "#000000",
|
||||
"Outline Alpha": "127",
|
||||
"animateInfo": {
|
||||
"x": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
},
|
||||
"y": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
},
|
||||
"s": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 1,
|
||||
"max": 1
|
||||
},
|
||||
"r": {
|
||||
"spd": 0,
|
||||
"loop": false,
|
||||
"min": 0,
|
||||
"max": 0
|
||||
}
|
||||
},
|
||||
"id": 1,
|
||||
"x": 713,
|
||||
"y": 149
|
||||
}
|
||||
]
|
||||
}
|
||||
3497
www/data/Classes.json
Normal file
3497
www/data/Classes.json
Normal file
File diff suppressed because it is too large
Load diff
520633
www/data/CommonEvents.json
Normal file
520633
www/data/CommonEvents.json
Normal file
File diff suppressed because it is too large
Load diff
227
www/data/ContainerProperties.json
Normal file
227
www/data/ContainerProperties.json
Normal file
|
|
@ -0,0 +1,227 @@
|
|||
{
|
||||
"Scene_Menu": {
|
||||
"WindowLayer": {
|
||||
"0,Window_MenuCommand": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"width": 1024,
|
||||
"height": 72,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 26,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 255,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"3,Window_MenuSingleStatus": {
|
||||
"x": 95,
|
||||
"y": 108,
|
||||
"width": 904,
|
||||
"height": 588,
|
||||
"opacity": 0,
|
||||
"hidden": false,
|
||||
"_customFontSize": 26,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 255,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
}
|
||||
},
|
||||
"Scene_Menu": {
|
||||
"2,Sprite": {
|
||||
"x": 0,
|
||||
"y": 0
|
||||
},
|
||||
"0,Sprite": {
|
||||
"x": 0,
|
||||
"y": 0
|
||||
}
|
||||
}
|
||||
},
|
||||
"Scene_EroStatus": {
|
||||
"WindowLayer": {
|
||||
"0,Window_EroStatus": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"width": 1024,
|
||||
"height": 768,
|
||||
"opacity": 0,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 0,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
"Scene_Map": {
|
||||
"WindowLayer": {
|
||||
"0,Window_Message": {
|
||||
"x": 0,
|
||||
"y": 624,
|
||||
"width": 1024,
|
||||
"height": 144,
|
||||
"opacity": 0,
|
||||
"hidden": false,
|
||||
"_customFontSize": 24,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 255,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"5,Window_Help": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"width": 1024,
|
||||
"height": 144,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 22,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "ready_baseBackground",
|
||||
"_customFontFace": ""
|
||||
}
|
||||
},
|
||||
"Scene_Map": {
|
||||
"2,Sprite": {
|
||||
"x": 0,
|
||||
"y": 0
|
||||
}
|
||||
}
|
||||
},
|
||||
"Scene_Equip": {
|
||||
"WindowLayer": {
|
||||
"2,Window_EquipCommand": {
|
||||
"x": 312,
|
||||
"y": 144,
|
||||
"width": 712,
|
||||
"height": 72,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 20,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 255,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"3,Window_EquipSlot": {
|
||||
"x": 312,
|
||||
"y": 216,
|
||||
"width": 712,
|
||||
"height": 216,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 20,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 255,
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
"Scene_Options": {},
|
||||
"Scene_Save": {
|
||||
"WindowLayer": {
|
||||
"1,Window_SavefileList": {
|
||||
"x": 0,
|
||||
"y": 72,
|
||||
"width": 1024,
|
||||
"height": 696,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": "0",
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"0,Window_Help": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"width": 1024,
|
||||
"height": 72,
|
||||
"opacity": 255,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": "0",
|
||||
"_customBackFileName": "",
|
||||
"_customFontFace": ""
|
||||
}
|
||||
}
|
||||
},
|
||||
"Scene_Item": {},
|
||||
"Scene_Shop": {},
|
||||
"Scene_Quest": {
|
||||
"WindowLayer": {
|
||||
"2,Window_QuestCategories": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"width": 341,
|
||||
"height": 180,
|
||||
"opacity": 0,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "ex1",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"3,Window_QuestList": {
|
||||
"x": 0,
|
||||
"y": 180,
|
||||
"width": 341,
|
||||
"height": 588,
|
||||
"opacity": 0,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "ex2",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"0,Window_QuestData": {
|
||||
"x": 341,
|
||||
"y": 72,
|
||||
"width": 683,
|
||||
"height": 696,
|
||||
"opacity": 0,
|
||||
"hidden": false,
|
||||
"_customFontSize": 24,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "ex3",
|
||||
"_customFontFace": ""
|
||||
},
|
||||
"1,Window_QuestTitle": {
|
||||
"x": 341,
|
||||
"y": 0,
|
||||
"width": 683,
|
||||
"height": 72,
|
||||
"opacity": 0,
|
||||
"hidden": false,
|
||||
"_customFontSize": 28,
|
||||
"_customPadding": 18,
|
||||
"_customLineHeight": 36,
|
||||
"_customBackOpacity": 192,
|
||||
"_customBackFileName": "ex4",
|
||||
"_customFontFace": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
3
www/data/DataEX.json
Normal file
3
www/data/DataEX.json
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"Actors": {}
|
||||
}
|
||||
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
|
||||
]
|
||||
}
|
||||
]
|
||||
8379
www/data/Items.json
Normal file
8379
www/data/Items.json
Normal file
File diff suppressed because it is too large
Load diff
4383
www/data/Map001.json
Normal file
4383
www/data/Map001.json
Normal file
File diff suppressed because it is too large
Load diff
21578
www/data/Map002.json
Normal file
21578
www/data/Map002.json
Normal file
File diff suppressed because it is too large
Load diff
11974
www/data/Map003.json
Normal file
11974
www/data/Map003.json
Normal file
File diff suppressed because it is too large
Load diff
3783
www/data/Map004.json
Normal file
3783
www/data/Map004.json
Normal file
File diff suppressed because it is too large
Load diff
7667
www/data/Map005.json
Normal file
7667
www/data/Map005.json
Normal file
File diff suppressed because it is too large
Load diff
28887
www/data/Map006.json
Normal file
28887
www/data/Map006.json
Normal file
File diff suppressed because it is too large
Load diff
8645
www/data/Map007.json
Normal file
8645
www/data/Map007.json
Normal file
File diff suppressed because it is too large
Load diff
14978
www/data/Map008.json
Normal file
14978
www/data/Map008.json
Normal file
File diff suppressed because it is too large
Load diff
18089
www/data/Map009.json
Normal file
18089
www/data/Map009.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map010.json
Normal file
1363
www/data/Map010.json
Normal file
File diff suppressed because it is too large
Load diff
2523
www/data/Map011.json
Normal file
2523
www/data/Map011.json
Normal file
File diff suppressed because it is too large
Load diff
9808
www/data/Map012.json
Normal file
9808
www/data/Map012.json
Normal file
File diff suppressed because it is too large
Load diff
7882
www/data/Map014.json
Normal file
7882
www/data/Map014.json
Normal file
File diff suppressed because it is too large
Load diff
4383
www/data/Map015.json
Normal file
4383
www/data/Map015.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map016.json
Normal file
1363
www/data/Map016.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map017.json
Normal file
1363
www/data/Map017.json
Normal file
File diff suppressed because it is too large
Load diff
5313
www/data/Map018.json
Normal file
5313
www/data/Map018.json
Normal file
File diff suppressed because it is too large
Load diff
28699
www/data/Map019.json
Normal file
28699
www/data/Map019.json
Normal file
File diff suppressed because it is too large
Load diff
30114
www/data/Map020.json
Normal file
30114
www/data/Map020.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map021.json
Normal file
1363
www/data/Map021.json
Normal file
File diff suppressed because it is too large
Load diff
26070
www/data/Map022.json
Normal file
26070
www/data/Map022.json
Normal file
File diff suppressed because it is too large
Load diff
2186
www/data/Map023.json
Normal file
2186
www/data/Map023.json
Normal file
File diff suppressed because it is too large
Load diff
20266
www/data/Map024.json
Normal file
20266
www/data/Map024.json
Normal file
File diff suppressed because it is too large
Load diff
5018
www/data/Map025.json
Normal file
5018
www/data/Map025.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map026.json
Normal file
1363
www/data/Map026.json
Normal file
File diff suppressed because it is too large
Load diff
5367
www/data/Map027.json
Normal file
5367
www/data/Map027.json
Normal file
File diff suppressed because it is too large
Load diff
4815
www/data/Map028.json
Normal file
4815
www/data/Map028.json
Normal file
File diff suppressed because it is too large
Load diff
1625
www/data/Map029.json
Normal file
1625
www/data/Map029.json
Normal file
File diff suppressed because it is too large
Load diff
100929
www/data/Map030.json
Normal file
100929
www/data/Map030.json
Normal file
File diff suppressed because it is too large
Load diff
6969
www/data/Map031.json
Normal file
6969
www/data/Map031.json
Normal file
File diff suppressed because it is too large
Load diff
5835
www/data/Map032.json
Normal file
5835
www/data/Map032.json
Normal file
File diff suppressed because it is too large
Load diff
8105
www/data/Map033.json
Normal file
8105
www/data/Map033.json
Normal file
File diff suppressed because it is too large
Load diff
4387
www/data/Map034.json
Normal file
4387
www/data/Map034.json
Normal file
File diff suppressed because it is too large
Load diff
22017
www/data/Map035.json
Normal file
22017
www/data/Map035.json
Normal file
File diff suppressed because it is too large
Load diff
11850
www/data/Map036.json
Normal file
11850
www/data/Map036.json
Normal file
File diff suppressed because it is too large
Load diff
5107
www/data/Map037.json
Normal file
5107
www/data/Map037.json
Normal file
File diff suppressed because it is too large
Load diff
10620
www/data/Map038.json
Normal file
10620
www/data/Map038.json
Normal file
File diff suppressed because it is too large
Load diff
4291
www/data/Map039.json
Normal file
4291
www/data/Map039.json
Normal file
File diff suppressed because it is too large
Load diff
16534
www/data/Map040.json
Normal file
16534
www/data/Map040.json
Normal file
File diff suppressed because it is too large
Load diff
1391
www/data/Map041.json
Normal file
1391
www/data/Map041.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map042.json
Normal file
1363
www/data/Map042.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map043.json
Normal file
1363
www/data/Map043.json
Normal file
File diff suppressed because it is too large
Load diff
5590
www/data/Map044.json
Normal file
5590
www/data/Map044.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map045.json
Normal file
1363
www/data/Map045.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map046.json
Normal file
1363
www/data/Map046.json
Normal file
File diff suppressed because it is too large
Load diff
6143
www/data/Map047.json
Normal file
6143
www/data/Map047.json
Normal file
File diff suppressed because it is too large
Load diff
5427
www/data/Map048.json
Normal file
5427
www/data/Map048.json
Normal file
File diff suppressed because it is too large
Load diff
1668
www/data/Map049.json
Normal file
1668
www/data/Map049.json
Normal file
File diff suppressed because it is too large
Load diff
100899
www/data/Map050.json
Normal file
100899
www/data/Map050.json
Normal file
File diff suppressed because it is too large
Load diff
2588
www/data/Map051.json
Normal file
2588
www/data/Map051.json
Normal file
File diff suppressed because it is too large
Load diff
9217
www/data/Map053.json
Normal file
9217
www/data/Map053.json
Normal file
File diff suppressed because it is too large
Load diff
6355
www/data/Map054.json
Normal file
6355
www/data/Map054.json
Normal file
File diff suppressed because it is too large
Load diff
5097
www/data/Map055.json
Normal file
5097
www/data/Map055.json
Normal file
File diff suppressed because it is too large
Load diff
13567
www/data/Map056.json
Normal file
13567
www/data/Map056.json
Normal file
File diff suppressed because it is too large
Load diff
5510
www/data/Map057.json
Normal file
5510
www/data/Map057.json
Normal file
File diff suppressed because it is too large
Load diff
9231
www/data/Map058.json
Normal file
9231
www/data/Map058.json
Normal file
File diff suppressed because it is too large
Load diff
8127
www/data/Map059.json
Normal file
8127
www/data/Map059.json
Normal file
File diff suppressed because it is too large
Load diff
1910
www/data/Map060.json
Normal file
1910
www/data/Map060.json
Normal file
File diff suppressed because it is too large
Load diff
13689
www/data/Map061.json
Normal file
13689
www/data/Map061.json
Normal file
File diff suppressed because it is too large
Load diff
1581
www/data/Map062.json
Normal file
1581
www/data/Map062.json
Normal file
File diff suppressed because it is too large
Load diff
9673
www/data/Map063.json
Normal file
9673
www/data/Map063.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map064.json
Normal file
1363
www/data/Map064.json
Normal file
File diff suppressed because it is too large
Load diff
7667
www/data/Map065.json
Normal file
7667
www/data/Map065.json
Normal file
File diff suppressed because it is too large
Load diff
7709
www/data/Map066.json
Normal file
7709
www/data/Map066.json
Normal file
File diff suppressed because it is too large
Load diff
7872
www/data/Map067.json
Normal file
7872
www/data/Map067.json
Normal file
File diff suppressed because it is too large
Load diff
9693
www/data/Map069.json
Normal file
9693
www/data/Map069.json
Normal file
File diff suppressed because it is too large
Load diff
14610
www/data/Map070.json
Normal file
14610
www/data/Map070.json
Normal file
File diff suppressed because it is too large
Load diff
9801
www/data/Map071.json
Normal file
9801
www/data/Map071.json
Normal file
File diff suppressed because it is too large
Load diff
2146
www/data/Map072.json
Normal file
2146
www/data/Map072.json
Normal file
File diff suppressed because it is too large
Load diff
3436
www/data/Map073.json
Normal file
3436
www/data/Map073.json
Normal file
File diff suppressed because it is too large
Load diff
18348
www/data/Map074.json
Normal file
18348
www/data/Map074.json
Normal file
File diff suppressed because it is too large
Load diff
13730
www/data/Map075.json
Normal file
13730
www/data/Map075.json
Normal file
File diff suppressed because it is too large
Load diff
7421
www/data/Map076.json
Normal file
7421
www/data/Map076.json
Normal file
File diff suppressed because it is too large
Load diff
12594
www/data/Map077.json
Normal file
12594
www/data/Map077.json
Normal file
File diff suppressed because it is too large
Load diff
4148
www/data/Map078.json
Normal file
4148
www/data/Map078.json
Normal file
File diff suppressed because it is too large
Load diff
8605
www/data/Map079.json
Normal file
8605
www/data/Map079.json
Normal file
File diff suppressed because it is too large
Load diff
7322
www/data/Map082.json
Normal file
7322
www/data/Map082.json
Normal file
File diff suppressed because it is too large
Load diff
10464
www/data/Map083.json
Normal file
10464
www/data/Map083.json
Normal file
File diff suppressed because it is too large
Load diff
3157
www/data/Map084.json
Normal file
3157
www/data/Map084.json
Normal file
File diff suppressed because it is too large
Load diff
1363
www/data/Map085.json
Normal file
1363
www/data/Map085.json
Normal file
File diff suppressed because it is too large
Load diff
7507
www/data/Map086.json
Normal file
7507
www/data/Map086.json
Normal file
File diff suppressed because it is too large
Load diff
1767
www/data/Map087.json
Normal file
1767
www/data/Map087.json
Normal file
File diff suppressed because it is too large
Load diff
2985
www/data/Map088.json
Normal file
2985
www/data/Map088.json
Normal file
File diff suppressed because it is too large
Load diff
2598
www/data/Map089.json
Normal file
2598
www/data/Map089.json
Normal file
File diff suppressed because it is too large
Load diff
4236
www/data/Map090.json
Normal file
4236
www/data/Map090.json
Normal file
File diff suppressed because it is too large
Load diff
9281
www/data/Map091.json
Normal file
9281
www/data/Map091.json
Normal file
File diff suppressed because it is too large
Load diff
7562
www/data/Map092.json
Normal file
7562
www/data/Map092.json
Normal file
File diff suppressed because it is too large
Load diff
5869
www/data/Map093.json
Normal file
5869
www/data/Map093.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