Initial Commit

This commit is contained in:
Dazed 2024-03-11 15:32:20 -05:00
commit 6d3f62c035
174 changed files with 1567076 additions and 0 deletions

32
.gitignore vendored Normal file
View file

@ -0,0 +1,32 @@
# Ignore all files
*.*
# Except
!*.json
!*.js
!*.zip
!*.7z
!*.csv
!*.ain
!*.fnl
!*.ks
!*.tjs
!*.yaml
!Data/*
!*.rb
!.gitignore
!README.md
!game.ini
# Images
!NE_0.rpgmvp
!NE_e2.rpgmvp
!NE_e3.rpgmvp
!NE_e4.rpgmvp
!NE_e5.rpgmvp
!NE_e6.rpgmvp
!NE_s2.rpgmvp
!NE_s3.rpgmvp
!NE_s4.rpgmvp
!NE_s5.rpgmvp
!NE_s6.rpgmvp

49
README.md Normal file
View 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. ![image](https://github.com/DazedMTL/Dungeon-With-Girl/assets/96628874/7a84b624-32fe-4845-a0f6-2b9f39795070)
* 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.
![image](https://github.com/DazedMTL/Dungeon-With-Girl/assets/96628874/61e818e6-11f9-450d-9d7d-263d109dbf56)
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.
![image](https://github.com/DazedMTL/Dungeon-With-Girl/assets/96628874/c19787a0-172d-4a08-a37a-e3b56e70e86a)
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.
![image](https://github.com/DazedMTL/Dungeon-With-Girl/assets/96628874/589eccaf-7f86-43f7-a917-7e6e477b381a)
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.
![image](https://github.com/DazedMTL/Dungeon-With-Girl/assets/96628874/a9a8973b-bc01-4184-bea9-63a925d961a2)
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.

12
package.json Normal file
View file

@ -0,0 +1,12 @@
{
"name": "",
"main": "www/index.html",
"js-flags": "--expose-gc",
"window": {
"title": "",
"toolbar": false,
"width": 816,
"height": 624,
"icon": "www/icon/icon.png"
}
}

49
www/data/Actors.json Normal file
View file

@ -0,0 +1,49 @@
[
null,
{
"id": 1,
"battlerName": "",
"characterIndex": 0,
"characterName": "2NEWNatsuGame",
"classId": 5,
"equips": [
5,
1,
0,
0,
0
],
"faceIndex": 0,
"faceName": "memerisu1",
"traits": [],
"initialLevel": 1,
"maxLevel": 99,
"name": "メメリス",
"nickname": "一般メスガキ",
"note": "",
"profile": "遊ぶ金欲しさにダンジョンにある秘宝を目指して冒険に出た\n自称、超絶美少女。スマホより重い物は持ちたくないらしい。"
},
{
"id": 2,
"battlerName": "",
"characterIndex": 1,
"characterName": "2NEWNatsuGame",
"classId": 6,
"equips": [
6,
0,
0,
0,
0
],
"faceIndex": 0,
"faceName": "thina1",
"traits": [],
"initialLevel": 1,
"maxLevel": 99,
"name": "ティーナ",
"nickname": "おっぱい担当",
"note": "",
"profile": "女神のご加護を受けた豊満すぎる聖女。\nしかしまだ成長が続いているとの噂も…。"
}
]

129762
www/data/Animations.json Normal file

File diff suppressed because it is too large Load diff

1418
www/data/Armors.json Normal file

File diff suppressed because it is too large Load diff

8910
www/data/Classes.json Normal file

File diff suppressed because it is too large Load diff

9053
www/data/CommonEvents.json Normal file

File diff suppressed because it is too large Load diff

5679
www/data/Enemies.json Normal file

File diff suppressed because it is too large Load diff

5817
www/data/Items.json Normal file

File diff suppressed because it is too large Load diff

1409
www/data/Map001.json Normal file

File diff suppressed because it is too large Load diff

1372
www/data/Map002.json Normal file

File diff suppressed because it is too large Load diff

6215
www/data/Map003.json Normal file

File diff suppressed because it is too large Load diff

9010
www/data/Map004.json Normal file

File diff suppressed because it is too large Load diff

4609
www/data/Map005.json Normal file

File diff suppressed because it is too large Load diff

3468
www/data/Map006.json Normal file

File diff suppressed because it is too large Load diff

2744
www/data/Map007.json Normal file

File diff suppressed because it is too large Load diff

5780
www/data/Map008.json Normal file

File diff suppressed because it is too large Load diff

4559
www/data/Map009.json Normal file

File diff suppressed because it is too large Load diff

3033
www/data/Map010.json Normal file

File diff suppressed because it is too large Load diff

18262
www/data/Map011.json Normal file

File diff suppressed because it is too large Load diff

15611
www/data/Map012.json Normal file

File diff suppressed because it is too large Load diff

4535
www/data/Map013.json Normal file

File diff suppressed because it is too large Load diff

14118
www/data/Map014.json Normal file

File diff suppressed because it is too large Load diff

5725
www/data/Map015.json Normal file

File diff suppressed because it is too large Load diff

8791
www/data/Map016.json Normal file

File diff suppressed because it is too large Load diff

6239
www/data/Map017.json Normal file

File diff suppressed because it is too large Load diff

8084
www/data/Map018.json Normal file

File diff suppressed because it is too large Load diff

16483
www/data/Map019.json Normal file

File diff suppressed because it is too large Load diff

3330
www/data/Map020.json Normal file

File diff suppressed because it is too large Load diff

4950
www/data/Map021.json Normal file

File diff suppressed because it is too large Load diff

7061
www/data/Map022.json Normal file

File diff suppressed because it is too large Load diff

9262
www/data/Map023.json Normal file

File diff suppressed because it is too large Load diff

14048
www/data/Map024.json Normal file

File diff suppressed because it is too large Load diff

6950
www/data/Map025.json Normal file

File diff suppressed because it is too large Load diff

20131
www/data/Map026.json Normal file

File diff suppressed because it is too large Load diff

155391
www/data/Map027.json Normal file

File diff suppressed because it is too large Load diff

3535
www/data/Map028.json Normal file

File diff suppressed because it is too large Load diff

1738
www/data/Map029.json Normal file

File diff suppressed because it is too large Load diff

15652
www/data/Map030.json Normal file

File diff suppressed because it is too large Load diff

11296
www/data/Map031.json Normal file

File diff suppressed because it is too large Load diff

4736
www/data/Map032.json Normal file

File diff suppressed because it is too large Load diff

50696
www/data/Map033.json Normal file

File diff suppressed because it is too large Load diff

25908
www/data/Map034.json Normal file

File diff suppressed because it is too large Load diff

2266
www/data/Map035.json Normal file

File diff suppressed because it is too large Load diff

7685
www/data/Map036.json Normal file

File diff suppressed because it is too large Load diff

25097
www/data/Map037.json Normal file

File diff suppressed because it is too large Load diff

23479
www/data/Map038.json Normal file

File diff suppressed because it is too large Load diff

2799
www/data/Map039.json Normal file

File diff suppressed because it is too large Load diff

5799
www/data/Map040.json Normal file

File diff suppressed because it is too large Load diff

2716
www/data/Map041.json Normal file

File diff suppressed because it is too large Load diff

9114
www/data/Map042.json Normal file

File diff suppressed because it is too large Load diff

13834
www/data/Map043.json Normal file

File diff suppressed because it is too large Load diff

4991
www/data/Map044.json Normal file

File diff suppressed because it is too large Load diff

3912
www/data/Map045.json Normal file

File diff suppressed because it is too large Load diff

1229
www/data/Map046.json Normal file

File diff suppressed because it is too large Load diff

1758
www/data/Map047.json Normal file

File diff suppressed because it is too large Load diff

8117
www/data/Map048.json Normal file

File diff suppressed because it is too large Load diff

9824
www/data/Map049.json Normal file

File diff suppressed because it is too large Load diff

8130
www/data/Map050.json Normal file

File diff suppressed because it is too large Load diff

21239
www/data/Map051.json Normal file

File diff suppressed because it is too large Load diff

1538
www/data/Map052.json Normal file

File diff suppressed because it is too large Load diff

3667
www/data/Map053.json Normal file

File diff suppressed because it is too large Load diff

7147
www/data/Map054.json Normal file

File diff suppressed because it is too large Load diff

955
www/data/Map055.json Normal file
View file

@ -0,0 +1,955 @@
{
"autoplayBgm": true,
"autoplayBgs": false,
"battleback1Name": "",
"battleback2Name": "",
"bgm": {
"name": "oti ha nai",
"pan": 0,
"pitch": 100,
"volume": 100
},
"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": 3,
"width": 9,
"data": [
7428,
7452,
7452,
7452,
7452,
7452,
7452,
7452,
7432,
7448,
7810,
7810,
7810,
7810,
7810,
7810,
7810,
7440,
7448,
7816,
7816,
7816,
7816,
7816,
7816,
7816,
7440,
7448,
2946,
2932,
2932,
2932,
2932,
2932,
2948,
7440,
7448,
2928,
2912,
2912,
2912,
2912,
2912,
2936,
7440,
7448,
2930,
2940,
2940,
2940,
2940,
2940,
2937,
7440,
7448,
2944,
4098,
4084,
4084,
4084,
4100,
2944,
7440,
7448,
2944,
4080,
4064,
4064,
4064,
4088,
2944,
7440,
7448,
2956,
4104,
4092,
4076,
4092,
4102,
2956,
7440,
7426,
7444,
7444,
7460,
4096,
7458,
7444,
7444,
7425,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
3579,
3569,
3569,
3569,
3569,
3569,
3581,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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,
0,
0,
0,
0,
399,
398,
397,
169,
396,
394,
390,
0,
0,
0,
0,
0,
0,
0,
373,
375,
0,
0,
411,
371,
0,
0,
0,
0,
374,
0,
0,
344,
354,
0,
0,
0,
380,
383,
0,
0,
422,
0,
0,
0,
0,
0,
415,
0,
0,
421,
0,
0,
0,
0,
0,
414,
0,
0,
413,
0,
0,
0,
0,
0,
423,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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,
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,
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": "People2",
"direction": 2,
"pattern": 1,
"characterIndex": 7
},
"list": [
{
"code": 101,
"indent": 0,
"parameters": [
"",
0,
0,
2
]
},
{
"code": 401,
"indent": 0,
"parameters": [
"コスプレショップにようこそ♪"
]
},
{
"code": 401,
"indent": 0,
"parameters": [
"ちょっとエッチな衣装でいつもと違う貴方に出会えるかも♥"
]
},
{
"code": 302,
"indent": 0,
"parameters": [
2,
13,
0,
0,
true
]
},
{
"code": 605,
"indent": 0,
"parameters": [
2,
12,
0,
0
]
},
{
"code": 605,
"indent": 0,
"parameters": [
2,
14,
0,
0
]
},
{
"code": 605,
"indent": 0,
"parameters": [
2,
15,
0,
0
]
},
{
"code": 605,
"indent": 0,
"parameters": [
0,
27,
0,
0
]
},
{
"code": 605,
"indent": 0,
"parameters": [
0,
29,
0,
0
]
},
{
"code": 605,
"indent": 0,
"parameters": [
2,
16,
0,
0
]
},
{
"code": 605,
"indent": 0,
"parameters": [
0,
36,
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": 1,
"stepAnime": false,
"through": false,
"trigger": 0,
"walkAnime": true
}
],
"x": 4,
"y": 4
},
{
"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,
30,
8,
35,
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": 9
},
{
"id": 3,
"name": "EV003",
"note": "",
"pages": [
{
"conditions": {
"actorId": 1,
"actorValid": false,
"itemId": 1,
"itemValid": false,
"selfSwitchCh": "A",
"selfSwitchValid": false,
"switch1Id": 3,
"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": 213,
"indent": 0,
"parameters": [
1,
1,
true
]
},
{
"code": 230,
"indent": 0,
"parameters": [
10
]
},
{
"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": 4,
"walkAnime": true
},
{
"conditions": {
"actorId": 1,
"actorValid": false,
"itemId": 1,
"itemValid": false,
"selfSwitchCh": "A",
"selfSwitchValid": false,
"switch1Id": 1,
"switch1Valid": true,
"switch2Id": 1,
"switch2Valid": false,
"variableId": 1,
"variableValid": false,
"variableValue": 0
},
"directionFix": false,
"image": {
"characterIndex": 0,
"characterName": "",
"direction": 2,
"pattern": 0,
"tileId": 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": 5,
"y": 3
}
]
}

11112
www/data/Map056.json Normal file

File diff suppressed because it is too large Load diff

6839
www/data/Map057.json Normal file

File diff suppressed because it is too large Load diff

8921
www/data/Map058.json Normal file

File diff suppressed because it is too large Load diff

5097
www/data/Map059.json Normal file

File diff suppressed because it is too large Load diff

3970
www/data/Map060.json Normal file

File diff suppressed because it is too large Load diff

2320
www/data/Map061.json Normal file

File diff suppressed because it is too large Load diff

6725
www/data/Map062.json Normal file

File diff suppressed because it is too large Load diff

5395
www/data/Map063.json Normal file

File diff suppressed because it is too large Load diff

8685
www/data/Map064.json Normal file

File diff suppressed because it is too large Load diff

8554
www/data/Map065.json Normal file

File diff suppressed because it is too large Load diff

12702
www/data/Map066.json Normal file

File diff suppressed because it is too large Load diff

6430
www/data/Map067.json Normal file

File diff suppressed because it is too large Load diff

7050
www/data/Map068.json Normal file

File diff suppressed because it is too large Load diff

10129
www/data/Map069.json Normal file

File diff suppressed because it is too large Load diff

1719
www/data/Map070.json Normal file

File diff suppressed because it is too large Load diff

17442
www/data/Map071.json Normal file

File diff suppressed because it is too large Load diff

7417
www/data/Map072.json Normal file

File diff suppressed because it is too large Load diff

17697
www/data/Map073.json Normal file

File diff suppressed because it is too large Load diff

3088
www/data/Map074.json Normal file

File diff suppressed because it is too large Load diff

12617
www/data/Map075.json Normal file

File diff suppressed because it is too large Load diff

12355
www/data/Map076.json Normal file

File diff suppressed because it is too large Load diff

21087
www/data/Map077.json Normal file

File diff suppressed because it is too large Load diff

11056
www/data/Map078.json Normal file

File diff suppressed because it is too large Load diff

10932
www/data/Map079.json Normal file

File diff suppressed because it is too large Load diff

7399
www/data/Map080.json Normal file

File diff suppressed because it is too large Load diff

3931
www/data/Map081.json Normal file

File diff suppressed because it is too large Load diff

1647
www/data/Map082.json Normal file

File diff suppressed because it is too large Load diff

969
www/data/Map083.json Normal file
View file

@ -0,0 +1,969 @@
{
"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": 2,
"width": 9,
"data": [
6084,
6108,
6108,
6108,
6108,
6108,
6108,
6108,
6088,
6104,
5706,
5706,
5706,
5706,
5706,
5706,
5706,
6096,
6104,
1570,
1570,
1570,
1570,
1570,
1570,
1570,
6096,
6104,
1570,
1570,
1570,
1570,
1570,
1570,
1570,
6096,
6104,
1570,
1570,
1570,
1570,
1570,
1570,
1570,
6096,
6104,
1570,
1570,
1570,
1570,
1570,
1570,
1570,
6096,
6104,
1570,
1570,
1570,
1570,
1570,
1570,
1570,
6096,
6082,
6100,
6100,
6116,
1570,
6114,
6100,
6100,
6081,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
3194,
3571,
3581,
0,
0,
3582,
3194,
0,
0,
3196,
3580,
0,
0,
0,
0,
3196,
0,
0,
3578,
0,
0,
0,
0,
0,
3578,
0,
0,
3568,
0,
3198,
0,
0,
0,
3568,
0,
0,
3577,
3581,
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,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
220,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
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,
43,
3,
8,
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": 7
},
{
"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": {
"tileId": 0,
"characterName": "!Flame",
"direction": 2,
"pattern": 1,
"characterIndex": 6
},
"list": [
{
"code": 250,
"indent": 0,
"parameters": [
{
"name": "Item1",
"volume": 80,
"pitch": 100,
"pan": 0
}
]
},
{
"code": 101,
"indent": 0,
"parameters": [
"",
0,
0,
2
]
},
{
"code": 401,
"indent": 0,
"parameters": [
"この先はバッドエンドルートになります。"
]
},
{
"code": 401,
"indent": 0,
"parameters": [
"バッドエンドが確定するのでご注意ください。"
]
},
{
"code": 101,
"indent": 0,
"parameters": [
"",
0,
0,
2
]
},
{
"code": 401,
"indent": 0,
"parameters": [
"バッドエンドルートに進みますか?"
]
},
{
"code": 102,
"indent": 0,
"parameters": [
[
"はい",
"いいえ"
],
1,
0,
2,
0
]
},
{
"code": 402,
"indent": 0,
"parameters": [
0,
"はい"
]
},
{
"code": 101,
"indent": 1,
"parameters": [
"memerisu1",
0,
0,
2
]
},
{
"code": 401,
"indent": 1,
"parameters": [
"よし、進もう!"
]
},
{
"code": 221,
"indent": 1,
"parameters": []
},
{
"code": 246,
"indent": 1,
"parameters": [
1
]
},
{
"code": 250,
"indent": 1,
"parameters": [
{
"name": "Move5",
"volume": 90,
"pitch": 100,
"pan": 0
}
]
},
{
"code": 201,
"indent": 1,
"parameters": [
0,
84,
15,
25,
0,
0
]
},
{
"code": 126,
"indent": 1,
"parameters": [
9,
1,
0,
9999
]
},
{
"code": 126,
"indent": 1,
"parameters": [
22,
1,
0,
9999
]
},
{
"code": 101,
"indent": 1,
"parameters": [
"",
0,
0,
2
]
},
{
"code": 401,
"indent": 1,
"parameters": [
"メメリス達は階段を降りた・・・。"
]
},
{
"code": 223,
"indent": 1,
"parameters": [
[
0,
0,
0,
0
],
1,
true
]
},
{
"code": 135,
"indent": 1,
"parameters": [
1
]
},
{
"code": 222,
"indent": 1,
"parameters": []
},
{
"code": 101,
"indent": 1,
"parameters": [
"thina2",
1,
0,
2
]
},
{
"code": 401,
"indent": 1,
"parameters": [
"こ、ここが性奴隷オークション会場・・・!?"
]
},
{
"code": 401,
"indent": 1,
"parameters": [
"スラムの地下にこんな立派な施設が"
]
},
{
"code": 401,
"indent": 1,
"parameters": [
"あるなんて・・・!!"
]
},
{
"code": 101,
"indent": 1,
"parameters": [
"memerisu2",
3,
0,
2
]
},
{
"code": 401,
"indent": 1,
"parameters": [
"危険な香りしかしない・・・"
]
},
{
"code": 401,
"indent": 1,
"parameters": [
"早く孫娘ちゃんを探して帰ろう!"
]
},
{
"code": 121,
"indent": 1,
"parameters": [
89,
89,
0
]
},
{
"code": 0,
"indent": 1,
"parameters": []
},
{
"code": 402,
"indent": 0,
"parameters": [
1,
"いいえ"
]
},
{
"code": 0,
"indent": 1,
"parameters": []
},
{
"code": 404,
"indent": 0,
"parameters": []
},
{
"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": true,
"through": false,
"trigger": 0,
"walkAnime": true
},
{
"conditions": {
"actorId": 1,
"actorValid": false,
"itemId": 1,
"itemValid": false,
"selfSwitchCh": "A",
"selfSwitchValid": false,
"switch1Id": 120,
"switch1Valid": true,
"switch2Id": 1,
"switch2Valid": false,
"variableId": 1,
"variableValid": false,
"variableValue": 0
},
"directionFix": false,
"image": {
"tileId": 0,
"characterName": "!Flame",
"direction": 2,
"pattern": 1,
"characterIndex": 6
},
"list": [
{
"code": 101,
"indent": 0,
"parameters": [
"memerisu2",
4,
0,
2
]
},
{
"code": 401,
"indent": 0,
"parameters": [
"何か嫌なことがここであった気が・・・"
]
},
{
"code": 401,
"indent": 0,
"parameters": [
"いや、あれは夢・・・夢だよね・・・。"
]
},
{
"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": true,
"through": false,
"trigger": 0,
"walkAnime": true
}
],
"x": 4,
"y": 2
},
null
]
}

8311
www/data/Map084.json Normal file

File diff suppressed because it is too large Load diff

31114
www/data/Map085.json Normal file

File diff suppressed because it is too large Load diff

59176
www/data/Map086.json Normal file

File diff suppressed because it is too large Load diff

36072
www/data/Map087.json Normal file

File diff suppressed because it is too large Load diff

1496
www/data/Map088.json Normal file

File diff suppressed because it is too large Load diff

114322
www/data/Map089.json Normal file

File diff suppressed because it is too large Load diff

2499
www/data/Map090.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