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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ea08b87883f54da20f1d41ec61429fe78b5b2032
4
- data.tar.gz: dcfd35237afc453752c1cb8b803d7c2c64bff55f
3
+ metadata.gz: 0f822eac6f349e28defd3c82a54797374be4805b
4
+ data.tar.gz: 00c321a34371c8bda5ed9e00d0b1a3448aaa249f
5
5
  SHA512:
6
- metadata.gz: 99bd26da3c0805e93030b251fea638d374feb2111c0205c7042efdd77210cf426030469d93e779265c79141a4bd47596abe99605b5bd8e98362e62049257f649
7
- data.tar.gz: d6040d97609478db3cb37f8bac61aac45bff6e618a51ac4dc9d950f73e1d66efa1db204c15fc4f3b894e4f55eadde085a8682f9055d992854c2fdcfe91a48e52
6
+ metadata.gz: 11b795d5e4086ff24346cde77be051b48df576a4c46cb0f2c50e22e296cb48c0a0e857b7fa7c8e445cf6a0fa49c9f0cfa1242778cbec573ef0f582febd43178b
7
+ data.tar.gz: d7593e704acedbd6b9926dd34270b87440c282535fba0bacff9e1e218e63e723138953ea977196f2e2b79e4111bd74667b838bc6cf88d9270a40cc2f65aa7c19
File without changes
@@ -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
- locs_connected:
9
- north: true
10
- east: true
11
- south: false
12
- west: true
13
- items:
14
- - Bed
15
- - Stone
16
- - Tent
17
-
18
- -
19
- name: 'Cave (Entrance)'
20
- description: 'A nearby, dank entrance to a cavern, surely filled with stacktites, stonemites, and rocksites.'
21
- danger_level: :low
22
- coords:
23
- x: 6
24
- y: 0
25
- locs_connected:
26
- north: false
27
- east: true
28
- south: false
29
- west: true
30
- monster_level_range:
31
- lo: 1
32
- hi: 2
33
-
34
- -
35
- name: 'Cave (Antechamber)'
36
- description: 'Now inside the cavern, you confirm there are stacktites, stonemites, rocksites, and even some pebblejites.'
37
- danger_level: :moderate
38
- coords:
39
- x: 7
40
- y: 0
41
- locs_connected:
42
- north: true
43
- east: true
44
- south: false
45
- west: true
46
- monster_level_range:
47
- lo: 2
48
- hi: 3
49
- items:
50
- - Stalactite
51
- - Stonemite
52
-
53
- -
54
- name: 'Cave (Nook)'
55
- description: 'A depression in the cave wall casts a shadow over a small rock shelf.'
56
- danger_level: :moderate
57
- monster_level_range:
58
- lo: 2
59
- hi: 3
60
- coords:
61
- x: 7
62
- y: 1
63
- locs_connected:
64
- north: false
65
- east: true
66
- south: true
67
- west: false
68
-
69
- -
70
- name: 'Cave (Dropoff)'
71
- description: 'Caves do not usually feature sudden chasms spilling down into an unknowable void, but this one does.'
72
- danger_level: :moderate,
73
- coords:
74
- x: 8
75
- y: 1
76
- locs_connected:
77
- north: false
78
- east: false
79
- south: true
80
- west: true
81
- monster_level_range:
82
- lo: 2
83
- hi: 4
84
-
85
- -
86
- name: 'Cave (Causeway)'
87
- description: 'Paths lead north and west, but nothing of interest is in this causeway.'
88
- danger_level: :moderate
89
- coords:
90
- x: 8
91
- y: 0
92
- locs_connected:
93
- north: true
94
- east: false
95
- south: false
96
- west: true
97
- monster_level_range:
98
- lo: 2
99
- hi: 3
100
- -
101
- name: 'Forest (Southeast)'
102
- description: 'Trees exist here, in droves.'
103
- danger_level: :low
104
- coords:
105
- x: 4
106
- y: 0
107
- locs_connected:
108
- north: true
109
- east: true
110
- south: false
111
- west: false
112
- monster_level_range:
113
- lo: 1
114
- hi: 3
115
- items:
116
- - Tree
117
-
118
- -
119
- name: 'Forest (Northeast)'
120
- description: 'You see much foliage.'
121
- danger_level: :low
122
- coords:
123
- x: 4
124
- y: 1
125
- locs_connected:
126
- north: false
127
- east: false
128
- south: true
129
- west: true
130
- monster_level_range:
131
- lo: 1
132
- hi: 3
133
-
134
- -
135
- name: 'Forest (Northwest)'
136
- description: 'The amount of leaves and branches and trunks you can see boggles the mind.'
137
- danger_level: :low
138
- coords:
139
- x: 3
140
- y: 1
141
- locs_connected:
142
- north: false
143
- east: true
144
- south: true
145
- west: false
146
- monster_level_range:
147
- lo: 1
148
- hi: 3
149
- items:
150
- - Feather
151
-
152
- -
153
- name: 'Forest (Southwest)'
154
- description: 'While you continue to be impressed at the sheer size of this forest, a clearing appears to open up to the west.'
155
- danger_level: :low
156
- coords:
157
- x: 3
158
- y: 0
159
- locs_connected:
160
- north: true
161
- east: false
162
- south: false
163
- west: true
164
- monster_level_range:
165
- lo: 1
166
- hi: 3
167
-
168
- -
169
- name: 'Pain Desert (Southeast)'
170
- description: 'Horrible terribleness emanates from this desolate land of unkind misery.'
171
- danger_level: :assured
172
- coords:
173
- x: 2
174
- y: 0
175
- locs_connected:
176
- north: true
177
- east: true
178
- south: false
179
- west: true
180
- monster_level_range:
181
- lo: 5
182
- hi: 20
183
- bosses_abounding:
184
- - Garynetty
185
-
186
- -
187
- name: 'Pain Desert (East)'
188
- description: 'Horrible terribleness emanates from this desolate land of unkind misery.'
189
- danger_level: :assured
190
- coords:
191
- x: 2
192
- y: 1
193
- locs_connected:
194
- north: false
195
- east: false
196
- south: true
197
- west: true
198
- monster_level_range:
199
- lo: 5
200
- hi: 20
201
- bosses_abounding:
202
- - Garynetty
203
-
204
- -
205
- name: 'Pain Desert (Central)'
206
- description: 'Horrible terribleness emanates from this desolate land of unkind misery.'
207
- danger_level: :assured
208
- coords:
209
- x: 1
210
- y: 1
211
- locs_connected:
212
- north: true
213
- east: true
214
- south: true
215
- west: true
216
- monster_level_range:
217
- lo: 5
218
- hi: 20
219
- bosses_abounding:
220
- - Garynetty
221
-
222
- -
223
- name: 'Pain Desert (South)'
224
- description: 'Horrible terribleness emanates from this desolate land of unkind misery.'
225
- danger_level: :assured
226
- coords:
227
- x: 1
228
- y: 0
229
- locs_connected:
230
- north: true
231
- east: true
232
- south: false
233
- west: false
234
- monster_level_range:
235
- lo: 5
236
- hi: 20
237
- bosses_abounding:
238
- - Garynetty
239
-
240
- -
241
- name: 'Pain Desert (West)'
242
- description: 'Horrible terribleness emanates from this desolate land of unkind misery.'
243
- danger_level: :assured
244
- coords:
245
- x: 0
246
- y: 1
247
- locs_connected:
248
- north: true
249
- east: true
250
- south: false
251
- west: false
252
- monster_level_range:
253
- lo: 5
254
- hi: 20
255
- bosses_abounding:
256
- - Garynetty
257
-
258
- -
259
- name: 'Pain Desert (Northwest)'
260
- description: 'Horrible terribleness emanates from this desolate land of unkind misery.'
261
- danger_level: :assured
262
- coords:
263
- x: 0
264
- y: 2
265
- locs_connected:
266
- north: false
267
- east: true
268
- south: true
269
- west: false
270
- monster_level_range:
271
- lo: 5
272
- hi: 20
273
- bosses_abounding:
274
- - Garynetty
275
-
276
- -
277
- name: 'Pain Desert (North)'
278
- description: 'Horrible terribleness emanates from this desolate land of unkind misery.'
279
- danger_level: :assured
280
- coords:
281
- x: 1
282
- y: 2
283
- locs_connected:
284
- north: false
285
- east: false
286
- south: true
287
- west: true
288
- monster_level_range:
289
- lo: 5
290
- hi: 20
291
- bosses_abounding:
292
- - Garynetty
293
-
294
- -
295
- name: 'Plains (Outskirts)'
296
- description: 'A lot of grass and nothing, stretching out northward.'
297
- danger_level: :low
298
- coords:
299
- x: 5
300
- y: 1
301
- locs_connected:
302
- north: true
303
- east: false
304
- south: true
305
- west: false
306
- monster_level_range:
307
- lo: 2
308
- hi: 3
309
-
310
- -
311
- name: 'Plains (Fields)'
312
- description: 'Now you are plum smack dab in the middle of rolling fields.'
313
- danger_level: :low
314
- coords:
315
- x: 5
316
- y: 2
317
- locs_connected:
318
- north: true
319
- east: false
320
- south: true
321
- west: false
322
- monster_level_range:
323
- lo: 2
324
- hi: 3
325
-
326
- -
327
- name: 'Plains (South of River)'
328
- description: 'A raging river borders the northern side of this bucolic vista.'
329
- danger_level: :low
330
- coords:
331
- x: 5
332
- y: 3
333
- locs_connected:
334
- north: false
335
- east: false
336
- south: true
337
- west: true
338
- monster_level_range:
339
- lo: 2
340
- hi: 3
341
-
342
- -
343
- name: 'Plains (South of Bridge)'
344
- description: 'To the north of these fields lies a bridge that may be crossable.'
345
- danger_level: :low
346
- coords:
347
- x: 4
348
- y: 3
349
- locs_connected:
350
- north: true
351
- east: true
352
- south: false
353
- west: true
354
- monster_level_range:
355
- lo: 2
356
- hi: 3
357
-
358
- -
359
- name: 'Plains (Hut)'
360
- description: 'A straw hut sits alone, curiously, in a patch of grass, sticks, and straw.'
361
- danger_level: :none
362
- coords:
363
- x: 3
364
- y: 3
365
- locs_connected:
366
- north: false
367
- east: true
368
- south: false
369
- west: false
370
-
371
- -
372
- name: 'River Bridge'
373
- description: 'Sturdy and safe, this bridge will get you across the otherwise unpassable river you see below.'
374
- danger_level: :moderate
375
- coords:
376
- x: 4
377
- y: 4
378
- locs_connected:
379
- north: true
380
- east: false
381
- south: true
382
- west: false
383
- monster_level_range:
384
- lo: 3
385
- hi: 5
386
-
387
- -
388
- name: 'Plains (North of Bridge)'
389
- 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.'
390
- danger_level: :low
391
- coords:
392
- x: 4
393
- y: 5
394
- locs_connected:
395
- north: false
396
- east: false
397
- south: true
398
- west: true
399
- monster_level_range:
400
- lo: 2
401
- hi: 3
402
-
403
- -
404
- name: 'Rock Quarry'
405
- description: 'Piles of rocks, both big and small, are placed here and there, a testament to someone''s surely back-breaking labor.'
406
- danger_level: :moderate
407
- coords:
408
- x: 3
409
- y: 5
410
- locs_connected:
411
- north: false
412
- east: true
413
- south: false
414
- west: false
415
- monster_level_range:
416
- lo: 3
417
- hi: 4
418
- items:
419
- - Gun
420
- - TowerSwitch
421
-
422
- -
423
- name: 'Sky Tower (Entryway)'
424
- description: 'You feel unsettled as you gaze upon the wondrous proportions of Emerald''s home.'
425
- danger_level: :moderate
426
- coords:
427
- x: 8
428
- y: 6
429
- locs_connected:
430
- north: true
431
- east: true
432
- south: false
433
- west: true
434
- monster_level_range:
435
- lo: 3
436
- hi: 4
437
- items:
438
- - FloorTile
439
-
440
- -
441
- name: 'Sky Tower (Cloud Garden)'
442
- description: 'A perfectly-maintained array of wispy flowers and other ethereal plantlife contained within a cumulonimbus barrier.'
443
- danger_level: :moderate
444
- coords:
445
- x: 8
446
- y: 7
447
- locs_connected:
448
- north: false
449
- east: false
450
- south: true
451
- west: false
452
- monster_level_range:
453
- lo: 3
454
- hi: 4
455
- items:
456
- - Flower
457
- - Keystone
458
-
459
- -
460
- name: 'Sky Tower (Armory)'
461
- description: 'Weapons of all kinds litter the ground and are hung on hooks from the wall. Tower assailants beware/rejoice!'
462
- danger_level: :moderate
463
- coords:
464
- x: 7
465
- y: 6
466
- locs_connected:
467
- north: true
468
- east: true
469
- south: false
470
- west: false
471
- monster_level_range:
472
- lo: 3
473
- hi: 4
474
- items:
475
- - Dehumidifier
476
-
477
- -
478
- name: 'Sky Tower (West Hallway)'
479
- description: 'The hallway seems to stretch on for days.'
480
- danger_level: :moderate
481
- coords:
482
- x: 7
483
- y: 7
484
- locs_connected:
485
- north: true
486
- east: false
487
- south: true
488
- west: false
489
- monster_level_range:
490
- lo: 3
491
- hi: 4
492
-
493
- -
494
- name: 'Sky Tower (Waterfalls)'
495
- description: 'The seemingly neverending deluge of water causes this room to be quite loud, yet pretty.'
496
- danger_level: :moderate
497
- coords:
498
- x: 7
499
- y: 8
500
- locs_connected:
501
- north: true
502
- east: true
503
- south: false
504
- west: false
505
- monster_level_range:
506
- lo: 3
507
- hi: 4
508
- items:
509
- - Waterfall
510
-
511
- -
512
- name: 'Sky Tower (Massive Door)'
513
- description: 'Before you lies a massive collection of cumulus clouds that form into a seemingly impenetrable door, beyond which may well be your doom.'
514
- danger_level: :moderate
515
- coords:
516
- x: 8
517
- y: 8
518
- locs_connected:
519
- north: false
520
- east: true
521
- south: false
522
- west: true
523
- monster_level_range:
524
- lo: 4
525
- hi: 5
526
- items:
527
- - MassiveDoor
528
-
529
- -
530
- name: 'Sky Tower (Throne Room)'
531
- description: 'There, on a mighty seat made of broken dreams, sits Emerald himself, staring at you coldly, silently.'
532
- danger_level: :high
533
- coords:
534
- x: 8
535
- y: 9
536
- locs_connected:
537
- north: false
538
- east: false
539
- south: true
540
- west: false
541
- monster_level_range:
542
- lo: 5
543
- hi: 7
544
- items:
545
- - Throne
546
- bosses_abounding:
547
- - Emerald
548
-
549
- -
550
- name: 'Sky Tower (Lounge)'
551
- description: 'Nothing but a simple couch, which looks very comfortable, exists in this corner of the tower.'
552
- danger_level: :moderate,
553
- coords:
554
- x: 9
555
- y: 8
556
- locs_connected:
557
- north: false
558
- east: false
559
- south: true
560
- west: true
561
- monster_level_range:
562
- lo: 3
563
- hi: 4
564
- items:
565
- - Couch
566
-
567
- -
568
- name: 'Sky Tower (East Hallway)'
569
- description: 'Longish and neverending is what you might say about this stretch of the tower.'
570
- danger_level: :moderate
571
- coords:
572
- x: 9
573
- y: 7
574
- locs_connected:
575
- north: true
576
- east: false
577
- south: true
578
- west: false
579
- monster_level_range:
580
- lo: 3
581
- hi: 4
582
-
583
- -
584
- name: 'Sky Tower (Kitchen)'
585
- description: 'This kitchen looks well-used, as appliances abound, and leftover food sits atop counters.'
586
- danger_level: :moderate
587
- coords:
588
- x: 9
589
- y: 6
590
- locs_connected:
591
- north: true
592
- east: false
593
- south: false
594
- west: true
595
- monster_level_range:
596
- lo: 3
597
- hi: 4
598
- items:
599
- - Apple
600
- - Cup
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