gemwarrior 0.9.39 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,5 +2,5 @@
2
2
  # Version of Gem Warrior
3
3
 
4
4
  module Gemwarrior
5
- VERSION = '0.9.39'
5
+ VERSION = '0.10.0'
6
6
  end
@@ -1,16 +1,16 @@
1
1
  # lib/gemwarrior/world.rb
2
2
  # World where the locations, monsters, items, etc. exist
3
3
 
4
- require 'yaml'
5
-
6
4
  require_relative 'game_options'
5
+ require_relative 'inventory'
7
6
  require_relative 'entities/item'
7
+ require_relative 'entities/items/herb'
8
8
  require_relative 'entities/location'
9
+ require_relative 'entities/player'
9
10
 
10
11
  module Gemwarrior
11
12
  class World
12
13
  # CONSTANTS
13
- LOCATION_DATA_FILE = File.expand_path('../../../data/locations.yml', __FILE__)
14
14
  ERROR_LIST_PARAM_INVALID = 'That is not something that can be listed.'
15
15
  ERROR_DESCRIBE_ENTITY_INVALID = 'You do not see that here.'
16
16
  WORLD_DIM_WIDTH = 10
@@ -18,13 +18,6 @@ module Gemwarrior
18
18
 
19
19
  attr_accessor :monsters, :locations, :player, :duration
20
20
 
21
- def initialize
22
- self.monsters = init_monsters
23
- self.locations = init_locations
24
- self.player = nil
25
- self.duration = nil
26
- end
27
-
28
21
  def print_vars
29
22
  puts "======================\n"
30
23
  puts "All Variables in World\n"
@@ -156,14 +149,14 @@ module Gemwarrior
156
149
 
157
150
  point.populate_monsters(self.monsters) unless point.checked_for_monsters?
158
151
 
159
- desc_text << "\n >> Monster(s): #{point.list_monsters.join(', ')}".colorize(:yellow) unless point.list_monsters.empty?
160
- desc_text << "\n >> Boss(es): #{point.list_bosses.join(', ')}".colorize(:red) unless point.list_bosses.empty?
161
- desc_text << "\n >> Thing(s): #{point.list_items.join(', ')}".colorize(:white) unless point.list_items.empty?
162
- desc_text << "\n >> Path(s): #{point.list_paths.join(', ')}".colorize(:white)
152
+ desc_text << "\n >> Monster(s): #{point.list_monsters.join(', ')}".colorize(:yellow) unless point.list_monsters.empty?
153
+ desc_text << "\n >> Boss(es): #{point.list_bosses.join(', ')}".colorize(:red) unless point.list_bosses.empty?
154
+ desc_text << "\n >> Thing(s): #{point.list_items.join(', ')}".colorize(:white) unless point.list_items.empty?
155
+ desc_text << "\n >> Path(s): #{point.list_paths.join(', ')}".colorize(:white)
163
156
 
164
157
  if GameOptions.data['debug_mode']
165
- desc_text << "\n >>> Actionable words: "
166
- desc_text << point.list_actionable_words.colorize(:white)
158
+ desc_text << "\n >>> Actionable: ".colorize(color: :red, background: :grey)
159
+ desc_text << point.list_actionable_words.colorize(color: :white, background: :grey)
167
160
  end
168
161
 
169
162
  return desc_text
@@ -224,85 +217,5 @@ module Gemwarrior
224
217
 
225
218
  return false
226
219
  end
227
-
228
- private
229
-
230
- def create_item_objects(item_names)
231
- items = []
232
- unless item_names.nil?
233
- item_names.each do |name|
234
- items.push(eval(name).new)
235
- end
236
- end
237
- return items
238
- end
239
-
240
- def create_boss_objects(bosses_names)
241
- bosses = []
242
- unless bosses_names.nil?
243
- bosses_names.each do |name|
244
- bosses.push(eval(name).new)
245
- end
246
- end
247
- return bosses
248
- end
249
-
250
- def init_monsters
251
- Dir.glob(File.expand_path('../entities/monsters/*.rb', __FILE__)).each do |item|
252
- require_relative item
253
- end
254
- Dir.glob(File.expand_path('../entities/monsters/bosses/*.rb', __FILE__)).each do |item|
255
- require_relative item
256
- end
257
-
258
- self.monsters = [
259
- Alexandrat.new,
260
- Amberoo.new,
261
- Amethystle.new,
262
- Apatiger.new,
263
- Aquamarine.new,
264
- Bloodstorm.new,
265
- Citrinaga.new,
266
- Coraliz.new,
267
- Cubicat.new,
268
- Diaman.new,
269
- Emerald.new,
270
- Garynetty.new
271
- ]
272
- end
273
-
274
- def init_locations
275
- Dir.glob(File.expand_path('../entities/items/*.rb', __FILE__)).each do |item|
276
- require_relative item
277
- end
278
-
279
- locations = []
280
-
281
- location_data = YAML.load_file(LOCATION_DATA_FILE)
282
-
283
- location_data.each do |l|
284
- locations.push(Location.new({
285
- name: l['name'],
286
- description: l['description'],
287
- danger_level: l['danger_level'],
288
- monster_level_range: l['monster_level_range'].nil? ? nil : l['monster_level_range']['lo']..l['monster_level_range']['hi'],
289
- coords: {
290
- x: l['coords']['x'],
291
- y: l['coords']['y'],
292
- z: l['coords']['z']
293
- },
294
- locs_connected: {
295
- north: l['locs_connected']['north'],
296
- east: l['locs_connected']['east'],
297
- south: l['locs_connected']['south'],
298
- west: l['locs_connected']['west']
299
- },
300
- items: create_item_objects(l['items']),
301
- bosses_abounding: create_boss_objects(l['bosses_abounding'])
302
- }))
303
- end
304
-
305
- return locations
306
- end
307
220
  end
