File size: 10,168 Bytes
2f6a09b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283

// Start of Selection
function getFurniture() {
    return [
            {
                "name": "Dresser",
                "room": "My Bedroom",
                "pos": {
                    "x": 3,
                    "y": 17
                },
                "reward": "lockpick",
                "state": "unsearchable",
                "in_use": false,
                "search_msg":"Ok um, I think this is a lockpick πŸ”. Why do you even have this?",
                "sprite": [
                    {
                        "for": "searchable",
                        "img": "/assets/img/appartment/dressersearchable.png"
                    },
                    {
                        "for": "unsearchable",
                        "img": "/assets/img/appartment/dresserunsearchable.png"
                    }
                ]
            }, 
            {
                "name": "Bedroom Door",
                "room": "My Bedroom",
                "locked": true,
                "wall_pos": {
                    "x": 9,
                    "y": 15
                },
                "stop_pos":{
                    "x": 8,
                    "y": 15
                }
                ,
                "state": "unlocked",
                "in_use": false,
                "locked_message":"It's locked, I can't get out!! Why is it locked??",
                "unlocked_message":"Ok it's open! πŸ₯³",
                "sprite": [
                    {
                        "for": "locked",
                        "img": "/assets/img/appartment/bedroomdoorlocked.png"
                    },
                    {
                        "for": "unlocked",
                        "img": "/assets/img/appartment/bedroomdoorunlocked.png"
                    }
                ]
            }, 
            {
                "name": "Coffee Table",
                "room": "living",
                "pos": {
                    "x": 15,
                    "y": 21
                },
                "state": "unusable",
                "in_use": false,
                "key":"oil",
                "reward":"remote",
                "locked_msg":"Ugh the drawer doesn't open, it's like it's rusty or jammed or smthn. Gotta loosen it somehow",
                "unlocked_msg":"This is kinda gross 🀒 k it's open, got the remote πŸ“±",
                "sprite": [
                    {
                        "for": "usable",
                        "img": "/assets/img/appartment/coffeetableusable.png"
                    },
                    {
                        "for": "unusable",
                        "img": "/assets/img/appartment/coffeetableunusable.png"
                    }
                ]
            },
            {
                "name": "TV",
                "room": "living",
                "pos": {
                    "x": 17,
                    "y": 20
                },
                "state": "used",
                "in_use": false,
                "key":"remote",
                "generator_on":false,
                "locked_msg":"I need a remote to turn this on",
                "locked_msg_generator_off":"oh shit there's no power i can't turn the tv on",
                "unlocked_msg":"ok it's on... um... it's just some static. i think i see a word in there. It says ETHER. Any ideas wtf that means?",
                "sprite": [
                    {
                        "for": "used",
                        "img": "/assets/img/appartment/tvused.png"
                    },
                    {
                        "for": "unused",
                        "img": "/assets/img/appartment/tvunused.png"
                    }
                ]
            },
            {
                "name": "Bookcase",
                "room": "Guest Bedroom",
                "pos": {
                    "x": 28,
                    "y": 14
                },
                "state": "searchable",
                "in_use": true,
                "msg":"There's nothing useful in here...",
                "sprite": [
                    {
                        "for": "searchable",
                        "img": "/assets/img/appartment/bookcasesearchable.png"
                    },
                    {
                        "for": "usable",
                        "img": "/assets/img/appartment/bookcaseusable.png"
                    },
                    {
                        "for": "unusable",
                        "img": "/assets/img/appartment/bookcaseunusuable.png"
                    }
                ]
            },
            
            {
                "name": "Generator",
                "room": "basement",
                "pos": {
                    "x": 3,
                    "y": 2
                },
                "state": "on",
                "in_use": false,
                "sprite": [
                    {
                        "for": "off",
                        "img": "/assets/img/appartment/generatoroff.png"
                    },
                    {
                        "for": "on",
                        "img": "/assets/img/appartment/generatoron.png"
                    }
                ]
            },
            {
                "name": "Dead Body",
                "room": "Storage",
                "pos": {
                    "x": 3,
                    "y": 4
                },
                "state": "usable",
                "in_use": true,
                "key":"Knife",
                "locked_msg":"Um... what. the. f. Why is its mouth stitched up? Is the key inside??? i cant open it, should i look for something to open it with?",
                "unlocked_msg":"No no no ew ew i can't believe im doing this...😭😭😭 ....the key was in here i got it!! I can get out!",
                "sprite": [
                    {
                        "for": "usable",
                        "img": "/assets/img/appartment/deadbodyusable.png"
                    },
                    {
                        "for": "unusable",
                        "img": "/assets/img/appartment/deadbodyunusable.png"
                    }
                ]
            },
            {
                "name": "Desk",
                "room": "office",
                "pos": {
                    "x": 20,
                    "y": 9
                },
                "reward": "Desk Note",
                "state": "unsearchable",
                "in_use": false,
                "search_msg":"There's a note on your desk. It says The flamingo basks in light. what?? πŸ€”",
                "sprite": [
                    {
                        "for": "searchable",
                        "img": "/assets/img/appartment/desksearchable.png"
                    },
                    {
                        "for": "unsearchable",
                        "img": "/assets/img/appartment/deskunsearchable.png"
                    }
                ]
            },
            {
                "name": "Cabinet",
                "room": "Kitchen",
                "pos": {
                    "x": 27,
                    "y": 2
                },
                "state": "searchable",
                "in_use": true,
                "reward":"knife",
                "msg":"Omg a knife πŸ”ͺ... i just took it but there's no way i can kill the creature with this.",
                "sprite": [
                    {
                        "for": "searchable",
                        "img": "/assets/img/appartment/cabinetsearchable.png"
                    },
                    {
                        "for": "unsearchable",
                        "img": "/assets/img/appartment/cabinetunsearchable.png"
                    }
                ]
            },
            {
                "name": "Fridge",
                "room": "kitchen",
                "pos": {
                    "x": 27,
                    "y": 4
                },
                "state": "unsearchable",
                "in_use": false,
                "search_msg":"there's some creepy ouija shit on your fridge with the fridge magnets. They spell out VENES. is that something i should know about??",
                "sprite": [
                    {
                        "for": "searchable",
                        "img": "/assets/img/appartment/fridgesearchable.png"
                    },
                    {
                        "for": "unsearchable",
                        "img": "/assets/img/appartment/fridgeunsearchable.png"
                    }
                ]
            },
            {
                "name": "Stove",
                "room": "kitchen",
                "pos": {
                    "x": 29,
                    "y": 3
                },
                "state": "unsearchable",
                "in_use": false,
                "search_msg":"U left some olive oil here on the stove for some reason... I feel like it might be useful for something... πŸ«•",
              
                "sprite": [
                    {
                        "for": "searchable",
                        "img": "/assets/img/appartment/stovesearchable.png"
                    },
                    {
                        "for": "unsearchable",
                        "img": "/assets/img/appartment/stoveunsearchable.png"
                    }
                ]
            }
              ,{
                "name":"The Exit",
                "room":"Main Hallway",
                "in_use": true,

                "pos":{
                    "x": 14,
                    "y": 19
                },
                "state":"locked",
                "locked_message":"Omg I can't get out, I need a key... there's a note here that says REMINDER: CHECK STORAGE. shit.",
                "unlocked_message":"IM OUT, AND THIS RELATIONSHIP IS OVER",
                "sprite": [
                    {
                        "for": "locked",
                        "img": "/assets/img/appartment/theexit.png"
                    }
                ]
            }
            
        ]
    ;
}