gemwarrior 0.7.5 → 0.7.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/gemwarrior +0 -0
- data/data/locations.yml +980 -600
- data/lib/gemwarrior/battle.rb +1 -1
- data/lib/gemwarrior/entities/items/ladder.rb +31 -0
- data/lib/gemwarrior/entities/items/rope.rb +29 -0
- data/lib/gemwarrior/entities/items/snowman.rb +28 -0
- data/lib/gemwarrior/entities/items/tent.rb +4 -0
- data/lib/gemwarrior/entities/location.rb +5 -1
- data/lib/gemwarrior/entities/player.rb +265 -249
- data/lib/gemwarrior/evaluator.rb +402 -393
- data/lib/gemwarrior/misc/version.rb +1 -1
- data/lib/gemwarrior/world.rb +297 -296
- metadata +9 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0f822eac6f349e28defd3c82a54797374be4805b
|
4
|
+
data.tar.gz: 00c321a34371c8bda5ed9e00d0b1a3448aaa249f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11b795d5e4086ff24346cde77be051b48df576a4c46cb0f2c50e22e296cb48c0a0e857b7fa7c8e445cf6a0fa49c9f0cfa1242778cbec573ef0f582febd43178b
|
7
|
+
data.tar.gz: d7593e704acedbd6b9926dd34270b87440c282535fba0bacff9e1e218e63e723138953ea977196f2e2b79e4111bd74667b838bc6cf88d9270a40cc2f65aa7c19
|
data/bin/gemwarrior
CHANGED
File without changes
|
data/data/locations.yml
CHANGED
@@ -1,600 +1,980 @@
|
|
1
|
-
-
|
2
|
-
name: 'Home'
|
3
|
-
description: 'The little, unimportant, decrepit hut that you live in.'
|
4
|
-
danger_level: :none
|
5
|
-
coords:
|
6
|
-
x: 5
|
7
|
-
y: 0
|
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
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
locs_connected:
|
411
|
-
north: false
|
412
|
-
east: true
|
413
|
-
south:
|
414
|
-
west:
|
415
|
-
monster_level_range:
|
416
|
-
lo:
|
417
|
-
hi:
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
1
|
+
-
|
2
|
+
name: 'Home'
|
3
|
+
description: 'The little, unimportant, decrepit hut that you live in.'
|
4
|
+
danger_level: :none
|
5
|
+
coords:
|
6
|
+
x: 5
|
7
|
+
y: 0
|
8
|
+
z: 0
|
9
|
+
locs_connected:
|
10
|
+
north: true
|
11
|
+
east: true
|
12
|
+
south: false
|
13
|
+
west: true
|
14
|
+
items:
|
15
|
+
- Bed
|
16
|
+
- Stone
|
17
|
+
- Tent
|
18
|
+
|
19
|
+
-
|
20
|
+
name: 'Cave (Entrance)'
|
21
|
+
description: 'A nearby, dank entrance to a cavern, surely filled with stacktites, stonemites, and rocksites.'
|
22
|
+
danger_level: :low
|
23
|
+
coords:
|
24
|
+
x: 6
|
25
|
+
y: 0
|
26
|
+
z: 0
|
27
|
+
locs_connected:
|
28
|
+
north: false
|
29
|
+
east: true
|
30
|
+
south: false
|
31
|
+
west: true
|
32
|
+
monster_level_range:
|
33
|
+
lo: 1
|
34
|
+
hi: 2
|
35
|
+
|
36
|
+
-
|
37
|
+
name: 'Cave (Antechamber)'
|
38
|
+
description: 'Now inside the cavern, you confirm there are stacktites, stonemites, rocksites, and even some pebblejites.'
|
39
|
+
danger_level: :moderate
|
40
|
+
coords:
|
41
|
+
x: 7
|
42
|
+
y: 0
|
43
|
+
z: 0
|
44
|
+
locs_connected:
|
45
|
+
north: true
|
46
|
+
east: true
|
47
|
+
south: false
|
48
|
+
west: true
|
49
|
+
monster_level_range:
|
50
|
+
lo: 2
|
51
|
+
hi: 3
|
52
|
+
items:
|
53
|
+
- Stalactite
|
54
|
+
- Stonemite
|
55
|
+
|
56
|
+
-
|
57
|
+
name: 'Cave (Nook)'
|
58
|
+
description: 'A depression in the cave wall casts a shadow over a small rock shelf.'
|
59
|
+
danger_level: :moderate
|
60
|
+
monster_level_range:
|
61
|
+
lo: 2
|
62
|
+
hi: 3
|
63
|
+
coords:
|
64
|
+
x: 7
|
65
|
+
y: 1
|
66
|
+
z: 0
|
67
|
+
locs_connected:
|
68
|
+
north: false
|
69
|
+
east: true
|
70
|
+
south: true
|
71
|
+
west: false
|
72
|
+
|
73
|
+
-
|
74
|
+
name: 'Cave (Dropoff)'
|
75
|
+
description: 'Caves do not usually feature sudden chasms spilling down into an unknowable void, but this one does.'
|
76
|
+
danger_level: :moderate
|
77
|
+
coords:
|
78
|
+
x: 8
|
79
|
+
y: 1
|
80
|
+
z: 0
|
81
|
+
locs_connected:
|
82
|
+
north: false
|
83
|
+
east: false
|
84
|
+
south: true
|
85
|
+
west: true
|
86
|
+
monster_level_range:
|
87
|
+
lo: 2
|
88
|
+
hi: 4
|
89
|
+
items:
|
90
|
+
- Ladder
|
91
|
+
|
92
|
+
-
|
93
|
+
name: 'Metal Tunnel (South Entrance)'
|
94
|
+
description: 'You are in a tightly-enclosed tunnel running under the ground. The walls are made of shiny, smooth material you think may be some kindof metal. It is claustrophobic, to say the least.'
|
95
|
+
danger_level: :moderate
|
96
|
+
coords:
|
97
|
+
x: 8
|
98
|
+
y: 1
|
99
|
+
z: -1
|
100
|
+
locs_connected:
|
101
|
+
north: true
|
102
|
+
east: false
|
103
|
+
south: false
|
104
|
+
west: false
|
105
|
+
monster_level_range:
|
106
|
+
lo: 3
|
107
|
+
hi: 4
|
108
|
+
|
109
|
+
-
|
110
|
+
name: 'Metal Tunnel'
|
111
|
+
description: 'The walls of this underground tunnel shine, as if some otherworldly light source emanates directly from them. It is cold and narrow and you are not sure you are a huge fan of it.'
|
112
|
+
danger_level: :moderate
|
113
|
+
coords:
|
114
|
+
x: 8
|
115
|
+
y: 2
|
116
|
+
z: -1
|
117
|
+
locs_connected:
|
118
|
+
north: true
|
119
|
+
east: false
|
120
|
+
south: true
|
121
|
+
west: false
|
122
|
+
monster_level_range:
|
123
|
+
lo: 3
|
124
|
+
hi: 4
|
125
|
+
|
126
|
+
-
|
127
|
+
name: 'Metal Tunnel'
|
128
|
+
description: 'The walls of this underground tunnel shine, as if some otherworldly light source emanates directly from them. It is cold and narrow and you are not sure you are a huge fan of it.'
|
129
|
+
danger_level: :moderate
|
130
|
+
coords:
|
131
|
+
x: 8
|
132
|
+
y: 3
|
133
|
+
z: -1
|
134
|
+
locs_connected:
|
135
|
+
north: true
|
136
|
+
east: false
|
137
|
+
south: true
|
138
|
+
west: false
|
139
|
+
monster_level_range:
|
140
|
+
lo: 3
|
141
|
+
hi: 4
|
142
|
+
|
143
|
+
-
|
144
|
+
name: 'Metal Tunnel'
|
145
|
+
description: 'The walls of this underground tunnel shine, as if some otherworldly light source emanates directly from them. It is cold and narrow and you are not sure you are a huge fan of it.'
|
146
|
+
danger_level: :moderate
|
147
|
+
coords:
|
148
|
+
x: 8
|
149
|
+
y: 4
|
150
|
+
z: -1
|
151
|
+
locs_connected:
|
152
|
+
north: false
|
153
|
+
east: false
|
154
|
+
south: true
|
155
|
+
west: true
|
156
|
+
monster_level_range:
|
157
|
+
lo: 3
|
158
|
+
hi: 4
|
159
|
+
|
160
|
+
-
|
161
|
+
name: 'Metal Tunnel'
|
162
|
+
description: 'The walls of this underground tunnel shine, as if some otherworldly light source emanates directly from them. It is cold and narrow and you are not sure you are a huge fan of it.'
|
163
|
+
danger_level: :moderate
|
164
|
+
coords:
|
165
|
+
x: 7
|
166
|
+
y: 4
|
167
|
+
z: -1
|
168
|
+
locs_connected:
|
169
|
+
north: false
|
170
|
+
east: true
|
171
|
+
south: false
|
172
|
+
west: true
|
173
|
+
monster_level_range:
|
174
|
+
lo: 3
|
175
|
+
hi: 4
|
176
|
+
|
177
|
+
-
|
178
|
+
name: 'Metal Tunnel'
|
179
|
+
description: 'The walls of this underground tunnel shine, as if some otherworldly light source emanates directly from them. It is cold and narrow and you are not sure you are a huge fan of it.'
|
180
|
+
danger_level: :moderate
|
181
|
+
coords:
|
182
|
+
x: 6
|
183
|
+
y: 4
|
184
|
+
z: -1
|
185
|
+
locs_connected:
|
186
|
+
north: true
|
187
|
+
east: true
|
188
|
+
south: false
|
189
|
+
west: false
|
190
|
+
monster_level_range:
|
191
|
+
lo: 3
|
192
|
+
hi: 4
|
193
|
+
|
194
|
+
-
|
195
|
+
name: 'Metal Tunnel'
|
196
|
+
description: 'The walls of this underground tunnel shine, as if some otherworldly light source emanates directly from them. It is cold and narrow and you are not sure you are a huge fan of it.'
|
197
|
+
danger_level: :moderate
|
198
|
+
coords:
|
199
|
+
x: 6
|
200
|
+
y: 5
|
201
|
+
z: -1
|
202
|
+
locs_connected:
|
203
|
+
north: false
|
204
|
+
east: false
|
205
|
+
south: true
|
206
|
+
west: true
|
207
|
+
monster_level_range:
|
208
|
+
lo: 3
|
209
|
+
hi: 4
|
210
|
+
|
211
|
+
-
|
212
|
+
name: 'Metal Tunnel'
|
213
|
+
description: 'The walls of this underground tunnel shine, as if some otherworldly light source emanates directly from them. It is cold and narrow and you are not sure you are a huge fan of it.'
|
214
|
+
danger_level: :moderate
|
215
|
+
coords:
|
216
|
+
x: 5
|
217
|
+
y: 5
|
218
|
+
z: -1
|
219
|
+
locs_connected:
|
220
|
+
north: true
|
221
|
+
east: true
|
222
|
+
south: false
|
223
|
+
west: false
|
224
|
+
monster_level_range:
|
225
|
+
lo: 3
|
226
|
+
hi: 4
|
227
|
+
|
228
|
+
-
|
229
|
+
name: 'Metal Tunnel'
|
230
|
+
description: 'The walls of this underground tunnel shine, as if some otherworldly light source emanates directly from them. It is cold and narrow and you are not sure you are a huge fan of it.'
|
231
|
+
danger_level: :moderate
|
232
|
+
coords:
|
233
|
+
x: 5
|
234
|
+
y: 6
|
235
|
+
z: -1
|
236
|
+
locs_connected:
|
237
|
+
north: true
|
238
|
+
east: false
|
239
|
+
south: true
|
240
|
+
west: false
|
241
|
+
monster_level_range:
|
242
|
+
lo: 3
|
243
|
+
hi: 4
|
244
|
+
|
245
|
+
-
|
246
|
+
name: 'Metal Tunnel (North Entrance)'
|
247
|
+
description: 'The walls of this underground tunnel shine, as if some otherworldly light source emanates directly from them. It is cold and narrow and you are not sure you are a huge fan of it.'
|
248
|
+
danger_level: :moderate
|
249
|
+
coords:
|
250
|
+
x: 5
|
251
|
+
y: 7
|
252
|
+
z: -1
|
253
|
+
locs_connected:
|
254
|
+
north: false
|
255
|
+
east: false
|
256
|
+
south: true
|
257
|
+
west: false
|
258
|
+
monster_level_range:
|
259
|
+
lo: 3
|
260
|
+
hi: 4
|
261
|
+
items:
|
262
|
+
- Rope
|
263
|
+
|
264
|
+
-
|
265
|
+
name: 'Snow Fields (Southeast)'
|
266
|
+
description: 'It is as if the color palette for this still and frozen scene before you consisted only of whites, off-whites, and vanilla.'
|
267
|
+
danger_level: :low
|
268
|
+
coords:
|
269
|
+
x: 5
|
270
|
+
y: 7
|
271
|
+
z: 0
|
272
|
+
locs_connected:
|
273
|
+
north: true
|
274
|
+
east: false
|
275
|
+
south: false
|
276
|
+
west: true
|
277
|
+
monster_level_range:
|
278
|
+
lo: 5
|
279
|
+
hi: 6
|
280
|
+
|
281
|
+
-
|
282
|
+
name: 'Snow Fields (South-Southeast)'
|
283
|
+
description: 'It is as if the color palette for this still and frozen scene before you consisted only of whites, off-whites, and vanilla.'
|
284
|
+
danger_level: :moderate
|
285
|
+
coords:
|
286
|
+
x: 4
|
287
|
+
y: 7
|
288
|
+
z: 0
|
289
|
+
locs_connected:
|
290
|
+
north: true
|
291
|
+
east: true
|
292
|
+
south: false
|
293
|
+
west: true
|
294
|
+
monster_level_range:
|
295
|
+
lo: 5
|
296
|
+
hi: 6
|
297
|
+
|
298
|
+
-
|
299
|
+
name: 'Snow Fields (South)'
|
300
|
+
description: 'It is as if the color palette for this still and frozen scene before you consisted only of whites, off-whites, and vanilla.'
|
301
|
+
danger_level: :moderate
|
302
|
+
coords:
|
303
|
+
x: 3
|
304
|
+
y: 7
|
305
|
+
z: 0
|
306
|
+
locs_connected:
|
307
|
+
north: true
|
308
|
+
east: true
|
309
|
+
south: false
|
310
|
+
west: true
|
311
|
+
monster_level_range:
|
312
|
+
lo: 5
|
313
|
+
hi: 6
|
314
|
+
|
315
|
+
-
|
316
|
+
name: 'Snow Fields (South-Southwest)'
|
317
|
+
description: 'It is as if the color palette for this still and frozen scene before you consisted only of whites, off-whites, and vanilla.'
|
318
|
+
danger_level: :moderate
|
319
|
+
coords:
|
320
|
+
x: 2
|
321
|
+
y: 7
|
322
|
+
z: 0
|
323
|
+
locs_connected:
|
324
|
+
north: true
|
325
|
+
east: true
|
326
|
+
south: false
|
327
|
+
west: true
|
328
|
+
monster_level_range:
|
329
|
+
lo: 5
|
330
|
+
hi: 6
|
331
|
+
|
332
|
+
-
|
333
|
+
name: 'Snow Fields (Southwest)'
|
334
|
+
description: 'It is as if the color palette for this still and frozen scene before you consisted only of whites, off-whites, and vanilla.'
|
335
|
+
danger_level: :moderate
|
336
|
+
coords:
|
337
|
+
x: 1
|
338
|
+
y: 7
|
339
|
+
z: 0
|
340
|
+
locs_connected:
|
341
|
+
north: true
|
342
|
+
east: true
|
343
|
+
south: false
|
344
|
+
west: false
|
345
|
+
monster_level_range:
|
346
|
+
lo: 5
|
347
|
+
hi: 6
|
348
|
+
|
349
|
+
-
|
350
|
+
name: 'Snow Fields (Northwest)'
|
351
|
+
description: 'It is as if the color palette for this still and frozen scene before you consisted only of whites, off-whites, and vanilla.'
|
352
|
+
danger_level: :moderate
|
353
|
+
coords:
|
354
|
+
x: 1
|
355
|
+
y: 8
|
356
|
+
z: 0
|
357
|
+
locs_connected:
|
358
|
+
north: false
|
359
|
+
east: true
|
360
|
+
south: true
|
361
|
+
west: false
|
362
|
+
monster_level_range:
|
363
|
+
lo: 5
|
364
|
+
hi: 6
|
365
|
+
items:
|
366
|
+
- Snowman
|
367
|
+
|
368
|
+
-
|
369
|
+
name: 'Snow Fields (North-Northwest)'
|
370
|
+
description: 'It is as if the color palette for this still and frozen scene before you consisted only of whites, off-whites, and vanilla.'
|
371
|
+
danger_level: :moderate
|
372
|
+
coords:
|
373
|
+
x: 2
|
374
|
+
y: 8
|
375
|
+
z: 0
|
376
|
+
locs_connected:
|
377
|
+
north: false
|
378
|
+
east: true
|
379
|
+
south: true
|
380
|
+
west: true
|
381
|
+
monster_level_range:
|
382
|
+
lo: 5
|
383
|
+
hi: 6
|
384
|
+
|
385
|
+
-
|
386
|
+
name: 'Snow Fields (North)'
|
387
|
+
description: 'It is as if the color palette for this still and frozen scene before you consisted only of whites, off-whites, and vanilla.'
|
388
|
+
danger_level: :moderate
|
389
|
+
coords:
|
390
|
+
x: 3
|
391
|
+
y: 8
|
392
|
+
z: 0
|
393
|
+
locs_connected:
|
394
|
+
north: false
|
395
|
+
east: true
|
396
|
+
south: true
|
397
|
+
west: true
|
398
|
+
monster_level_range:
|
399
|
+
lo: 5
|
400
|
+
hi: 6
|
401
|
+
|
402
|
+
-
|
403
|
+
name: 'Snow Fields (North-Northeast)'
|
404
|
+
description: 'It is as if the color palette for this still and frozen scene before you consisted only of whites, off-whites, and vanilla.'
|
405
|
+
danger_level: :moderate
|
406
|
+
coords:
|
407
|
+
x: 4
|
408
|
+
y: 8
|
409
|
+
z: 0
|
410
|
+
locs_connected:
|
411
|
+
north: false
|
412
|
+
east: true
|
413
|
+
south: true
|
414
|
+
west: true
|
415
|
+
monster_level_range:
|
416
|
+
lo: 5
|
417
|
+
hi: 6
|
418
|
+
|
419
|
+
-
|
420
|
+
name: 'Snow Fields (Northeast)'
|
421
|
+
description: 'It is as if the color palette for this still and frozen scene before you consisted only of whites, off-whites, and vanilla.'
|
422
|
+
danger_level: :moderate
|
423
|
+
coords:
|
424
|
+
x: 5
|
425
|
+
y: 8
|
426
|
+
z: 0
|
427
|
+
locs_connected:
|
428
|
+
north: false
|
429
|
+
east: false
|
430
|
+
south: true
|
431
|
+
west: true
|
432
|
+
monster_level_range:
|
433
|
+
lo: 5
|
434
|
+
hi: 6
|
435
|
+
|
436
|
+
-
|
437
|
+
name: 'Cave (Causeway)'
|
438
|
+
description: 'Paths lead north and west, but nothing of interest is in this causeway.'
|
439
|
+
danger_level: :moderate
|
440
|
+
coords:
|
441
|
+
x: 8
|
442
|
+
y: 0
|
443
|
+
z: 0
|
444
|
+
locs_connected:
|
445
|
+
north: true
|
446
|
+
east: false
|
447
|
+
south: false
|
448
|
+
west: true
|
449
|
+
monster_level_range:
|
450
|
+
lo: 2
|
451
|
+
hi: 3
|
452
|
+
-
|
453
|
+
name: 'Forest (Southeast)'
|
454
|
+
description: 'Trees exist here, in droves.'
|
455
|
+
danger_level: :low
|
456
|
+
coords:
|
457
|
+
x: 4
|
458
|
+
y: 0
|
459
|
+
z: 0
|
460
|
+
locs_connected:
|
461
|
+
north: true
|
462
|
+
east: true
|
463
|
+
south: false
|
464
|
+
west: false
|
465
|
+
monster_level_range:
|
466
|
+
lo: 1
|
467
|
+
hi: 3
|
468
|
+
items:
|
469
|
+
- Tree
|
470
|
+
|
471
|
+
-
|
472
|
+
name: 'Forest (Northeast)'
|
473
|
+
description: 'You see much foliage.'
|
474
|
+
danger_level: :low
|
475
|
+
coords:
|
476
|
+
x: 4
|
477
|
+
y: 1
|
478
|
+
z: 0
|
479
|
+
locs_connected:
|
480
|
+
north: false
|
481
|
+
east: false
|
482
|
+
south: true
|
483
|
+
west: true
|
484
|
+
monster_level_range:
|
485
|
+
lo: 1
|
486
|
+
hi: 3
|
487
|
+
|
488
|
+
-
|
489
|
+
name: 'Forest (Northwest)'
|
490
|
+
description: 'The amount of leaves and branches and trunks you can see boggles the mind.'
|
491
|
+
danger_level: :low
|
492
|
+
coords:
|
493
|
+
x: 3
|
494
|
+
y: 1
|
495
|
+
z: 0
|
496
|
+
locs_connected:
|
497
|
+
north: false
|
498
|
+
east: true
|
499
|
+
south: true
|
500
|
+
west: false
|
501
|
+
monster_level_range:
|
502
|
+
lo: 1
|
503
|
+
hi: 3
|
504
|
+
items:
|
505
|
+
- Feather
|
506
|
+
|
507
|
+
-
|
508
|
+
name: 'Forest (Southwest)'
|
509
|
+
description: 'While you continue to be impressed at the sheer size of this forest, a clearing appears to open up to the west.'
|
510
|
+
danger_level: :low
|
511
|
+
coords:
|
512
|
+
x: 3
|
513
|
+
y: 0
|
514
|
+
z: 0
|
515
|
+
locs_connected:
|
516
|
+
north: true
|
517
|
+
east: false
|
518
|
+
south: false
|
519
|
+
west: true
|
520
|
+
monster_level_range:
|
521
|
+
lo: 1
|
522
|
+
hi: 3
|
523
|
+
|
524
|
+
-
|
525
|
+
name: 'Pain Quarry (Southeast)'
|
526
|
+
description: 'Horrible terribleness emanates from this desolate land of unkind misery.'
|
527
|
+
danger_level: :assured
|
528
|
+
coords:
|
529
|
+
x: 2
|
530
|
+
y: 0
|
531
|
+
z: 0
|
532
|
+
locs_connected:
|
533
|
+
north: true
|
534
|
+
east: true
|
535
|
+
south: false
|
536
|
+
west: true
|
537
|
+
monster_level_range:
|
538
|
+
lo: 5
|
539
|
+
hi: 20
|
540
|
+
bosses_abounding:
|
541
|
+
- Garynetty
|
542
|
+
|
543
|
+
-
|
544
|
+
name: 'Pain Quarry (East)'
|
545
|
+
description: 'Horrible terribleness emanates from this desolate land of unkind misery.'
|
546
|
+
danger_level: :assured
|
547
|
+
coords:
|
548
|
+
x: 2
|
549
|
+
y: 1
|
550
|
+
z: 0
|
551
|
+
locs_connected:
|
552
|
+
north: false
|
553
|
+
east: false
|
554
|
+
south: true
|
555
|
+
west: true
|
556
|
+
monster_level_range:
|
557
|
+
lo: 5
|
558
|
+
hi: 20
|
559
|
+
bosses_abounding:
|
560
|
+
- Garynetty
|
561
|
+
|
562
|
+
-
|
563
|
+
name: 'Pain Quarry (Central)'
|
564
|
+
description: 'Horrible terribleness emanates from this desolate land of unkind misery.'
|
565
|
+
danger_level: :assured
|
566
|
+
coords:
|
567
|
+
x: 1
|
568
|
+
y: 1
|
569
|
+
z: 0
|
570
|
+
locs_connected:
|
571
|
+
north: true
|
572
|
+
east: true
|
573
|
+
south: true
|
574
|
+
west: true
|
575
|
+
monster_level_range:
|
576
|
+
lo: 5
|
577
|
+
hi: 20
|
578
|
+
bosses_abounding:
|
579
|
+
- Garynetty
|
580
|
+
|
581
|
+
-
|
582
|
+
name: 'Pain Quarry (South)'
|
583
|
+
description: 'Horrible terribleness emanates from this desolate land of unkind misery.'
|
584
|
+
danger_level: :assured
|
585
|
+
coords:
|
586
|
+
x: 1
|
587
|
+
y: 0
|
588
|
+
z: 0
|
589
|
+
locs_connected:
|
590
|
+
north: true
|
591
|
+
east: true
|
592
|
+
south: false
|
593
|
+
west: false
|
594
|
+
monster_level_range:
|
595
|
+
lo: 5
|
596
|
+
hi: 20
|
597
|
+
bosses_abounding:
|
598
|
+
- Garynetty
|
599
|
+
|
600
|
+
-
|
601
|
+
name: 'Pain Quarry (West)'
|
602
|
+
description: 'Horrible terribleness emanates from this desolate land of unkind misery.'
|
603
|
+
danger_level: :assured
|
604
|
+
coords:
|
605
|
+
x: 0
|
606
|
+
y: 1
|
607
|
+
z: 0
|
608
|
+
locs_connected:
|
609
|
+
north: true
|
610
|
+
east: true
|
611
|
+
south: false
|
612
|
+
west: false
|
613
|
+
monster_level_range:
|
614
|
+
lo: 5
|
615
|
+
hi: 20
|
616
|
+
bosses_abounding:
|
617
|
+
- Garynetty
|
618
|
+
|
619
|
+
-
|
620
|
+
name: 'Pain Quarry (Northwest)'
|
621
|
+
description: 'Horrible terribleness emanates from this desolate land of unkind misery.'
|
622
|
+
danger_level: :assured
|
623
|
+
coords:
|
624
|
+
x: 0
|
625
|
+
y: 2
|
626
|
+
z: 0
|
627
|
+
locs_connected:
|
628
|
+
north: false
|
629
|
+
east: true
|
630
|
+
south: true
|
631
|
+
west: false
|
632
|
+
monster_level_range:
|
633
|
+
lo: 5
|
634
|
+
hi: 20
|
635
|
+
bosses_abounding:
|
636
|
+
- Garynetty
|
637
|
+
|
638
|
+
-
|
639
|
+
name: 'Pain Quarry (North)'
|
640
|
+
description: 'Horrible terribleness emanates from this desolate land of unkind misery.'
|
641
|
+
danger_level: :assured
|
642
|
+
coords:
|
643
|
+
x: 1
|
644
|
+
y: 2
|
645
|
+
z: 0
|
646
|
+
locs_connected:
|
647
|
+
north: false
|
648
|
+
east: false
|
649
|
+
south: true
|
650
|
+
west: true
|
651
|
+
monster_level_range:
|
652
|
+
lo: 5
|
653
|
+
hi: 20
|
654
|
+
bosses_abounding:
|
655
|
+
- Garynetty
|
656
|
+
|
657
|
+
-
|
658
|
+
name: 'Plains (Outskirts)'
|
659
|
+
description: 'A lot of grass and nothing, stretching out northward.'
|
660
|
+
danger_level: :low
|
661
|
+
coords:
|
662
|
+
x: 5
|
663
|
+
y: 1
|
664
|
+
z: 0
|
665
|
+
locs_connected:
|
666
|
+
north: true
|
667
|
+
east: false
|
668
|
+
south: true
|
669
|
+
west: false
|
670
|
+
monster_level_range:
|
671
|
+
lo: 2
|
672
|
+
hi: 3
|
673
|
+
|
674
|
+
-
|
675
|
+
name: 'Plains (Fields)'
|
676
|
+
description: 'Now you are plum smack dab in the middle of rolling fields.'
|
677
|
+
danger_level: :low
|
678
|
+
coords:
|
679
|
+
x: 5
|
680
|
+
y: 2
|
681
|
+
z: 0
|
682
|
+
locs_connected:
|
683
|
+
north: true
|
684
|
+
east: false
|
685
|
+
south: true
|
686
|
+
west: false
|
687
|
+
monster_level_range:
|
688
|
+
lo: 2
|
689
|
+
hi: 3
|
690
|
+
|
691
|
+
-
|
692
|
+
name: 'Plains (South of River)'
|
693
|
+
description: 'A raging river borders the northern side of this bucolic vista.'
|
694
|
+
danger_level: :low
|
695
|
+
coords:
|
696
|
+
x: 5
|
697
|
+
y: 3
|
698
|
+
locs_connected:
|
699
|
+
north: false
|
700
|
+
east: false
|
701
|
+
south: true
|
702
|
+
west: true
|
703
|
+
monster_level_range:
|
704
|
+
lo: 2
|
705
|
+
hi: 3
|
706
|
+
|
707
|
+
-
|
708
|
+
name: 'Plains (South of Bridge)'
|
709
|
+
description: 'To the north of these fields lies a bridge that may be crossable.'
|
710
|
+
danger_level: :low
|
711
|
+
coords:
|
712
|
+
x: 4
|
713
|
+
y: 3
|
714
|
+
z: 0
|
715
|
+
locs_connected:
|
716
|
+
north: true
|
717
|
+
east: true
|
718
|
+
south: false
|
719
|
+
west: true
|
720
|
+
monster_level_range:
|
721
|
+
lo: 2
|
722
|
+
hi: 3
|
723
|
+
|
724
|
+
-
|
725
|
+
name: 'Plains (Hut)'
|
726
|
+
description: 'A straw hut sits alone, curiously, in a patch of grass, sticks, and straw.'
|
727
|
+
danger_level: :none
|
728
|
+
coords:
|
729
|
+
x: 3
|
730
|
+
y: 3
|
731
|
+
z: 0
|
732
|
+
locs_connected:
|
733
|
+
north: false
|
734
|
+
east: true
|
735
|
+
south: false
|
736
|
+
west: false
|
737
|
+
|
738
|
+
-
|
739
|
+
name: 'River Bridge'
|
740
|
+
description: 'Sturdy and safe, this bridge will get you across the otherwise unpassable river you see below.'
|
741
|
+
danger_level: :moderate
|
742
|
+
coords:
|
743
|
+
x: 4
|
744
|
+
y: 4
|
745
|
+
z: 0
|
746
|
+
locs_connected:
|
747
|
+
north: true
|
748
|
+
east: false
|
749
|
+
south: true
|
750
|
+
west: false
|
751
|
+
monster_level_range:
|
752
|
+
lo: 3
|
753
|
+
hi: 5
|
754
|
+
|
755
|
+
-
|
756
|
+
name: 'Plains (North of Bridge)'
|
757
|
+
description: 'North of the river feels similar to south of the river, as you continue to be surrounded by grass and grass and, well, grass.'
|
758
|
+
danger_level: :low
|
759
|
+
coords:
|
760
|
+
x: 4
|
761
|
+
y: 5
|
762
|
+
z: 0
|
763
|
+
locs_connected:
|
764
|
+
north: false
|
765
|
+
east: false
|
766
|
+
south: true
|
767
|
+
west: true
|
768
|
+
monster_level_range:
|
769
|
+
lo: 2
|
770
|
+
hi: 3
|
771
|
+
|
772
|
+
-
|
773
|
+
name: 'Rock Piles'
|
774
|
+
description: 'Piles of rocks, both big and small, are placed here and there, a testament to someone''s surely back-breaking labor.'
|
775
|
+
danger_level: :moderate
|
776
|
+
coords:
|
777
|
+
x: 3
|
778
|
+
y: 5
|
779
|
+
z: 0
|
780
|
+
locs_connected:
|
781
|
+
north: false
|
782
|
+
east: true
|
783
|
+
south: false
|
784
|
+
west: false
|
785
|
+
monster_level_range:
|
786
|
+
lo: 3
|
787
|
+
hi: 4
|
788
|
+
items:
|
789
|
+
- Gun
|
790
|
+
- TowerSwitch
|
791
|
+
|
792
|
+
-
|
793
|
+
name: 'Sky Tower (Entryway)'
|
794
|
+
description: 'You feel unsettled as you gaze upon the wondrous proportions of Emerald''s home.'
|
795
|
+
danger_level: :moderate
|
796
|
+
coords:
|
797
|
+
x: 8
|
798
|
+
y: 6
|
799
|
+
z: 0
|
800
|
+
locs_connected:
|
801
|
+
north: true
|
802
|
+
east: true
|
803
|
+
south: false
|
804
|
+
west: true
|
805
|
+
monster_level_range:
|
806
|
+
lo: 3
|
807
|
+
hi: 4
|
808
|
+
items:
|
809
|
+
- FloorTile
|
810
|
+
|
811
|
+
-
|
812
|
+
name: 'Sky Tower (Cloud Garden)'
|
813
|
+
description: 'A perfectly-maintained array of wispy flowers and other ethereal plantlife contained within a cumulonimbus barrier.'
|
814
|
+
danger_level: :moderate
|
815
|
+
coords:
|
816
|
+
x: 8
|
817
|
+
y: 7
|
818
|
+
z: 0
|
819
|
+
locs_connected:
|
820
|
+
north: false
|
821
|
+
east: false
|
822
|
+
south: true
|
823
|
+
west: false
|
824
|
+
monster_level_range:
|
825
|
+
lo: 3
|
826
|
+
hi: 4
|
827
|
+
items:
|
828
|
+
- Flower
|
829
|
+
- Keystone
|
830
|
+
|
831
|
+
-
|
832
|
+
name: 'Sky Tower (Armory)'
|
833
|
+
description: 'Weapons of all kinds litter the ground and are hung on hooks from the wall. Tower assailants beware/rejoice!'
|
834
|
+
danger_level: :moderate
|
835
|
+
coords:
|
836
|
+
x: 7
|
837
|
+
y: 6
|
838
|
+
z: 0
|
839
|
+
locs_connected:
|
840
|
+
north: true
|
841
|
+
east: true
|
842
|
+
south: false
|
843
|
+
west: false
|
844
|
+
monster_level_range:
|
845
|
+
lo: 3
|
846
|
+
hi: 4
|
847
|
+
items:
|
848
|
+
- Dehumidifier
|
849
|
+
|
850
|
+
-
|
851
|
+
name: 'Sky Tower (West Hallway)'
|
852
|
+
description: 'The hallway seems to stretch on for days.'
|
853
|
+
danger_level: :moderate
|
854
|
+
coords:
|
855
|
+
x: 7
|
856
|
+
y: 7
|
857
|
+
z: 0
|
858
|
+
locs_connected:
|
859
|
+
north: true
|
860
|
+
east: false
|
861
|
+
south: true
|
862
|
+
west: false
|
863
|
+
monster_level_range:
|
864
|
+
lo: 3
|
865
|
+
hi: 4
|
866
|
+
|
867
|
+
-
|
868
|
+
name: 'Sky Tower (Waterfalls)'
|
869
|
+
description: 'The seemingly neverending deluge of water causes this room to be quite loud, yet pretty.'
|
870
|
+
danger_level: :moderate
|
871
|
+
coords:
|
872
|
+
x: 7
|
873
|
+
y: 8
|
874
|
+
z: 0
|
875
|
+
locs_connected:
|
876
|
+
north: true
|
877
|
+
east: true
|
878
|
+
south: false
|
879
|
+
west: false
|
880
|
+
monster_level_range:
|
881
|
+
lo: 3
|
882
|
+
hi: 4
|
883
|
+
items:
|
884
|
+
- Waterfall
|
885
|
+
|
886
|
+
-
|
887
|
+
name: 'Sky Tower (Massive Door)'
|
888
|
+
description: 'Before you lies a massive collection of cumulus clouds that form into a seemingly impenetrable door, beyond which may well be your doom.'
|
889
|
+
danger_level: :moderate
|
890
|
+
coords:
|
891
|
+
x: 8
|
892
|
+
y: 8
|
893
|
+
z: 0
|
894
|
+
locs_connected:
|
895
|
+
north: false
|
896
|
+
east: true
|
897
|
+
south: false
|
898
|
+
west: true
|
899
|
+
monster_level_range:
|
900
|
+
lo: 4
|
901
|
+
hi: 5
|
902
|
+
items:
|
903
|
+
- MassiveDoor
|
904
|
+
|
905
|
+
-
|
906
|
+
name: 'Sky Tower (Throne Room)'
|
907
|
+
description: 'There, on a mighty seat made of broken dreams, sits Emerald himself, staring at you coldly, silently.'
|
908
|
+
danger_level: :high
|
909
|
+
coords:
|
910
|
+
x: 8
|
911
|
+
y: 9
|
912
|
+
z: 0
|
913
|
+
locs_connected:
|
914
|
+
north: false
|
915
|
+
east: false
|
916
|
+
south: true
|
917
|
+
west: false
|
918
|
+
monster_level_range:
|
919
|
+
lo: 5
|
920
|
+
hi: 7
|
921
|
+
items:
|
922
|
+
- Throne
|
923
|
+
bosses_abounding:
|
924
|
+
- Emerald
|
925
|
+
|
926
|
+
-
|
927
|
+
name: 'Sky Tower (Lounge)'
|
928
|
+
description: 'Nothing but a simple couch, which looks very comfortable, exists in this corner of the tower.'
|
929
|
+
danger_level: :moderate,
|
930
|
+
coords:
|
931
|
+
x: 9
|
932
|
+
y: 8
|
933
|
+
z: 0
|
934
|
+
locs_connected:
|
935
|
+
north: false
|
936
|
+
east: false
|
937
|
+
south: true
|
938
|
+
west: true
|
939
|
+
monster_level_range:
|
940
|
+
lo: 3
|
941
|
+
hi: 4
|
942
|
+
items:
|
943
|
+
- Couch
|
944
|
+
|
945
|
+
-
|
946
|
+
name: 'Sky Tower (East Hallway)'
|
947
|
+
description: 'Longish and neverending is what you might say about this stretch of the tower.'
|
948
|
+
danger_level: :moderate
|
949
|
+
coords:
|
950
|
+
x: 9
|
951
|
+
y: 7
|
952
|
+
z: 0
|
953
|
+
locs_connected:
|
954
|
+
north: true
|
955
|
+
east: false
|
956
|
+
south: true
|
957
|
+
west: false
|
958
|
+
monster_level_range:
|
959
|
+
lo: 3
|
960
|
+
hi: 4
|
961
|
+
|
962
|
+
-
|
963
|
+
name: 'Sky Tower (Kitchen)'
|
964
|
+
description: 'This kitchen looks well-used, as appliances abound, and leftover food sits atop counters.'
|
965
|
+
danger_level: :moderate
|
966
|
+
coords:
|
967
|
+
x: 9
|
968
|
+
y: 6
|
969
|
+
z: 0
|
970
|
+
locs_connected:
|
971
|
+
north: true
|
972
|
+
east: false
|
973
|
+
south: false
|
974
|
+
west: true
|
975
|
+
monster_level_range:
|
976
|
+
lo: 3
|
977
|
+
hi: 4
|
978
|
+
items:
|
979
|
+
- Apple
|
980
|
+
- Cup
|