308
221
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gemwarrior
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.39
4
+ version: 0.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Chadwick
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-16 00:00:00.000000000 Z
11
+ date: 2015-08-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: os
@@ -269,8 +269,8 @@ files:
269
269
  - README.md
270
270
  - Rakefile
271
271
  - bin/gemwarrior
272
- - data/fantasy_names.yml
273
- - data/locations.yml
272
+ - data/default_world.yaml
273
+ - data/fantasy_names.yaml
274
274
  - gemwarrior.gemspec
275
275
  - lib/gemwarrior/arena.rb
276
276
  - lib/gemwarrior/battle.rb
@@ -1,1182 +0,0 @@
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
- - Letter
17
- - Stone
18
- - Tent
19
-
20
- -
21
- name: 'Cave (Entrance)'
22
- description: 'A nearby, dank entrance to a cavern, surely filled with stacktites, stonemites, and rocksites.'
23
- danger_level: :low
24
- coords:
25
- x: 6
26
- y: 0
27
- z: 0
28
- locs_connected:
29
- north: false
30
- east: true
31
- south: false
32
- west: true
33
- monster_level_range:
34
- lo: 1
35
- hi: 2
36
-
37
- -
38
- name: 'Cave (Antechamber)'
39
- description: 'Now inside the cavern, you confirm there are stacktites, stonemites, rocksites, and even some pebblejites.'
40
- danger_level: :moderate
41
- coords:
42
- x: 7
43
- y: 0
44
- z: 0
45
- locs_connected:
46
- north: true
47
- east: true
48
- south: false
49
- west: true
50
- monster_level_range:
51
- lo: 2
52
- hi: 3
53
- items:
54
- - Stalactite
55
- - Stonemite
56
-
57
- -
58
- name: 'Cave (Nook)'
59
- description: 'A depression in the cave wall casts a shadow over a small rock shelf.'
60
- danger_level: :moderate
61
- monster_level_range:
62
- lo: 2
63
- hi: 3
64
- coords:
65
- x: 7
66
- y: 1
67
- z: 0
68
- locs_connected:
69
- north: false
70
- east: true
71
- south: true
72
- west: false
73
-
74
- -
75
- name: 'Cave (Dropoff)'
76
- description: 'Caves do not usually feature sudden chasms spilling down into an unknowable void, but this one does.'
77
- danger_level: :moderate
78
- coords:
79
- x: 8
80
- y: 1
81
- z: 0
82
- locs_connected:
83
- north: false
84
- east: false
85
- south: true
86
- west: true
87
- monster_level_range:
88
- lo: 2
89
- hi: 4
90
- items:
91
- - Ladder
92
-
93
- -
94
- name: 'Metal Tunnel (South Entrance)'
95
- 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 kind of metal. It is claustrophobic, to say the least.'
96
- danger_level: :moderate
97
- coords:
98
- x: 8
99
- y: 1
100
- z: -1
101
- locs_connected:
102
- north: true
103
- east: false
104
- south: false
105
- west: false
106
- monster_level_range:
107
- lo: 3
108
- hi: 4
109
-
110
- -
111
- name: 'Metal Tunnel'
112
- 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.'
113
- danger_level: :moderate
114
- coords:
115
- x: 8
116
- y: 2
117
- z: -1
118
- locs_connected:
119
- north: true
120
- east: false
121
- south: true
122
- west: false
123
- monster_level_range:
124
- lo: 3
125
- hi: 4
126
-
127
- -
128
- name: 'Metal Tunnel'
129
- 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.'
130
- danger_level: :moderate
131
- coords:
132
- x: 8
133
- y: 3
134
- z: -1
135
- locs_connected:
136
- north: true
137
- east: false
138
- south: true
139
- west: false
140
- monster_level_range:
141
- lo: 3
142
- hi: 4
143
-
144
- -
145
- name: 'Metal Tunnel'
146
- 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.'
147
- danger_level: :moderate
148
- coords:
149
- x: 8
150
- y: 4
151
- z: -1
152
- locs_connected:
153
- north: false
154
- east: false
155
- south: true
156
- west: true
157
- monster_level_range:
158
- lo: 3
159
- hi: 4
160
-
161
- -
162
- name: 'Metal Tunnel'
163
- 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.'
164
- danger_level: :moderate
165
- coords:
166
- x: 7
167
- y: 4
168
- z: -1
169
- locs_connected:
170
- north: false
171
- east: true
172
- south: false
173
- west: true
174
- monster_level_range:
175
- lo: 3
176
- hi: 4
177
-
178
- -
179
- name: 'Metal Tunnel'
180
- 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.'
181
- danger_level: :moderate
182
- coords:
183
- x: 6
184
- y: 4
185
- z: -1
186
- locs_connected:
187
- north: true
188
- east: true
189
- south: false
190
- west: false
191
- monster_level_range:
192
- lo: 3
193
- hi: 4
194
-
195
- -
196
- name: 'Metal Tunnel'
197
- 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.'
198
- danger_level: :moderate
199
- coords:
200
- x: 6
201
- y: 5
202
- z: -1
203
- locs_connected:
204
- north: false
205
- east: false
206
- south: true
207
- west: true
208
- monster_level_range:
209
- lo: 3
210
- hi: 4
211
-
212
- -
213
- name: 'Metal Tunnel'
214
- 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.'
215
- danger_level: :moderate
216
- coords:
217
- x: 5
218
- y: 5
219
- z: -1
220
- locs_connected:
221
- north: true
222
- east: true
223
- south: false
224
- west: true
225
- monster_level_range:
226
- lo: 3
227
- hi: 4
228
-
229
- -
230
- name: 'Tunnel Alcove'
231
- description: 'A moderately-sized alcove seems to have been blown out of the side of tunnel here, almost as if an actual bomb detonated, the remainder of the wall a mix of rock and wires.'
232
- danger_level: :moderate
233
- coords:
234
- x: 4
235
- y: 5
236
- z: -1
237
- locs_connected:
238
- north: false
239
- east: true
240
- south: false
241
- west: false
242
- monster_level_range:
243
- lo: 3
244
- hi: 4
245
- items:
246
- - SmallHole
247
-
248
- -
249
- name: 'Metal Tunnel'
250
- 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.'
251
- danger_level: :moderate
252
- coords:
253
- x: 5
254
- y: 6
255
- z: -1
256
- locs_connected:
257
- north: true
258
- east: false
259
- south: true
260
- west: false
261
- monster_level_range:
262
- lo: 3
263
- hi: 4
264
-
265
- -
266
- name: 'Metal Tunnel (North Entrance)'
267
- 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.'
268
- danger_level: :moderate
269
- coords:
270
- x: 5
271
- y: 7
272
- z: -1
273
- locs_connected:
274
- north: false
275
- east: false
276
- south: true
277
- west: false
278
- monster_level_range:
279
- lo: 3
280
- hi: 4
281
- items:
282
- - Rope
283
-
284
- -
285
- name: 'Snow Fields (Southeast)'
286
- description: 'It is as if the color palette for this still and frozen scene before you consisted only of whites, off-whites, and vanilla.'
287
- danger_level: :low
288
- coords:
289
- x: 5
290
- y: 7
291
- z: 0
292
- locs_connected:
293
- north: true
294
- east: false
295
- south: false
296
- west: true
297
- monster_level_range:
298
- lo: 5
299
- hi: 6
300
-
301
- -
302
- name: 'Snow Fields (South-Southeast)'
303
- description: 'It is as if the color palette for this still and frozen scene before you consisted only of whites, off-whites, and vanilla.'
304
- danger_level: :moderate
305
- coords:
306
- x: 4
307
- y: 7
308
- z: 0
309
- locs_connected:
310
- north: true
311
- east: true
312
- south: false
313
- west: true
314
- monster_level_range:
315
- lo: 5
316
- hi: 6
317
-
318
- -
319
- name: 'Snow Fields (South)'
320
- description: 'It is as if the color palette for this still and frozen scene before you consisted only of whites, off-whites, and vanilla.'
321
- danger_level: :moderate
322
- coords:
323
- x: 3
324
- y: 7
325
- z: 0
326
- locs_connected:
327
- north: true
328
- east: true
329
- south: false
330
- west: true
331
- monster_level_range:
332
- lo: 5
333
- hi: 6
334
-
335
- -
336
- name: 'Snow Fields (South-Southwest)'
337
- description: 'It is as if the color palette for this still and frozen scene before you consisted only of whites, off-whites, and vanilla.'
338
- danger_level: :moderate
339
- coords:
340
- x: 2
341
- y: 7
342
- z: 0
343
- locs_connected:
344
- north: true
345
- east: true
346
- south: false
347
- west: true
348
- monster_level_range:
349
- lo: 5
350
- hi: 6
351
-
352
- -
353
- name: 'Snow Fields (Southwest)'
354
- description: 'It is as if the color palette for this still and frozen scene before you consisted only of whites, off-whites, and vanilla.'
355
- danger_level: :moderate
356
- coords:
357
- x: 1
358
- y: 7
359
- z: 0
360
- locs_connected:
361
- north: true
362
- east: true
363
- south: false
364
- west: false
365
- monster_level_range:
366
- lo: 5
367
- hi: 6
368
-
369
- -
370
- name: 'Snow Fields (Northwest)'
371
- description: 'It is as if the color palette for this still and frozen scene before you consisted only of whites, off-whites, and vanilla.'
372
- danger_level: :moderate
373
- coords:
374
- x: 1
375
- y: 8
376
- z: 0
377
- locs_connected:
378
- north: false
379
- east: true
380
- south: true
381
- west: false
382
- monster_level_range:
383
- lo: 5
384
- hi: 6
385
- items:
386
- - Snowman
387
-
388
- -
389
- name: 'Snow Fields (North-Northwest)'
390
- description: 'It is as if the color palette for this still and frozen scene before you consisted only of whites, off-whites, and vanilla.'
391
- danger_level: :moderate
392
- coords:
393
- x: 2
394
- y: 8
395
- z: 0
396
- locs_connected:
397
- north: false
398
- east: true
399
- south: true
400
- west: true
401
- monster_level_range:
402
- lo: 5
403
- hi: 6
404
-
405
- -
406
- name: 'Snow Fields (North)'
407
- description: 'It is as if the color palette for this still and frozen scene before you consisted only of whites, off-whites, and vanilla.'
408
- danger_level: :moderate
409
- coords:
410
- x: 3
411
- y: 8
412
- z: 0
413
- locs_connected:
414
- north: false
415
- east: true
416
- south: true
417
- west: true
418
- monster_level_range:
419
- lo: 5
420
- hi: 6
421
-
422
- -
423
- name: 'Snow Fields (North-Northeast)'
424
- description: 'It is as if the color palette for this still and frozen scene before you consisted only of whites, off-whites, and vanilla.'
425
- danger_level: :moderate
426
- coords:
427
- x: 4
428
- y: 8
429
- z: 0
430
- locs_connected:
431
- north: false
432
- east: true
433
- south: true
434
- west: true
435
- monster_level_range:
436
- lo: 5
437
- hi: 6
438
-
439
- -
440
- name: 'Snow Fields (Northeast)'
441
- description: 'It is as if the color palette for this still and frozen scene before you consisted only of whites, off-whites, and vanilla.'
442
- danger_level: :moderate
443
- coords:
444
- x: 5
445
- y: 8
446
- z: 0
447
- locs_connected:
448
- north: false
449
- east: false
450
- south: true
451
- west: true
452
- monster_level_range:
453
- lo: 5
454
- hi: 6
455
-
456
- -
457
- name: 'Cave (Causeway)'
458
- description: 'Paths lead north and west as a dank, musty smell permeates your sinuses.'
459
- danger_level: :moderate
460
- coords:
461
- x: 8
462
- y: 0
463
- z: 0
464
- locs_connected:
465
- north: true
466
- east: false
467
- south: false
468
- west: true
469
- monster_level_range:
470
- lo: 2
471
- hi: 3
472
- items:
473
- - Map
474
- -
475
- name: 'Forest (Southeast)'
476
- description: 'Trees exist here, in droves.'
477
- danger_level: :low
478
- coords:
479
- x: 4
480
- y: 0
481
- z: 0
482
- locs_connected:
483
- north: true
484
- east: true
485
- south: false
486
- west: false
487
- monster_level_range:
488
- lo: 1
489
- hi: 3
490
- items:
491
- - Tree
492
-
493
- -
494
- name: 'Forest (Northeast)'
495
- description: 'You see much foliage.'
496
- danger_level: :low
497
- coords:
498
- x: 4
499
- y: 1
500
- z: 0
501
- locs_connected:
502
- north: false
503
- east: false
504
- south: true
505
- west: true
506
- monster_level_range:
507
- lo: 1
508
- hi: 3
509
-
510
- -
511
- name: 'Forest (Northwest)'
512
- description: 'The amount of leaves and branches and trunks you can see boggles the mind.'
513
- danger_level: :low
514
- coords:
515
- x: 3
516
- y: 1
517
- z: 0
518
- locs_connected:
519
- north: false
520
- east: true
521
- south: true
522
- west: false
523
- monster_level_range:
524
- lo: 1
525
- hi: 3
526
- items:
527
- - Feather
528
-
529
- -
530
- name: 'Forest (Southwest)'
531
- description: 'While you continue to be impressed at the sheer size of this forest, a clearing appears to open up to the west.'
532
- danger_level: :low
533
- coords:
534
- x: 3
535
- y: 0
536
- z: 0
537
- locs_connected:
538
- north: true
539
- east: false
540
- south: false
541
- west: true
542
- monster_level_range:
543
- lo: 1
544
- hi: 3
545
-
546
- -
547
- name: 'Pain Quarry (Southeast)'
548
- description: 'Horrible terribleness emanates from this desolate land of unkind misery.'
549
- danger_level: :assured
550
- coords:
551
- x: 2
552
- y: 0
553
- z: 0
554
- locs_connected:
555
- north: true
556
- east: true
557
- south: false
558
- west: true
559
- monster_level_range:
560
- lo: 5
561
- hi: 20
562
- bosses_abounding:
563
- - Garynetty
564
-
565
- -
566
- name: 'Pain Quarry (East)'
567
- description: 'Horrible terribleness emanates from this desolate land of unkind misery.'
568
- danger_level: :assured
569
- coords:
570
- x: 2
571
- y: 1
572
- z: 0
573
- locs_connected:
574
- north: false
575
- east: false
576
- south: true
577
- west: true
578
- monster_level_range:
579
- lo: 5
580
- hi: 20
581
- bosses_abounding:
582
- - Garynetty
583
-
584
- -
585
- name: 'Pain Quarry (Central)'
586
- description: 'Horrible terribleness emanates from this desolate land of unkind misery.'
587
- danger_level: :assured
588
- coords:
589
- x: 1
590
- y: 1
591
- z: 0
592
- locs_connected:
593
- north: true
594
- east: true
595
- south: true
596
- west: true
597
- monster_level_range:
598
- lo: 5
599
- hi: 20
600
- bosses_abounding:
601
- - Garynetty
602
-
603
- -
604
- name: 'Pain Quarry (South)'
605
- description: 'Horrible terribleness emanates from this desolate land of unkind misery.'
606
- danger_level: :assured
607
- coords:
608
- x: 1
609
- y: 0
610
- z: 0
611
- locs_connected:
612
- north: true
613
- east: true
614
- south: false
615
- west: false
616
- monster_level_range:
617
- lo: 5
618
- hi: 20
619
- bosses_abounding:
620
- - Garynetty
621
-
622
- -
623
- name: 'Pain Quarry (West)'
624
- description: 'Horrible terribleness emanates from this desolate land of unkind misery.'
625
- danger_level: :assured
626
- coords:
627
- x: 0
628
- y: 1
629
- z: 0
630
- locs_connected:
631
- north: true
632
- east: true
633
- south: false
634
- west: false
635
- monster_level_range:
636
- lo: 5
637
- hi: 20
638
- bosses_abounding:
639
- - Garynetty
640
-
641
- -
642
- name: 'Pain Quarry (Northwest)'
643
- description: 'Horrible terribleness emanates from this desolate land of unkind misery.'
644
- danger_level: :assured
645
- coords:
646
- x: 0
647
- y: 2
648
- z: 0
649
- locs_connected:
650
- north: false
651
- east: true
652
- south: true
653
- west: false
654
- monster_level_range:
655
- lo: 5
656
- hi: 20
657
- bosses_abounding:
658
- - Garynetty
659
-
660
- -
661
- name: 'Pain Quarry (North)'
662
- description: 'Horrible terribleness emanates from this desolate land of unkind misery.'
663
- danger_level: :assured
664
- coords:
665
- x: 1
666
- y: 2
667
- z: 0
668
- locs_connected:
669
- north: false
670
- east: false
671
- south: true
672
- west: true
673
- monster_level_range:
674
- lo: 5
675
- hi: 20
676
- bosses_abounding:
677
- - Garynetty
678
-
679
- -
680
- name: 'Plains (Outskirts)'
681
- description: 'A lot of grass and nothing, stretching out northward.'
682
- danger_level: :low
683
- coords:
684
- x: 5
685
- y: 1
686
- z: 0
687
- locs_connected:
688
- north: true
689
- east: false
690
- south: true
691
- west: false
692
- monster_level_range:
693
- lo: 2
694
- hi: 3
695
-
696
- -
697
- name: 'Plains (Fields)'
698
- description: 'Now you are plum smack dab in the middle of rolling fields.'
699
- danger_level: :low
700
- coords:
701
- x: 5
702
- y: 2
703
- z: 0
704
- locs_connected:
705
- north: true
706
- east: false
707
- south: true
708
- west: false
709
- monster_level_range:
710
- lo: 2
711
- hi: 3
712
-
713
- -
714
- name: 'Plains (South of River)'
715
- description: 'A raging river borders the northern side of this bucolic vista. Much raucous noise comes from the east.'
716
- danger_level: :low
717
- coords:
718
- x: 5
719
- y: 3
720
- z: 0
721
- locs_connected:
722
- north: false
723
- east: true
724
- south: true
725
- west: true
726
- monster_level_range:
727
- lo: 2
728
- hi: 3
729
-
730
- -
731
- name: 'Plains (South-Southeast)'
732
- description: 'The river continues to flow north of you, as plains stretch out all around. The noise from the east is quite loud, and a building can be seen in the near distance.'
733
- danger_level: :low
734
- coords:
735
- x: 6
736
- y: 3
737
- z: 0
738
- locs_connected:
739
- north: false
740
- east: true
741
- south: false
742
- west: true
743
- monster_level_range:
744
- lo: 2
745
- hi: 3
746
-
747
- -
748
- name: 'Plains (Arena Entrance)'
749
- description: 'Well above the noise of the raging river nearby, the din of the mighty Arena to the east reaches its near fever-pitch just outside. The door, and battle, beckons.'
750
- danger_level: :low
751
- coords:
752
- x: 7
753
- y: 3
754
- z: 0
755
- locs_connected:
756
- north: false
757
- east: true
758
- south: false
759
- west: true
760
- monster_level_range:
761
- lo: 2
762
- hi: 3
763
- items:
764
- - ArenaDoor
765
-
766
- -
767
- name: 'Arena'
768
- description: 'Dangerous and risky, the Arena allows would-be monster-slayers and adventurers fight against an infinite number of beasts in order to test their mettle and improve their skill...for a small fee, of course.'
769
- danger_level: :none
770
- coords:
771
- x: 8
772
- y: 3
773
- z: 0
774
- locs_connected:
775
- north: false
776
- east: false
777
- south: false
778
- west: true
779
- items:
780
- - ArenaMaster
781
-
782
- -
783
- name: 'Plains (South of Bridge)'
784
- description: 'To the north of these fields lies a bridge that may be crossable.'
785
- danger_level: :low
786
- coords:
787
- x: 4
788
- y: 3
789
- z: 0
790
- locs_connected:
791
- north: true
792
- east: true
793
- south: false
794
- west: true
795
- monster_level_range:
796
- lo: 2
797
- hi: 3
798
-
799
- -
800
- name: 'Plains (Hut)'
801
- description: 'A straw hut sits alone, curiously, in a patch of grass, sticks, and straw.'
802
- danger_level: :none
803
- coords:
804
- x: 3
805
- y: 3
806
- z: 0
807
- locs_connected:
808
- north: false
809
- east: true
810
- south: false
811
- west: false
812
-
813
- -
814
- name: 'River Bridge'
815
- description: 'Sturdy and safe, this bridge will get you across the otherwise unpassable river you see below.'
816
- danger_level: :moderate
817
- coords:
818
- x: 4
819
- y: 4
820
- z: 0
821
- locs_connected:
822
- north: true
823
- east: false
824
- south: true
825
- west: false
826
- monster_level_range:
827
- lo: 3
828
- hi: 5
829
-
830
- -
831
- name: 'Plains (North of Bridge)'
832
- 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. A path to the east stretches out into a valley.'
833
- danger_level: :low
834
- coords:
835
- x: 4
836
- y: 5
837
- z: 0
838
- locs_connected:
839
- north: false
840
- east: true
841
- south: true
842
- west: true
843
- monster_level_range:
844
- lo: 2
845
- hi: 3
846
-
847
- -
848
- name: 'Peridover Valley (Outskirts)'
849
- description: 'The road slopes down slightly here, but in the near distance you can see that it slopes way more slopily.'
850
- danger_level: :low
851
- coords:
852
- x: 5
853
- y: 5
854
- z: 0
855
- locs_connected:
856
- north: false
857
- east: true
858
- south: false
859
- west: true
860
- monster_level_range:
861
- lo: 2
862
- hi: 3
863
-
864
- -
865
- name: 'Peridover Valley (Central)'
866
- description: 'The Peridover Valley is in full effect here, sloping down into a reverse plateau. Bones of wild animals litter the area.'
867
- danger_level: :moderate
868
- coords:
869
- x: 6
870
- y: 5
871
- z: 0
872
- locs_connected:
873
- north: false
874
- east: true
875
- south: false
876
- west: true
877
- monster_level_range:
878
- lo: 3
879
- hi: 4
880
-
881
- -
882
- name: 'Peridover Valley (Outskirts)'
883
- description: 'Sloping way down to the west, but leveling off here, a din of civilization calls from the north.'
884
- danger_level: :low
885
- coords:
886
- x: 7
887
- y: 5
888
- z: 0
889
- locs_connected:
890
- north: true
891
- east: false
892
- south: false
893
- west: true
894
- monster_level_range:
895
- lo: 2
896
- hi: 3
897
-
898
- -
899
- name: 'South of Spinelia'
900
- description: 'Northwardly, you can hear general town noise, such as people scuffling, nattering, and more or less existing in a people kind of way.'
901
- danger_level: :low
902
- coords:
903
- x: 7
904
- y: 6
905
- z: 0
906
- locs_connected:
907
- north: true
908
- east: false
909
- south: true
910
- west: false
911
- monster_level_range:
912
- lo: 1
913
- hi: 2
914
-
915
- -
916
- name: 'Spinelia (Southwest)'
917
- description: 'Near the front entrance to Spinelia is the market corner. Merchants are all around, hawking wares and giving those nearby walking stares.'
918
- danger_level: :none
919
- coords:
920
- x: 7
921
- y: 7
922
- z: 0
923
- locs_connected:
924
- north: true
925
- east: true
926
- south: true
927
- west: false
928
- items:
929
- - WareHawker
930
-
931
- -
932
- name: 'Spinelia (Southeast)'
933
- description: 'The southeast of Spinelia contains a bunch of people, just kind of hanging out.'
934
- danger_level: :none
935
- coords:
936
- x: 8
937
- y: 7
938
- z: 0
939
- locs_connected:
940
- north: true
941
- east: false
942
- south: false
943
- west: true
944
-
945
- -
946
- name: 'Spinelia (Northeast)'
947
- description: 'Northeasternly speaking, Spinelia contains a pen with a few animals calmly eating food, and not really having much impact on their environment.'
948
- danger_level: :none
949
- coords:
950
- x: 8
951
- y: 8
952
- z: 0
953
- locs_connected:
954
- north: false
955
- east: false
956
- south: true
957
- west: true
958
-
959
- -
960
- name: 'Spinelia (Northwest)'
961
- description: 'Residences line the northwest corner of Spinela, each one similar to each other, made of granite and stone, featuring a single window and a single door. One particular house''s hallmark appears to be a rather fanciful woman leaning on its facade, looking shifty.'
962
- danger_level: :none
963
- coords:
964
- x: 7
965
- y: 8
966
- z: 0
967
- locs_connected:
968
- north: false
969
- east: true
970
- south: true
971
- west: false
972
-
973
- -
974
- name: 'Rock Piles'
975
- description: 'Piles of rocks, both big and small, are placed here and there, a testament to someone''s surely back-breaking labor.'
976
- danger_level: :moderate
977
- coords:
978
- x: 3
979
- y: 5
980
- z: 0
981
- locs_connected:
982
- north: false
983
- east: true
984
- south: false
985
- west: false
986
- monster_level_range:
987
- lo: 3
988
- hi: 4
989
- items:
990
- - Gun
991
- - Pedestal
992
-
993
- -
994
- name: 'Sky Tower (Entryway)'
995
- description: 'You feel unsettled as you gaze upon the wondrous proportions of Emerald''s home.'
996
- danger_level: :moderate
997
- coords:
998
- x: 8
999
- y: 6
1000
- z: 1
1001
- locs_connected:
1002
- north: true
1003
- east: true
1004
- south: false
1005
- west: true
1006
- monster_level_range:
1007
- lo: 3
1008
- hi: 4
1009
- items:
1010
- - FloorTile
1011
-
1012
- -
1013
- name: 'Sky Tower (Cloud Garden)'
1014
- description: 'A perfectly-maintained array of wispy flowers and other ethereal plantlife contained within a cumulonimbus barrier.'
1015
- danger_level: :moderate
1016
- coords:
1017
- x: 8
1018
- y: 7
1019
- z: 1
1020
- locs_connected:
1021
- north: false
1022
- east: false
1023
- south: true
1024
- west: false
1025
- monster_level_range:
1026
- lo: 3
1027
- hi: 4
1028
- items:
1029
- - Flower
1030
- - Keystone
1031
- - Pond
1032
-
1033
- -
1034
- name: 'Sky Tower (Armory)'
1035
- description: 'Weapons of all kinds litter the ground and are hung on hooks from the wall. Tower assailants beware/rejoice!'
1036
- danger_level: :moderate
1037
- coords:
1038
- x: 7
1039
- y: 6
1040
- z: 1
1041
- locs_connected:
1042
- north: true
1043
- east: true
1044
- south: false
1045
- west: false
1046
- monster_level_range:
1047
- lo: 3
1048
- hi: 4
1049
- items:
1050
- - Dehumidifier
1051
-
1052
- -
1053
- name: 'Sky Tower (West Hallway)'
1054
- description: 'The hallway seems to stretch on for days.'
1055
- danger_level: :moderate
1056
- coords:
1057
- x: 7
1058
- y: 7
1059
- z: 1
1060
- locs_connected:
1061
- north: true
1062
- east: false
1063
- south: true
1064
- west: false
1065
- monster_level_range:
1066
- lo: 3
1067
- hi: 4
1068
-
1069
- -
1070
- name: 'Sky Tower (Waterfalls)'
1071
- description: 'The seemingly neverending deluge of water causes this room to be quite loud, yet pretty.'
1072
- danger_level: :moderate
1073
- coords:
1074
- x: 7
1075
- y: 8
1076
- z: 1
1077
- locs_connected:
1078
- north: false
1079
- east: true
1080
- south: true
1081
- west: false
1082
- monster_level_range:
1083
- lo: 3
1084
- hi: 4
1085
- items:
1086
- - Waterfall
1087
-
1088
- -
1089
- name: 'Sky Tower (Massive Door)'
1090
- description: 'Before you lies a massive collection of cumulus clouds that form into a seemingly impenetrable door, beyond which may well be your doom.'
1091
- danger_level: :moderate
1092
- coords:
1093
- x: 8
1094
- y: 8
1095
- z: 1
1096
- locs_connected:
1097
- north: false
1098
- east: true
1099
- south: false
1100
- west: true
1101
- monster_level_range:
1102
- lo: 4
1103
- hi: 5
1104
- items:
1105
- - MassiveDoor
1106
-
1107
- -
1108
- name: 'Sky Tower (Throne Room)'
1109
- description: 'There, on a mighty seat made of broken dreams, sits Emerald himself, staring at you coldly, silently.'
1110
- danger_level: :high
1111
- coords:
1112
- x: 8
1113
- y: 9
1114
- z: 1
1115
- locs_connected:
1116
- north: false
1117
- east: false
1118
- south: true
1119
- west: false
1120
- monster_level_range:
1121
- lo: 5
1122
- hi: 7
1123
- items:
1124
- - Throne
1125
- bosses_abounding:
1126
- - Emerald
1127
-
1128
- -
1129
- name: 'Sky Tower (Lounge)'
1130
- description: 'Nothing but a simple couch, which looks very comfortable, exists in this corner of the tower.'
1131
- danger_level: :moderate
1132
- coords:
1133
- x: 9
1134
- y: 8
1135
- z: 1
1136
- locs_connected:
1137
- north: false
1138
- east: false
1139
- south: true
1140
- west: true
1141
- monster_level_range:
1142
- lo: 3
1143
- hi: 4
1144
- items:
1145
- - Couch
1146
-
1147
- -
1148
- name: 'Sky Tower (East Hallway)'
1149
- description: 'Longish and neverending is what you might say about this stretch of the tower.'
1150
- danger_level: :moderate
1151
- coords:
1152
- x: 9
1153
- y: 7
1154
- z: 1
1155
- locs_connected:
1156
- north: true
1157
- east: false
1158
- south: true
1159
- west: false
1160
- monster_level_range:
1161
- lo: 3
1162
- hi: 4
1163
-
1164
- -
1165
- name: 'Sky Tower (Kitchen)'
1166
- description: 'This kitchen looks well-used, as appliances abound, and leftover food sits atop counters.'
1167
- danger_level: :moderate
1168
- coords:
1169
- x: 9
1170
- y: 6
1171
- z: 1
1172
- locs_connected:
1173
- north: true
1174
- east: false
1175
- south: false
1176
- west: true
1177
- monster_level_range:
1178
- lo: 3
1179
- hi: 4
1180
- items:
1181
- - Apple
1182
- - Cup