gemwarrior 0.10.8 → 0.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (93) hide show
  1. checksums.yaml +4 -4
  2. data/bin/gemwarrior +0 -0
  3. data/data/default_world.yaml +282 -436
  4. data/gemwarrior.gemspec +1 -1
  5. data/lib/gemwarrior/arena.rb +17 -17
  6. data/lib/gemwarrior/battle.rb +146 -77
  7. data/lib/gemwarrior/entities/armor.rb +34 -0
  8. data/lib/gemwarrior/entities/armor/iron_helmet.rb +17 -0
  9. data/lib/gemwarrior/entities/creature.rb +81 -4
  10. data/lib/gemwarrior/entities/creatures/cow.rb +24 -0
  11. data/lib/gemwarrior/entities/{items → creatures}/goat.rb +9 -11
  12. data/lib/gemwarrior/entities/creatures/pig.rb +24 -0
  13. data/lib/gemwarrior/entities/entity.rb +59 -5
  14. data/lib/gemwarrior/entities/item.rb +10 -22
  15. data/lib/gemwarrior/entities/items/apple.rb +2 -5
  16. data/lib/gemwarrior/entities/items/arena_door.rb +2 -6
  17. data/lib/gemwarrior/entities/items/bed.rb +7 -11
  18. data/lib/gemwarrior/entities/items/bookcase.rb +57 -0
  19. data/lib/gemwarrior/entities/items/bullet.rb +25 -0
  20. data/lib/gemwarrior/entities/items/couch.rb +6 -10
  21. data/lib/gemwarrior/entities/items/cup.rb +2 -5
  22. data/lib/gemwarrior/entities/items/dehumidifier.rb +3 -6
  23. data/lib/gemwarrior/entities/items/feather.rb +2 -5
  24. data/lib/gemwarrior/entities/items/floor_tile.rb +6 -10
  25. data/lib/gemwarrior/entities/items/flower.rb +1 -4
  26. data/lib/gemwarrior/entities/items/herb.rb +12 -13
  27. data/lib/gemwarrior/entities/items/keystone.rb +2 -5
  28. data/lib/gemwarrior/entities/items/ladder.rb +7 -11
  29. data/lib/gemwarrior/entities/items/letter.rb +20 -23
  30. data/lib/gemwarrior/entities/items/map.rb +3 -6
  31. data/lib/gemwarrior/entities/items/massive_door.rb +3 -7
  32. data/lib/gemwarrior/entities/items/pedestal.rb +6 -10
  33. data/lib/gemwarrior/entities/items/pond.rb +4 -8
  34. data/lib/gemwarrior/entities/items/rope.rb +4 -8
  35. data/lib/gemwarrior/entities/items/small_hole.rb +15 -77
  36. data/lib/gemwarrior/entities/items/snowman.rb +5 -9
  37. data/lib/gemwarrior/entities/items/sparkly_thing.rb +3 -7
  38. data/lib/gemwarrior/entities/items/stonemite.rb +2 -6
  39. data/lib/gemwarrior/entities/items/tent.rb +3 -6
  40. data/lib/gemwarrior/entities/items/throne.rb +7 -6
  41. data/lib/gemwarrior/entities/items/tree.rb +2 -6
  42. data/lib/gemwarrior/entities/items/waterfall.rb +9 -8
  43. data/lib/gemwarrior/entities/location.rb +49 -43
  44. data/lib/gemwarrior/entities/monster.rb +34 -28
  45. data/lib/gemwarrior/entities/monsters/alexandrat.rb +3 -3
  46. data/lib/gemwarrior/entities/monsters/amberoo.rb +3 -3
  47. data/lib/gemwarrior/entities/monsters/amethystle.rb +3 -3
  48. data/lib/gemwarrior/entities/monsters/apatiger.rb +3 -3
  49. data/lib/gemwarrior/entities/monsters/aquamarine.rb +3 -3
  50. data/lib/gemwarrior/entities/monsters/bloodstorm.rb +3 -3
  51. data/lib/gemwarrior/entities/monsters/bosses/emerald.rb +12 -27
  52. data/lib/gemwarrior/entities/monsters/bosses/garynetty.rb +17 -5
  53. data/lib/gemwarrior/entities/monsters/bosses/jaspern.rb +66 -0
  54. data/lib/gemwarrior/entities/monsters/citrinaga.rb +3 -3
  55. data/lib/gemwarrior/entities/monsters/coraliz.rb +3 -3
  56. data/lib/gemwarrior/entities/monsters/cubicat.rb +3 -3
  57. data/lib/gemwarrior/entities/monsters/diaman.rb +3 -3
  58. data/lib/gemwarrior/entities/{items → people}/arena_master.rb +8 -13
  59. data/lib/gemwarrior/entities/{items → people}/drunk_man.rb +14 -35
  60. data/lib/gemwarrior/entities/people/queen_ruby.rb +71 -0
  61. data/lib/gemwarrior/entities/people/rockney.rb +132 -0
  62. data/lib/gemwarrior/entities/{items → people}/shifty_woman.rb +7 -12
  63. data/lib/gemwarrior/entities/{items → people}/thin_man.rb +9 -14
  64. data/lib/gemwarrior/entities/people/ware_hawker.rb +153 -0
  65. data/lib/gemwarrior/entities/person.rb +20 -0
  66. data/lib/gemwarrior/entities/player.rb +102 -60
  67. data/lib/gemwarrior/entities/weapon.rb +38 -0
  68. data/lib/gemwarrior/entities/{items → weapons}/dagger.rb +5 -7
  69. data/lib/gemwarrior/entities/{items → weapons}/gun.rb +8 -10
  70. data/lib/gemwarrior/entities/{items → weapons}/mace.rb +6 -9
  71. data/lib/gemwarrior/entities/{items → weapons}/opalaser.rb +5 -7
  72. data/lib/gemwarrior/entities/weapons/spear.rb +23 -0
  73. data/lib/gemwarrior/entities/{items → weapons}/stalactite.rb +5 -7
  74. data/lib/gemwarrior/entities/weapons/stone.rb +23 -0
  75. data/lib/gemwarrior/evaluator.rb +111 -107
  76. data/lib/gemwarrior/game.rb +61 -29
  77. data/lib/gemwarrior/game_assets.rb +76 -0
  78. data/lib/gemwarrior/inventory.rb +77 -43
  79. data/lib/gemwarrior/misc/animation.rb +17 -13
  80. data/lib/gemwarrior/misc/{music.rb → audio.rb} +15 -7
  81. data/lib/gemwarrior/misc/audio_cues.rb +133 -0
  82. data/lib/gemwarrior/misc/formatting.rb +9 -9
  83. data/lib/gemwarrior/misc/player_levels.rb +21 -0
  84. data/lib/gemwarrior/repl.rb +32 -31
  85. data/lib/gemwarrior/version.rb +1 -1
  86. data/lib/gemwarrior/world.rb +155 -134
  87. metadata +34 -22
  88. data/lib/gemwarrior/entities/items/cow.rb +0 -26
  89. data/lib/gemwarrior/entities/items/pig.rb +0 -26
  90. data/lib/gemwarrior/entities/items/queen_ruby.rb +0 -62
  91. data/lib/gemwarrior/entities/items/spear.rb +0 -26
  92. data/lib/gemwarrior/entities/items/stone.rb +0 -25
  93. data/lib/gemwarrior/entities/items/ware_hawker.rb +0 -93
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d718994a9f914e593cfd757f77a1794583c2a805
4
- data.tar.gz: 710b04151af8c0fe27d7fe38c8c3881202a154a0
3
+ metadata.gz: babc9fa938add431037f3358093781acb3ed0a5b
4
+ data.tar.gz: cc90ad3fb0b5eef65f5f4e2ea50c907fe896d895
5
5
  SHA512:
6
- metadata.gz: 70792929d8361fa56fdebe0b037866e2009c3313b9a84c879306fa77bdb55f1e033332658761917fe65bfb61450da2ed36525763e605c5f896181471595d7667
7
- data.tar.gz: a40fc1a74bf7791469b59b79c3dcec586299067dfdb981e51369da85b980b837582a522e12a2f3942d1f7ebccfae420e1740fd9abb825501d5f4434d6988cb25
6
+ metadata.gz: 8719c4ea0561368a4d2b18e9245c1d96e5e4657f74cf56213018157197d59b38e912a432c3fe12730113edad3d19214061875546bdad3adb90e283ed194ecccf
7
+ data.tar.gz: 263340f58185a801a95eff588bacdf131f77ad3231b0083b66db805ec598e14e60957225752ff0e3303036334c8fa614388bc3f57dd4a77a38a203f747d5146d
data/bin/gemwarrior CHANGED
File without changes
@@ -1,278 +1,8 @@
1
1
  --- !ruby/object:Gemwarrior::World
2
- monsters:
3
- - !ruby/object:Gemwarrior::Alexandrat
4
- inventory: !ruby/object:Gemwarrior::Inventory
5
- items: []
6
- weapon:
7
- name: alexandrat
8
- description: Tiny, but fierce, color-changing rodent.
9
- face: ugly
10
- hands: gnarled
11
- mood: unchipper
12
- level: 1
13
- hp_cur: 3
14
- hp_max: 3
15
- atk_lo: 1
16
- atk_hi: 1
17
- defense: 1
18
- dexterity: 3
19
- rox: 3
20
- xp: 2
21
- battlecry: Bitey, bitey!
22
- - !ruby/object:Gemwarrior::Amberoo
23
- inventory: !ruby/object:Gemwarrior::Inventory
24
- items:
25
- - &1 !ruby/object:Gemwarrior::Herb
26
- equipped: false
27
- consumable: true
28
- used: false
29
- number_of_uses:
30
- name: herb
31
- description: Green and leafy, this wild herb looks edible.
32
- atk_lo:
33
- atk_hi:
34
- takeable: true
35
- useable: true
36
- equippable: false
37
- weapon:
38
- name: amberoo
39
- description: Fossilized and jumping around like an adorably dangerous threat from
40
- the past.
41
- face: punchy
42
- hands: balled
43
- mood: jumpy
44
- level: 1
45
- hp_cur: 2
46
- hp_max: 2
47
- atk_lo: 1
48
- atk_hi: 2
49
- defense: 2
50
- dexterity: 4
51
- rox: 2
52
- xp: 1
53
- battlecry: I'm hoppin' mad!
54
- - !ruby/object:Gemwarrior::Amethystle
55
- inventory: !ruby/object:Gemwarrior::Inventory
56
- items:
57
- - *1
58
- weapon:
59
- name: amethystle
60
- description: Sober and contemplative, it moves with purplish tentacles swaying in
61
- the breeze.
62
- face: sharp
63
- hands: loose
64
- mood: mesmerizing
65
- level: 2
66
- hp_cur: 4
67
- hp_max: 4
68
- atk_lo: 3
69
- atk_hi: 5
70
- defense: 2
71
- dexterity: 2
72
- rox: 6
73
- xp: 2
74
- battlecry: You've found yourself in quite the thorny issue!
75
- - !ruby/object:Gemwarrior::Apatiger
76
- inventory: !ruby/object:Gemwarrior::Inventory
77
- items: []
78
- weapon:
79
- name: apatiger
80
- description: Apathetic about most everything as it lazes around, save for eating
81
- you.
82
- face: calloused
83
- hands: soft
84
- mood: apathetic
85
- level: 4
86
- hp_cur: 12
87
- hp_max: 12
88
- atk_lo: 6
89
- atk_hi: 6
90
- defense: 7
91
- dexterity: 5
92
- rox: 12
93
- xp: 8
94
- battlecry: Gggggggggrrrrrrrrrrrrrrrrooooooooooowwwwwwwwwwwwlllllllll!
95
- - !ruby/object:Gemwarrior::Aquamarine
96
- inventory: !ruby/object:Gemwarrior::Inventory
97
- items: []
98
- weapon:
99
- name: aquamarine
100
- description: It is but one of the few, the proud, the underwater.
101
- face: strained
102
- hands: hairy
103
- mood: tempered
104
- level: 4
105
- hp_cur: 11
106
- hp_max: 11
107
- atk_lo: 5
108
- atk_hi: 7
109
- defense: 4
110
- dexterity: 5
111
- rox: 11
112
- xp: 8
113
- battlecry: Attention! You are about to get smashed!
114
- - !ruby/object:Gemwarrior::Bloodstorm
115
- inventory: !ruby/object:Gemwarrior::Inventory
116
- items:
117
- - *1
118
- weapon:
119
- name: bloodstorm
120
- description: A literal swirling, maniacal vortex of human hemoglobin.
121
- face: bloody
122
- hands: bloody
123
- mood: boiling
124
- level: 6
125
- hp_cur: 15
126
- hp_max: 15
127
- atk_lo: 7
128
- atk_hi: 16
129
- defense: 6
130
- dexterity: 6
131
- rox: 12
132
- xp: 11
133
- battlecry: "/swirls"
134
- - !ruby/object:Gemwarrior::Citrinaga
135
- inventory: !ruby/object:Gemwarrior::Inventory
136
- items: []
137
- weapon:
138
- name: citrinaga
139
- description: Refreshing in its shiny, gleaming effectiveness at ending your life.
140
- face: shiny
141
- hands: glistening
142
- mood: staid
143
- level: 5
144
- hp_cur: 15
145
- hp_max: 15
146
- atk_lo: 7
147
- atk_hi: 8
148
- defense: 7
149
- dexterity: 7
150
- rox: 15
151
- xp: 13
152
- battlecry: Slice and dice so nice!
153
- - !ruby/object:Gemwarrior::Coraliz
154
- inventory: !ruby/object:Gemwarrior::Inventory
155
- items: []
156
- weapon:
157
- name: coraliz
158
- description: Small blue lizard that slithers around, nipping at your ankles.
159
- face: spotted
160
- hands: slippery
161
- mood: emotionless
162
- level: 6
163
- hp_cur: 12
164
- hp_max: 12
165
- atk_lo: 7
166
- atk_hi: 18
167
- defense: 6
168
- dexterity: 9
169
- rox: 16
170
- xp: 6
171
- battlecry: Where am I? You'll never guess!
172
- - !ruby/object:Gemwarrior::Cubicat
173
- inventory: !ruby/object:Gemwarrior::Inventory
174
- items:
175
- - *1
176
- weapon:
177
- name: cubicat
178
- description: Perfectly geometrically cubed feline, fresh from its woven enclosure,
179
- claws at the ready.
180
- face: striking
181
- hands: grippy
182
- mood: salacious
183
- level: 8
184
- hp_cur: 16
185
- hp_max: 16
186
- atk_lo: 11
187
- atk_hi: 23
188
- defense: 7
189
- dexterity: 9
190
- rox: 18
191
- xp: 13
192
- battlecry: I don't really care, as long as you die!
193
- - !ruby/object:Gemwarrior::Diaman
194
- inventory: !ruby/object:Gemwarrior::Inventory
195
- items:
196
- - *1
197
- weapon:
198
- name: diaman
199
- description: Crystalline structure in the form of a man, lumbering toward you, with
200
- outstretched, edged pincers.
201
- face: bright
202
- hands: jagged
203
- mood: adamant
204
- level: 8
205
- hp_cur: 23
206
- hp_max: 23
207
- atk_lo: 8
208
- atk_hi: 21
209
- defense: 6
210
- dexterity: 9
211
- rox: 24
212
- xp: 9
213
- battlecry: Precious human, prepare to be lost to the annals of time!
214
- - !ruby/object:Gemwarrior::Emerald
215
- name: Emerald
216
- description: A wily, beefy, tower of a man, champion of both wisdom and strength,
217
- sporting a constant glint in his eyes.
218
- face: gleaming
219
- hands: tantalizing
220
- mood: enraged
221
- level: 15
222
- hp_cur: 38
223
- hp_max: 38
224
- atk_lo: 16
225
- atk_hi: 43
226
- defense: 5
227
- dexterity: 10
228
- inventory: !ruby/object:Gemwarrior::Inventory
229
- items:
230
- - !ruby/object:Gemwarrior::SparklyThing
231
- equipped: false
232
- consumable: false
233
- used: false
234
- number_of_uses:
235
- name: sparkly_thing
236
- description: The sparkling that this thing does is unimaginably brilliant.
237
- atk_lo:
238
- atk_hi:
239
- takeable: true
240
- useable: true
241
- equippable: false
242
- weapon:
243
- rox: 32
244
- xp: 26
245
- battlecry: 'Ha ha ha ha ha! Prepare yourself: today your whole life crumbles!'
246
- is_boss: true
247
- defeated_text: "<^><^><^><^><^><^><^><^><^><^>\nYou beat Emerald! You win!\nYou
248
- receive the \e[0;35;49mSparklyThing(tm)\e[0m and become the true \e[0;33;49mGem
249
- Warrior\e[0m!\nYou decide to ignore \e[0;31;49mQueen Ruby\e[0m and take your spoils
250
- back home\nwhere you live out the rest of your days staring at it, wondering\nwhat
251
- it was all about.\n\nThank you for playing. Goodbye.\n<^><^><^><^><^><^><^><^><^><^>\n"
252
- is_dead: false
253
- - !ruby/object:Gemwarrior::Garynetty
254
- name: Garynetty
255
- description: Conservative, yet odd, the Garynetty is not messing around.
256
- face: irregular
257
- hands: sharp
258
- mood: abrasive
259
- level: 12
260
- hp_cur: 30
261
- hp_max: 30
262
- atk_lo: 25
263
- atk_hi: 36
264
- defense: 8
265
- dexterity: 10
266
- inventory: !ruby/object:Gemwarrior::Inventory
267
- items: []
268
- weapon:
269
- rox: 34
270
- xp: 38
271
- battlecry: "...?!"
272
- is_boss: true
273
2
  locations:
274
3
  - !ruby/object:Gemwarrior::Location
275
- name: Home
4
+ name: home
5
+ name_display: Home
276
6
  description: The little, unimportant, decrepit hut that you live in.
277
7
  coords: &2
278
8
  :x: 5
@@ -292,10 +22,10 @@ locations:
292
22
  used: false
293
23
  number_of_uses:
294
24
  name: bed
25
+ name_display: Bed
295
26
  description: The place where you sleep when you are not adventuring.
296
- atk_lo:
297
- atk_hi:
298
27
  takeable: false
28
+ talkable: false
299
29
  useable: true
300
30
  equippable: false
301
31
  - !ruby/object:Gemwarrior::Letter
@@ -304,10 +34,9 @@ locations:
304
34
  used: false
305
35
  number_of_uses:
306
36
  name: letter
37
+ name_display: Letter
307
38
  description: A single page of thin paper, folded at the middle, with some excellent
308
39
  penmanship impressed upon it.
309
- atk_lo:
310
- atk_hi:
311
40
  takeable: true
312
41
  useable: true
313
42
  equippable: false
@@ -317,23 +46,24 @@ locations:
317
46
  used: false
318
47
  number_of_uses:
319
48
  name: stone
320
- description: A small, sharp mega pebble, suitable for tossing in amusement, and
321
- perhaps combat.
49
+ name_display: Stone
50
+ description: A small, yet quite sharp, sedimentary pebble, suitable for tossing in
51
+ amusement, and perhaps combat.
322
52
  atk_lo: 1
323
53
  atk_hi: 2
324
54
  takeable: true
325
55
  useable: true
326
56
  equippable: true
57
+ is_weapon: true
327
58
  - !ruby/object:Gemwarrior::Tent
328
59
  equipped: false
329
60
  consumable: false
330
61
  used: false
331
62
  number_of_uses: 5
332
63
  name: tent
64
+ name_display: Tent
333
65
  description: A magical, two-room suite pops up when you flick this otherwise folded
334
66
  piece of canvas just right, perfect for a night's rest.
335
- atk_lo:
336
- atk_hi:
337
67
  takeable: true
338
68
  useable: true
339
69
  equippable: false
@@ -341,7 +71,8 @@ locations:
341
71
  bosses_abounding: []
342
72
  checked_for_monsters: false
343
73
  - !ruby/object:Gemwarrior::Location
344
- name: Cave (Entrance)
74
+ name: cave-entrance
75
+ name_display: Cave (Entrance)
345
76
  description: A nearby, dank entrance to a cavern, surely filled with stacktites,
346
77
  stonemites, and rocksites.
347
78
  coords:
@@ -363,7 +94,8 @@ locations:
363
94
  bosses_abounding: []
364
95
  checked_for_monsters: false
365
96
  - !ruby/object:Gemwarrior::Location
366
- name: Cave (Antechamber)
97
+ name: cave-antechamber
98
+ name_display: Cave (Antechamber)
367
99
  description: Now inside the cavern, you confirm there are stacktites, stonemites,
368
100
  rocksites, and even some pebblejites.
369
101
  coords:
@@ -387,11 +119,13 @@ locations:
387
119
  used: false
388
120
  number_of_uses:
389
121
  name: stalactite
122
+ name_display: Stalactite
390
123
  description: Long protrusion of cave adornment, broken off and fallen to the ground,
391
124
  where the stalagmites sneer at it from.
392
125
  atk_lo: 2
393
126
  atk_hi: 3
394
127
  takeable: true
128
+ talkable: false
395
129
  useable: false
396
130
  equippable: true
397
131
  - !ruby/object:Gemwarrior::Stonemite
@@ -400,18 +134,19 @@ locations:
400
134
  used: false
401
135
  number_of_uses:
402
136
  name: stonemite
137
+ name_display: Stonemite
403
138
  description: Stubby cave debris that is neat to look at, as it is off-grey and
404
139
  sparkly, but the size makes it unusable as anything but skipping on a lake.
405
- atk_lo:
406
- atk_hi:
407
140
  takeable: true
408
141
  useable: false
409
142
  equippable: false
143
+ is_weapon: true
410
144
  monsters_abounding: []
411
145
  bosses_abounding: []
412
146
  checked_for_monsters: false
413
147
  - !ruby/object:Gemwarrior::Location
414
- name: Cave (Nook)
148
+ name: cave-nook
149
+ name_display: Cave (Nook)
415
150
  description: A depression in the cave wall casts a shadow over a small rock shelf.
416
151
  coords:
417
152
  :x: 7
@@ -432,7 +167,8 @@ locations:
432
167
  bosses_abounding: []
433
168
  checked_for_monsters: false
434
169
  - !ruby/object:Gemwarrior::Location
435
- name: Cave (Dropoff)
170
+ name: cave-dropoff
171
+ name_display: Cave (Dropoff)
436
172
  description: Caves do not usually feature sudden chasms spilling down into an unknowable
437
173
  void, but this one does.
438
174
  coords:
@@ -456,18 +192,19 @@ locations:
456
192
  used: false
457
193
  number_of_uses:
458
194
  name: ladder
195
+ name_display: Ladder
459
196
  description: Rickety and crudely-fashioned, this ladder descends down into the
460
197
  dropoff, hopefully heading towards something...anything.
461
- atk_lo:
462
- atk_hi:
463
198
  takeable: false
199
+ talkable: false
464
200
  useable: true
465
201
  equippable: false
466
202
  monsters_abounding: []
467
203
  bosses_abounding: []
468
204
  checked_for_monsters: false
469
205
  - !ruby/object:Gemwarrior::Location
470
- name: Metal Tunnel (South Entrance)
206
+ name: metal_tunnel-south_entrance
207
+ name_display: Metal Tunnel (South Entrance)
471
208
  description: You are in a tightly-enclosed tunnel running under the ground. The
472
209
  walls are made of shiny, smooth material you think may be some kind of metal.
473
210
  It is claustrophobic, to say the least.
@@ -490,7 +227,8 @@ locations:
490
227
  bosses_abounding: []
491
228
  checked_for_monsters: false
492
229
  - !ruby/object:Gemwarrior::Location
493
- name: Metal Tunnel
230
+ name: metal_tunnel-8_2
231
+ name_display: Metal Tunnel
494
232
  description: The walls of this underground tunnel shine, as if some otherworldly
495
233
  light source emanates directly from them. It is cold and narrow and you are not
496
234
  sure you are a huge fan of it.
@@ -513,7 +251,8 @@ locations:
513
251
  bosses_abounding: []
514
252
  checked_for_monsters: false
515
253
  - !ruby/object:Gemwarrior::Location
516
- name: Metal Tunnel
254
+ name: metal_tunnel-8_3
255
+ name_display: Metal Tunnel
517
256
  description: The walls of this underground tunnel shine, as if some otherworldly
518
257
  light source emanates directly from them. It is cold and narrow and you are not
519
258
  sure you are a huge fan of it.
@@ -536,7 +275,8 @@ locations:
536
275
  bosses_abounding: []
537
276
  checked_for_monsters: false
538
277
  - !ruby/object:Gemwarrior::Location
539
- name: Metal Tunnel
278
+ name: metal_tunnel-8_4
279
+ name_display: Metal Tunnel
540
280
  description: The walls of this underground tunnel shine, as if some otherworldly
541
281
  light source emanates directly from them. It is cold and narrow and you are not
542
282
  sure you are a huge fan of it.
@@ -559,7 +299,8 @@ locations:
559
299
  bosses_abounding: []
560
300
  checked_for_monsters: false
561
301
  - !ruby/object:Gemwarrior::Location
562
- name: Metal Tunnel
302
+ name: metal_tunnel-7_4
303
+ name_display: Metal Tunnel
563
304
  description: The walls of this underground tunnel shine, as if some otherworldly
564
305
  light source emanates directly from them. It is cold and narrow and you are not
565
306
  sure you are a huge fan of it.
@@ -582,7 +323,8 @@ locations:
582
323
  bosses_abounding: []
583
324
  checked_for_monsters: false
584
325
  - !ruby/object:Gemwarrior::Location
585
- name: Metal Tunnel
326
+ name: metal_tunnel-6_4
327
+ name_display: Metal Tunnel
586
328
  description: The walls of this underground tunnel shine, as if some otherworldly
587
329
  light source emanates directly from them. It is cold and narrow and you are not
588
330
  sure you are a huge fan of it.
@@ -605,7 +347,8 @@ locations:
605
347
  bosses_abounding: []
606
348
  checked_for_monsters: false
607
349
  - !ruby/object:Gemwarrior::Location
608
- name: Metal Tunnel
350
+ name: metal_tunnel-6_5
351
+ name_display: Metal Tunnel
609
352
  description: The walls of this underground tunnel shine, as if some otherworldly
610
353
  light source emanates directly from them. It is cold and narrow and you are not
611
354
  sure you are a huge fan of it.
@@ -628,7 +371,8 @@ locations:
628
371
  bosses_abounding: []
629
372
  checked_for_monsters: false
630
373
  - !ruby/object:Gemwarrior::Location
631
- name: Metal Tunnel
374
+ name: metal_tunnel-5_5
375
+ name_display: Metal Tunnel
632
376
  description: The walls of this underground tunnel shine, as if some otherworldly
633
377
  light source emanates directly from them. It is cold and narrow and you are not
634
378
  sure you are a huge fan of it.
@@ -651,7 +395,8 @@ locations:
651
395
  bosses_abounding: []
652
396
  checked_for_monsters: false
653
397
  - !ruby/object:Gemwarrior::Location
654
- name: Tunnel Alcove
398
+ name: tunnel_alcove
399
+ name_display: Tunnel Alcove
655
400
  description: A moderately-sized alcove seems to have been blown out of the side
656
401
  of tunnel here, almost as if an actual bomb detonated, the remainder of the wall
657
402
  a mix of rock and wires.
@@ -676,18 +421,19 @@ locations:
676
421
  used: false
677
422
  number_of_uses:
678
423
  name: small_hole
424
+ name_display: Small Hole
679
425
  description: Amongst the rubble of the alcove, a small hole, barely big enough
680
426
  for a rodent, exists in an absently-minded way near the bottom of the wall.
681
- atk_lo:
682
- atk_hi:
683
427
  takeable: false
428
+ talkable: false
684
429
  useable: true
685
430
  equippable: false
686
431
  monsters_abounding: []
687
432
  bosses_abounding: []
688
433
  checked_for_monsters: false
689
434
  - !ruby/object:Gemwarrior::Location
690
- name: Metal Tunnel
435
+ name: metal_tunnel-5_6
436
+ name_display: Metal Tunnel
691
437
  description: The walls of this underground tunnel shine, as if some otherworldly
692
438
  light source emanates directly from them. It is cold and narrow and you are not
693
439
  sure you are a huge fan of it.
@@ -710,7 +456,8 @@ locations:
710
456
  bosses_abounding: []
711
457
  checked_for_monsters: false
712
458
  - !ruby/object:Gemwarrior::Location
713
- name: Metal Tunnel (North Entrance)
459
+ name: metal_tunnel-north_entrance
460
+ name_display: Metal Tunnel (North Entrance)
714
461
  description: The walls of this underground tunnel shine, as if some otherworldly
715
462
  light source emanates directly from them. It is cold and narrow and you are not
716
463
  sure you are a huge fan of it.
@@ -735,18 +482,19 @@ locations:
735
482
  used: false
736
483
  number_of_uses:
737
484
  name: rope
485
+ name_display: Rope
738
486
  description: For some reason, a sturdy rope hangs down from a small opening in
739
487
  the metal tunnel's ceiling. It appears to hold your weight when taut.
740
- atk_lo:
741
- atk_hi:
742
488
  takeable: false
489
+ talkable: false
743
490
  useable: true
744
491
  equippable: false
745
492
  monsters_abounding: []
746
493
  bosses_abounding: []
747
494
  checked_for_monsters: false
748
495
  - !ruby/object:Gemwarrior::Location
749
- name: Snow Fields (Southeast)
496
+ name: snow_fields-southeast
497
+ name_display: Snow Fields (Southeast)
750
498
  description: It is as if the color palette for this still and frozen scene before
751
499
  you consisted only of whites, off-whites, and vanilla.
752
500
  coords:
@@ -768,7 +516,8 @@ locations:
768
516
  bosses_abounding: []
769
517
  checked_for_monsters: false
770
518
  - !ruby/object:Gemwarrior::Location
771
- name: Snow Fields (South-Southeast)
519
+ name: snow_fields-south_southeast
520
+ name_display: Snow Fields (South-Southeast)
772
521
  description: It is as if the color palette for this still and frozen scene before
773
522
  you consisted only of whites, off-whites, and vanilla.
774
523
  coords:
@@ -790,7 +539,8 @@ locations:
790
539
  bosses_abounding: []
791
540
  checked_for_monsters: false
792
541
  - !ruby/object:Gemwarrior::Location
793
- name: Snow Fields (South)
542
+ name: snow_fields-south
543
+ name_display: Snow Fields (South)
794
544
  description: It is as if the color palette for this still and frozen scene before
795
545
  you consisted only of whites, off-whites, and vanilla.
796
546
  coords:
@@ -812,7 +562,8 @@ locations:
812
562
  bosses_abounding: []
813
563
  checked_for_monsters: false
814
564
  - !ruby/object:Gemwarrior::Location
815
- name: Snow Fields (South-Southwest)
565
+ name: snow_fields-south_southwest
566
+ name_display: Snow Fields (South-Southwest)
816
567
  description: It is as if the color palette for this still and frozen scene before
817
568
  you consisted only of whites, off-whites, and vanilla.
818
569
  coords:
@@ -834,7 +585,8 @@ locations:
834
585
  bosses_abounding: []
835
586
  checked_for_monsters: false
836
587
  - !ruby/object:Gemwarrior::Location
837
- name: Snow Fields (Southwest)
588
+ name: snow_fields-southwest
589
+ name_display: Snow Fields (Southwest)
838
590
  description: It is as if the color palette for this still and frozen scene before
839
591
  you consisted only of whites, off-whites, and vanilla.
840
592
  coords:
@@ -856,7 +608,8 @@ locations:
856
608
  bosses_abounding: []
857
609
  checked_for_monsters: false
858
610
  - !ruby/object:Gemwarrior::Location
859
- name: Snow Fields (Northwest)
611
+ name: snow_fields-northwest
612
+ name_display: Snow Fields (Northwest)
860
613
  description: It is as if the color palette for this still and frozen scene before
861
614
  you consisted only of whites, off-whites, and vanilla.
862
615
  coords:
@@ -880,17 +633,18 @@ locations:
880
633
  used: false
881
634
  number_of_uses:
882
635
  name: snowman
636
+ name_display: Snowman
883
637
  description: Standing solemnly in the snow, a man of snow solemnly stands.
884
- atk_lo:
885
- atk_hi:
886
638
  takeable: false
639
+ talkable: false
887
640
  useable: true
888
641
  equippable: false
889
642
  monsters_abounding: []
890
643
  bosses_abounding: []
891
644
  checked_for_monsters: false
892
645
  - !ruby/object:Gemwarrior::Location
893
- name: Snow Fields (North-Northwest)
646
+ name: snow_fields-north_northwest
647
+ name_display: Snow Fields (North-Northwest)
894
648
  description: It is as if the color palette for this still and frozen scene before
895
649
  you consisted only of whites, off-whites, and vanilla.
896
650
  coords:
@@ -912,7 +666,8 @@ locations:
912
666
  bosses_abounding: []
913
667
  checked_for_monsters: false
914
668
  - !ruby/object:Gemwarrior::Location
915
- name: Snow Fields (North)
669
+ name: snow_fields-north
670
+ name_display: Snow Fields (North)
916
671
  description: It is as if the color palette for this still and frozen scene before
917
672
  you consisted only of whites, off-whites, and vanilla.
918
673
  coords:
@@ -934,7 +689,8 @@ locations:
934
689
  bosses_abounding: []
935
690
  checked_for_monsters: false
936
691
  - !ruby/object:Gemwarrior::Location
937
- name: Snow Fields (North-Northeast)
692
+ name: snow_fields-north_northeast
693
+ name_display: Snow Fields (North-Northeast)
938
694
  description: It is as if the color palette for this still and frozen scene before
939
695
  you consisted only of whites, off-whites, and vanilla.
940
696
  coords:
@@ -956,7 +712,8 @@ locations:
956
712
  bosses_abounding: []
957
713
  checked_for_monsters: false
958
714
  - !ruby/object:Gemwarrior::Location
959
- name: Snow Fields (Northeast)
715
+ name: snow_fields-northeast
716
+ name_display: Snow Fields (Northeast)
960
717
  description: It is as if the color palette for this still and frozen scene before
961
718
  you consisted only of whites, off-whites, and vanilla.
962
719
  coords:
@@ -978,7 +735,8 @@ locations:
978
735
  bosses_abounding: []
979
736
  checked_for_monsters: false
980
737
  - !ruby/object:Gemwarrior::Location
981
- name: Cave (Causeway)
738
+ name: cave-causeway
739
+ name_display: Cave (Causeway)
982
740
  description: Paths lead north and west as a dank, musty smell permeates your sinuses.
983
741
  coords:
984
742
  :x: 8
@@ -1001,18 +759,19 @@ locations:
1001
759
  used: false
1002
760
  number_of_uses:
1003
761
  name: map
762
+ name_display: Map
1004
763
  description: The land of Jool is contained on this piece of canvas, in a useful,
1005
764
  if not very detailed, manner.
1006
- atk_lo:
1007
- atk_hi:
1008
765
  takeable: true
766
+ talkable: false
1009
767
  useable: true
1010
768
  equippable: false
1011
769
  monsters_abounding: []
1012
770
  bosses_abounding: []
1013
771
  checked_for_monsters: false
1014
772
  - !ruby/object:Gemwarrior::Location
1015
- name: Forest (Southeast)
773
+ name: forest-southeast
774
+ name_display: Forest (Southeast)
1016
775
  description: Trees exist here, in droves.
1017
776
  coords:
1018
777
  :x: 4
@@ -1035,18 +794,19 @@ locations:
1035
794
  used: false
1036
795
  number_of_uses:
1037
796
  name: tree
797
+ name_display: Tree
1038
798
  description: A mighty representation of nature, older than your father's father's
1039
799
  second great-uncle.
1040
- atk_lo:
1041
- atk_hi:
1042
800
  takeable: false
801
+ talkable: false
1043
802
  useable: false
1044
803
  equippable: false
1045
804
  monsters_abounding: []
1046
805
  bosses_abounding: []
1047
806
  checked_for_monsters: false
1048
807
  - !ruby/object:Gemwarrior::Location
1049
- name: Forest (Northeast)
808
+ name: forest-northeast
809
+ name_display: Forest (Northeast)
1050
810
  description: You see much foliage.
1051
811
  coords:
1052
812
  :x: 4
@@ -1067,7 +827,8 @@ locations:
1067
827
  bosses_abounding: []
1068
828
  checked_for_monsters: false
1069
829
  - !ruby/object:Gemwarrior::Location
1070
- name: Forest (Northwest)
830
+ name: forest-northwest
831
+ name_display: Forest (Northwest)
1071
832
  description: The amount of leaves and branches and trunks you can see boggles the
1072
833
  mind.
1073
834
  coords:
@@ -1091,20 +852,20 @@ locations:
1091
852
  used: false
1092
853
  number_of_uses:
1093
854
  name: feather
855
+ name_display: Feather
1094
856
  description: A blue and green feather. It is soft and tender, unlike the craven
1095
857
  bird that probably shed it.
1096
- atk_lo:
1097
- atk_hi:
1098
858
  takeable: true
859
+ talkable: false
1099
860
  useable: false
1100
861
  equippable: false
1101
862
  monsters_abounding: []
1102
863
  bosses_abounding: []
1103
864
  checked_for_monsters: false
1104
865
  - !ruby/object:Gemwarrior::Location
1105
- name: Forest (Southwest)
1106
- description: While you continue to be impressed at the sheer size of this forest,
1107
- a clearing appears to open up to the west.
866
+ name: forest-southwest
867
+ name_display: Forest (Southwest)
868
+ description: While you continue to be impressed at the sheer size of this forest, it feels like it never ends, making you feel lost. Thankfully, there is an inexplicable bookcase here.
1108
869
  coords:
1109
870
  :x: 3
1110
871
  :y: 0
@@ -1113,18 +874,31 @@ locations:
1113
874
  :north: true
1114
875
  :east: false
1115
876
  :south: false
1116
- :west: true
877
+ :west: false
1117
878
  danger_level: :low
1118
879
  monster_level_range: !ruby/range
1119
880
  begin: 1
1120
881
  end: 3
1121
882
  excl: false
1122
- items: []
883
+ items:
884
+ - !ruby/object:Gemwarrior::Bookcase
885
+ equipped: false
886
+ consumable: false
887
+ used: false
888
+ number_of_uses:
889
+ name: bookcase
890
+ name_display: Bookcase
891
+ description: This oaken monstrosity has six shelves, each about 3 feet high. Mathing, you determine it to be "huge", featuring many books within it.
892
+ takeable: false
893
+ talkable: false
894
+ useable: true
895
+ equippable: false
1123
896
  monsters_abounding: []
1124
897
  bosses_abounding: []
1125
898
  checked_for_monsters: false
1126
899
  - !ruby/object:Gemwarrior::Location
1127
- name: Pain Quarry (Southeast)
900
+ name: pain_quarry-southeast
901
+ name_display: Pain Quarry (Southeast)
1128
902
  description: Horrible terribleness emanates from this desolate land of unkind misery.
1129
903
  coords:
1130
904
  :x: 2
@@ -1144,7 +918,8 @@ locations:
1144
918
  monsters_abounding: []
1145
919
  bosses_abounding:
1146
920
  - !ruby/object:Gemwarrior::Garynetty
1147
- name: Garynetty
921
+ name: garynetty
922
+ name_display: Garynetty
1148
923
  description: Conservative, yet odd, the Garynetty is not messing around.
1149
924
  face: irregular
1150
925
  hands: sharp
@@ -1157,6 +932,7 @@ locations:
1157
932
  defense: 9
1158
933
  dexterity: 10
1159
934
  inventory: !ruby/object:Gemwarrior::Inventory
935
+ armor:
1160
936
  items: []
1161
937
  weapon:
1162
938
  rox: 29
@@ -1165,7 +941,8 @@ locations:
1165
941
  is_boss: true
1166
942
  checked_for_monsters: false
1167
943
  - !ruby/object:Gemwarrior::Location
1168
- name: Pain Quarry (East)
944
+ name: pain_quarry-east
945
+ name_display: Pain Quarry (East)
1169
946
  description: Horrible terribleness emanates from this desolate land of unkind misery.
1170
947
  coords:
1171
948
  :x: 2
@@ -1185,7 +962,8 @@ locations:
1185
962
  monsters_abounding: []
1186
963
  bosses_abounding:
1187
964
  - !ruby/object:Gemwarrior::Garynetty
1188
- name: Garynetty
965
+ name: garynetty
966
+ name_display: Garynetty
1189
967
  description: Conservative, yet odd, the Garynetty is not messing around.
1190
968
  face: irregular
1191
969
  hands: sharp
@@ -1198,6 +976,7 @@ locations:
1198
976
  defense: 9
1199
977
  dexterity: 12
1200
978
  inventory: !ruby/object:Gemwarrior::Inventory
979
+ armor:
1201
980
  items: []
1202
981
  weapon:
1203
982
  rox: 26
@@ -1206,7 +985,8 @@ locations:
1206
985
  is_boss: true
1207
986
  checked_for_monsters: false
1208
987
  - !ruby/object:Gemwarrior::Location
1209
- name: Pain Quarry (Central)
988
+ name: pain_quarry-central
989
+ name_display: Pain Quarry (Central)
1210
990
  description: Horrible terribleness emanates from this desolate land of unkind misery.
1211
991
  coords:
1212
992
  :x: 1
@@ -1226,7 +1006,8 @@ locations:
1226
1006
  monsters_abounding: []
1227
1007
  bosses_abounding:
1228
1008
  - !ruby/object:Gemwarrior::Garynetty
1229
- name: Garynetty
1009
+ name: garynetty
1010
+ name_display: Garynetty
1230
1011
  description: Conservative, yet odd, the Garynetty is not messing around.
1231
1012
  face: irregular
1232
1013
  hands: sharp
@@ -1239,6 +1020,7 @@ locations:
1239
1020
  defense: 7
1240
1021
  dexterity: 12
1241
1022
  inventory: !ruby/object:Gemwarrior::Inventory
1023
+ armor:
1242
1024
  items: []
1243
1025
  weapon:
1244
1026
  rox: 34
@@ -1247,7 +1029,8 @@ locations:
1247
1029
  is_boss: true
1248
1030
  checked_for_monsters: false
1249
1031
  - !ruby/object:Gemwarrior::Location
1250
- name: Pain Quarry (South)
1032
+ name: pain_quarry-south
1033
+ name_display: Pain Quarry (South)
1251
1034
  description: Horrible terribleness emanates from this desolate land of unkind misery.
1252
1035
  coords:
1253
1036
  :x: 1
@@ -1267,7 +1050,8 @@ locations:
1267
1050
  monsters_abounding: []
1268
1051
  bosses_abounding:
1269
1052
  - !ruby/object:Gemwarrior::Garynetty
1270
- name: Garynetty
1053
+ name: garynetty
1054
+ name_display: Garynetty
1271
1055
  description: Conservative, yet odd, the Garynetty is not messing around.
1272
1056
  face: irregular
1273
1057
  hands: sharp
@@ -1280,6 +1064,7 @@ locations:
1280
1064
  defense: 9
1281
1065
  dexterity: 12
1282
1066
  inventory: !ruby/object:Gemwarrior::Inventory
1067
+ armor:
1283
1068
  items: []
1284
1069
  weapon:
1285
1070
  rox: 27
@@ -1288,7 +1073,8 @@ locations:
1288
1073
  is_boss: true
1289
1074
  checked_for_monsters: false
1290
1075
  - !ruby/object:Gemwarrior::Location
1291
- name: Pain Quarry (West)
1076
+ name: pain_quarry-west
1077
+ name_display: Pain Quarry (West)
1292
1078
  description: Horrible terribleness emanates from this desolate land of unkind misery.
1293
1079
  coords:
1294
1080
  :x: 0
@@ -1308,7 +1094,8 @@ locations:
1308
1094
  monsters_abounding: []
1309
1095
  bosses_abounding:
1310
1096
  - !ruby/object:Gemwarrior::Garynetty
1311
- name: Garynetty
1097
+ name: garynetty
1098
+ name_display: Garynetty
1312
1099
  description: Conservative, yet odd, the Garynetty is not messing around.
1313
1100
  face: irregular
1314
1101
  hands: sharp
@@ -1321,6 +1108,7 @@ locations:
1321
1108
  defense: 9
1322
1109
  dexterity: 12
1323
1110
  inventory: !ruby/object:Gemwarrior::Inventory
1111
+ armor:
1324
1112
  items: []
1325
1113
  weapon:
1326
1114
  rox: 41
@@ -1329,7 +1117,8 @@ locations:
1329
1117
  is_boss: true
1330
1118
  checked_for_monsters: false
1331
1119
  - !ruby/object:Gemwarrior::Location
1332
- name: Pain Quarry (Northwest)
1120
+ name: pain_quarry-northwest
1121
+ name_display: Pain Quarry (Northwest)
1333
1122
  description: Horrible terribleness emanates from this desolate land of unkind misery.
1334
1123
  coords:
1335
1124
  :x: 0
@@ -1349,7 +1138,8 @@ locations:
1349
1138
  monsters_abounding: []
1350
1139
  bosses_abounding:
1351
1140
  - !ruby/object:Gemwarrior::Garynetty
1352
- name: Garynetty
1141
+ name: garynetty
1142
+ name_display: Garynetty
1353
1143
  description: Conservative, yet odd, the Garynetty is not messing around.
1354
1144
  face: irregular
1355
1145
  hands: sharp
@@ -1362,6 +1152,7 @@ locations:
1362
1152
  defense: 9
1363
1153
  dexterity: 12
1364
1154
  inventory: !ruby/object:Gemwarrior::Inventory
1155
+ armor:
1365
1156
  items: []
1366
1157
  weapon:
1367
1158
  rox: 24
@@ -1370,7 +1161,8 @@ locations:
1370
1161
  is_boss: true
1371
1162
  checked_for_monsters: false
1372
1163
  - !ruby/object:Gemwarrior::Location
1373
- name: Pain Quarry (North)
1164
+ name: pain_quarry-north
1165
+ name_display: Pain Quarry (North)
1374
1166
  description: Horrible terribleness emanates from this desolate land of unkind misery.
1375
1167
  coords:
1376
1168
  :x: 1
@@ -1390,7 +1182,8 @@ locations:
1390
1182
  monsters_abounding: []
1391
1183
  bosses_abounding:
1392
1184
  - !ruby/object:Gemwarrior::Garynetty
1393
- name: Garynetty
1185
+ name: garynetty
1186
+ name_display: Garynetty
1394
1187
  description: Conservative, yet odd, the Garynetty is not messing around.
1395
1188
  face: irregular
1396
1189
  hands: sharp
@@ -1403,6 +1196,7 @@ locations:
1403
1196
  defense: 7
1404
1197
  dexterity: 12
1405
1198
  inventory: !ruby/object:Gemwarrior::Inventory
1199
+ armor:
1406
1200
  items: []
1407
1201
  weapon:
1408
1202
  rox: 32
@@ -1411,7 +1205,8 @@ locations:
1411
1205
  is_boss: true
1412
1206
  checked_for_monsters: false
1413
1207
  - !ruby/object:Gemwarrior::Location
1414
- name: Plains (Outskirts)
1208
+ name: plains-outskirts
1209
+ name_display: Plains (Outskirts)
1415
1210
  description: A lot of grass and nothing, stretching out northward.
1416
1211
  coords:
1417
1212
  :x: 5
@@ -1432,7 +1227,8 @@ locations:
1432
1227
  bosses_abounding: []
1433
1228
  checked_for_monsters: false
1434
1229
  - !ruby/object:Gemwarrior::Location
1435
- name: Plains (Fields)
1230
+ name: plains-fields
1231
+ name_display: Plains (Fields)
1436
1232
  description: Now you are plum smack dab in the middle of rolling fields.
1437
1233
  coords:
1438
1234
  :x: 5
@@ -1453,7 +1249,8 @@ locations:
1453
1249
  bosses_abounding: []
1454
1250
  checked_for_monsters: false
1455
1251
  - !ruby/object:Gemwarrior::Location
1456
- name: Plains (South of River)
1252
+ name: plains-south_of_river
1253
+ name_display: Plains (South of River)
1457
1254
  description: A raging river borders the northern side of this bucolic vista. Much
1458
1255
  raucous noise comes from the east.
1459
1256
  coords:
@@ -1475,7 +1272,8 @@ locations:
1475
1272
  bosses_abounding: []
1476
1273
  checked_for_monsters: false
1477
1274
  - !ruby/object:Gemwarrior::Location
1478
- name: Plains (South-Southeast)
1275
+ name: plains-south_southeast
1276
+ name_display: Plains (South-Southeast)
1479
1277
  description: The river continues to flow north of you, as plains stretch out all
1480
1278
  around. The noise from the east is quite loud, and a building can be seen in the
1481
1279
  near distance.
@@ -1498,7 +1296,8 @@ locations:
1498
1296
  bosses_abounding: []
1499
1297
  checked_for_monsters: false
1500
1298
  - !ruby/object:Gemwarrior::Location
1501
- name: Plains (Arena Entrance)
1299
+ name: plains-arena_entrance
1300
+ name_display: Plains (Arena Entrance)
1502
1301
  description: Well above the noise of the raging river nearby, the din of the mighty
1503
1302
  Arena to the east reaches its near fever-pitch just outside. The door, and battle,
1504
1303
  beckons.
@@ -1523,20 +1322,21 @@ locations:
1523
1322
  used: false
1524
1323
  number_of_uses:
1525
1324
  name: arena_door
1325
+ name_display: Arena Door
1526
1326
  description: The Arena is massive, with its numerous columns and stone walls stretching
1527
1327
  to the sky, but its entrance door is no slouch, keeping apace. Made of reinforced
1528
1328
  granite and impossible to break down, it nevertheless opens for you while battles
1529
1329
  are in session.
1530
- atk_lo:
1531
- atk_hi:
1532
1330
  takeable: false
1331
+ talkable: false
1533
1332
  useable: false
1534
1333
  equippable: false
1535
1334
  monsters_abounding: []
1536
1335
  bosses_abounding: []
1537
1336
  checked_for_monsters: false
1538
1337
  - !ruby/object:Gemwarrior::Location
1539
- name: Arena
1338
+ name: arena
1339
+ name_display: Arena
1540
1340
  description: Dangerous and risky, the Arena allows would-be monster-slayers and
1541
1341
  adventurers fight against an infinite number of beasts in order to test their
1542
1342
  mettle and improve their skill...for a small fee, of course.
@@ -1559,10 +1359,9 @@ locations:
1559
1359
  number_of_uses:
1560
1360
  talkable: true
1561
1361
  name: arena_master
1362
+ name_display: Arena Master
1562
1363
  description: She wears simple clothing, but carries herself with an air of authority.
1563
1364
  You think she may be the person to talk with if you want to engage in battle.
1564
- atk_lo:
1565
- atk_hi:
1566
1365
  takeable: false
1567
1366
  useable: true
1568
1367
  equippable: false
@@ -1570,7 +1369,8 @@ locations:
1570
1369
  bosses_abounding: []
1571
1370
  checked_for_monsters: false
1572
1371
  - !ruby/object:Gemwarrior::Location
1573
- name: Plains (South of Bridge)
1372
+ name: plains-south_of_bridge
1373
+ name_display: Plains (South of Bridge)
1574
1374
  description: To the north of these fields lies a bridge that may be crossable.
1575
1375
  coords:
1576
1376
  :x: 4
@@ -1591,7 +1391,8 @@ locations:
1591
1391
  bosses_abounding: []
1592
1392
  checked_for_monsters: false
1593
1393
  - !ruby/object:Gemwarrior::Location
1594
- name: Plains (Hut)
1394
+ name: plains-hut
1395
+ name_display: Plains (Hut)
1595
1396
  description: A straw hut sits alone, curiously, in a patch of grass, sticks, and
1596
1397
  straw.
1597
1398
  coords:
@@ -1610,15 +1411,16 @@ locations:
1610
1411
  bosses_abounding: []
1611
1412
  checked_for_monsters: false
1612
1413
  - !ruby/object:Gemwarrior::Location
1613
- name: River Bridge
1414
+ name: river_bridge
1415
+ name_display: River Bridge
1614
1416
  description: Sturdy and safe, this bridge will get you across the otherwise unpassable
1615
- river you see below.
1417
+ river you see below. Unfortunately, there is a giant in front of you, being quit menacing.
1616
1418
  coords:
1617
1419
  :x: 4
1618
1420
  :y: 4
1619
1421
  :z: 0
1620
1422
  locs_connected:
1621
- :north: true
1423
+ :north: false
1622
1424
  :east: false
1623
1425
  :south: true
1624
1426
  :west: false
@@ -1629,10 +1431,46 @@ locations:
1629
1431
  excl: false
1630
1432
  items: []
1631
1433
  monsters_abounding: []
1632
- bosses_abounding: []
1434
+ bosses_abounding:
1435
+ - !ruby/object:Gemwarrior::Jaspern
1436
+ name: jaspern
1437
+ name_display: Jaspern
1438
+ description: Dark green hair, but yellow and brown skin, Jaspern is actually somewhat translucent, and he does not appear to be moveable or go-around-able.
1439
+ face: crystalline
1440
+ hands: small
1441
+ mood: opaque
1442
+ level: 8
1443
+ hp_cur: 27
1444
+ hp_max: 27
1445
+ atk_lo: 18
1446
+ atk_hi: 25
1447
+ defense: 6
1448
+ dexterity: 8
1449
+ inventory: !ruby/object:Gemwarrior::Inventory
1450
+ armor:
1451
+ items:
1452
+ - !ruby/object:Gemwarrior::Tent
1453
+ equipped: false
1454
+ consumable: false
1455
+ used: false
1456
+ number_of_uses: 5
1457
+ name: tent
1458
+ name_display: Tent
1459
+ description: A magical, two-room suite pops up when you flick this otherwise folded
1460
+ piece of canvas just right, perfect for a night's rest.
1461
+ takeable: true
1462
+ useable: true
1463
+ equippable: false
1464
+ weapon:
1465
+ rox: 50
1466
+ xp: 80
1467
+ battlecry: "I am the keeper of this bridge! To go further, you must get through me!"
1468
+ is_boss: true
1469
+ is_dead: false
1633
1470
  checked_for_monsters: false
1634
1471
  - !ruby/object:Gemwarrior::Location
1635
- name: Plains (North of Bridge)
1472
+ name: plains-north_of_bridge
1473
+ name_display: Plains (North of Bridge)
1636
1474
  description: North of the river feels similar to south of the river, as you continue
1637
1475
  to be surrounded by grass and grass and, well, grass. A path to the east stretches
1638
1476
  out into a valley.
@@ -1655,7 +1493,8 @@ locations:
1655
1493
  bosses_abounding: []
1656
1494
  checked_for_monsters: false
1657
1495
  - !ruby/object:Gemwarrior::Location
1658
- name: Peridover Valley (Outskirts)
1496
+ name: peridover_valley-outskirts_west
1497
+ name_display: Peridover Valley (Outskirts (West))
1659
1498
  description: The road slopes down slightly here, but in the near distance you can
1660
1499
  see that it slopes way more slopily.
1661
1500
  coords:
@@ -1677,7 +1516,8 @@ locations:
1677
1516
  bosses_abounding: []
1678
1517
  checked_for_monsters: false
1679
1518
  - !ruby/object:Gemwarrior::Location
1680
- name: Peridover Valley (Central)
1519
+ name: peridover_valley-central
1520
+ name_display: Peridover Valley (Central)
1681
1521
  description: The Peridover Valley is in full effect here, sloping down into a reverse
1682
1522
  plateau. Bones of wild animals litter the area.
1683
1523
  coords:
@@ -1699,7 +1539,8 @@ locations:
1699
1539
  bosses_abounding: []
1700
1540
  checked_for_monsters: false
1701
1541
  - !ruby/object:Gemwarrior::Location
1702
- name: Peridover Valley (Outskirts)
1542
+ name: peridover_valley-outskirts_east
1543
+ name_display: Peridover Valley (Outskirts (East))
1703
1544
  description: Sloping way down to the west, but leveling off here, a din of civilization
1704
1545
  calls from the north.
1705
1546
  coords:
@@ -1721,7 +1562,8 @@ locations:
1721
1562
  bosses_abounding: []
1722
1563
  checked_for_monsters: false
1723
1564
  - !ruby/object:Gemwarrior::Location
1724
- name: South of Spinelia
1565
+ name: south_of_spinelia
1566
+ name_display: South of Spinelia
1725
1567
  description: Northwardly, you can hear general town noise, such as people scuffling,
1726
1568
  nattering, and more or less existing in a people kind of way.
1727
1569
  coords:
@@ -1743,7 +1585,8 @@ locations:
1743
1585
  bosses_abounding: []
1744
1586
  checked_for_monsters: false
1745
1587
  - !ruby/object:Gemwarrior::Location
1746
- name: Spinelia (Southwest)
1588
+ name: spinelia-southwest
1589
+ name_display: Spinelia (Southwest)
1747
1590
  description: Near the front entrance to Spinelia is the market corner. Merchants
1748
1591
  are all around, hawking wares and giving those nearby walking stares.
1749
1592
  coords:
@@ -1765,11 +1608,10 @@ locations:
1765
1608
  number_of_uses:
1766
1609
  talkable: true
1767
1610
  name: ware_hawker
1611
+ name_display: Ware Hawker
1768
1612
  description: A literal anthropomorphic hawk has set up shop behind a crudely-made
1769
1613
  table. Some wares are scattered atop its surface, seemingly within anyone's
1770
1614
  grasp, but the hawk's piercing eyes seem to belie this observation.
1771
- atk_lo:
1772
- atk_hi:
1773
1615
  takeable: false
1774
1616
  useable: true
1775
1617
  equippable: false
@@ -1777,7 +1619,8 @@ locations:
1777
1619
  bosses_abounding: []
1778
1620
  checked_for_monsters: false
1779
1621
  - !ruby/object:Gemwarrior::Location
1780
- name: Spinelia (Southeast)
1622
+ name: spinelia-southeast
1623
+ name_display: Spinelia (Southeast)
1781
1624
  description: The southeast of Spinelia contains a few people, just kind of
1782
1625
  hanging out.
1783
1626
  coords:
@@ -1799,12 +1642,11 @@ locations:
1799
1642
  number_of_uses:
1800
1643
  talkable: true
1801
1644
  name: thin_man
1645
+ name_display: Thin Man
1802
1646
  description: An almost shockingly gaunt man is sitting on the ground, resting against a wall. He
1803
1647
  wears a patchwork quilt of a hat, and his slender frame is covered by a simple brown tunic. His feet
1804
1648
  point comically toward the sky in brown boots while his head dips down slightly, eyes watching
1805
1649
  something in the distance you can't see.
1806
- atk_lo:
1807
- atk_hi:
1808
1650
  takeable: false
1809
1651
  useable: true
1810
1652
  equippable: false
@@ -1815,11 +1657,10 @@ locations:
1815
1657
  number_of_uses:
1816
1658
  talkable: true
1817
1659
  name: drunk_man
1660
+ name_display: Drunk Man
1818
1661
  description: Some supernatural force is surely keeping this obviously smashed individual from
1819
1662
  toppling over to the ground. The inebriated fellow somehow continues to stumble about in a small
1820
1663
  circle near a smattering of shipping crates, looking simultaneously dazed and cheerful.
1821
- atk_lo:
1822
- atk_hi:
1823
1664
  takeable: false
1824
1665
  useable: true
1825
1666
  equippable: false
@@ -1827,7 +1668,8 @@ locations:
1827
1668
  bosses_abounding: []
1828
1669
  checked_for_monsters: false
1829
1670
  - !ruby/object:Gemwarrior::Location
1830
- name: Spinelia (Northeast)
1671
+ name: spinelia-northeast
1672
+ name_display: Spinelia (Northeast)
1831
1673
  description: Northeasternly speaking, Spinelia contains a pen with a few animals
1832
1674
  calmly eating food, and not really having much impact on their environment.
1833
1675
  coords:
@@ -1849,9 +1691,8 @@ locations:
1849
1691
  number_of_uses:
1850
1692
  talkable: true
1851
1693
  name: pig
1694
+ name_display: Pig
1852
1695
  description: Dirty, eating slop, but still kind of cute. Yep, this is a pig.
1853
- atk_lo:
1854
- atk_hi:
1855
1696
  takeable: false
1856
1697
  useable: true
1857
1698
  equippable: false
@@ -1862,9 +1703,8 @@ locations:
1862
1703
  number_of_uses:
1863
1704
  talkable: true
1864
1705
  name: cow
1706
+ name_display: Cow
1865
1707
  description: Grazing on some fake grass, unperturbed, this black and white herd animal looks bored.
1866
- atk_lo:
1867
- atk_hi:
1868
1708
  takeable: false
1869
1709
  useable: true
1870
1710
  equippable: false
@@ -1875,9 +1715,8 @@ locations:
1875
1715
  number_of_uses:
1876
1716
  talkable: true
1877
1717
  name: goat
1718
+ name_display: Goat
1878
1719
  description: The scruff is strong with this one as it chews through what appears to be a recent mystery novel most likely thrown into the pen by a passerby.
1879
- atk_lo:
1880
- atk_hi:
1881
1720
  takeable: false
1882
1721
  useable: true
1883
1722
  equippable: false
@@ -1885,7 +1724,8 @@ locations:
1885
1724
  bosses_abounding: []
1886
1725
  checked_for_monsters: false
1887
1726
  - !ruby/object:Gemwarrior::Location
1888
- name: Spinelia (Northwest)
1727
+ name: spinelia-northwest
1728
+ name_display: Spinelia (Northwest)
1889
1729
  description: Residences line the northwest corner of Spinelia, each one similar to
1890
1730
  each other, made of granite and stone, featuring a single window and a single
1891
1731
  door. One particular house's hallmark appears to be a rather fanciful woman leaning
@@ -1909,11 +1749,10 @@ locations:
1909
1749
  number_of_uses:
1910
1750
  talkable: true
1911
1751
  name: shifty_woman
1752
+ name: Shifty Woman
1912
1753
  description: Sharply dressed with impeccable style, you still can't shake the feeling that this
1913
1754
  otherwise ordinary woman is up to something. It might be the way she almost impulsively looks
1914
1755
  back and forth along the town street while rubbing her hands together menacingly.
1915
- atk_lo:
1916
- atk_hi:
1917
1756
  takeable: false
1918
1757
  useable: true
1919
1758
  equippable: false
@@ -1921,7 +1760,8 @@ locations:
1921
1760
  bosses_abounding: []
1922
1761
  checked_for_monsters: false
1923
1762
  - !ruby/object:Gemwarrior::Location
1924
- name: Rock Piles
1763
+ name: rock_piles
1764
+ name_display: Rock Piles
1925
1765
  description: Piles of rocks, both big and small, are placed here and there, a testament
1926
1766
  to someone's surely back-breaking labor.
1927
1767
  coords:
@@ -1945,27 +1785,30 @@ locations:
1945
1785
  used: false
1946
1786
  number_of_uses:
1947
1787
  name: gun
1948
- description: Pew pew goes this firearm, you suspect.
1788
+ name_display: Gun
1789
+ description: Pew pew goes this firearm, you suspect (if it has bullets).
1949
1790
  atk_lo: 2
1950
1791
  atk_hi: 4
1951
1792
  takeable: true
1793
+ talkable: false
1952
1794
  useable: true
1953
1795
  equippable: true
1796
+ is_weapon: true
1954
1797
  - !ruby/object:Gemwarrior::Pedestal
1955
1798
  equipped: false
1956
1799
  consumable: false
1957
1800
  used: false
1958
1801
  number_of_uses:
1959
1802
  name: pedestal
1803
+ name_display: Pedestal
1960
1804
  description: A pedestal about 4 feet in height rises up from the ground, with
1961
1805
  six switches arranged vertically above a large gem affixed to the top. The switches
1962
1806
  each have a word next to them in some language that looks familiar yet strange.
1963
1807
  Each letter is made of some kind of ink crudely splashed on stone, and each
1964
1808
  can be moved to arrange them in a different fashion than they are now. The large
1965
1809
  gem glitters with utter brilliance.
1966
- atk_lo:
1967
- atk_hi:
1968
1810
  takeable: false
1811
+ talkable: false
1969
1812
  useable: true
1970
1813
  equippable: false
1971
1814
  switches:
@@ -1991,7 +1834,8 @@ locations:
1991
1834
  bosses_abounding: []
1992
1835
  checked_for_monsters: false
1993
1836
  - !ruby/object:Gemwarrior::Location
1994
- name: Sky Tower (Entryway)
1837
+ name: sky_tower-entryway
1838
+ name_display: Sky Tower (Entryway)
1995
1839
  description: You feel unsettled as you gaze upon the wondrous proportions of Emerald's
1996
1840
  home.
1997
1841
  coords:
@@ -2015,10 +1859,9 @@ locations:
2015
1859
  used: false
2016
1860
  number_of_uses:
2017
1861
  name: floor_tile
1862
+ name_display: Floor Tile
2018
1863
  description: One of the floor tiles, rough-hewn but immaculate, looks...off. Pressable,
2019
1864
  even.
2020
- atk_lo:
2021
- atk_hi:
2022
1865
  takeable: false
2023
1866
  useable: true
2024
1867
  equippable: false
@@ -2026,7 +1869,8 @@ locations:
2026
1869
  bosses_abounding: []
2027
1870
  checked_for_monsters: false
2028
1871
  - !ruby/object:Gemwarrior::Location
2029
- name: Sky Tower (Cloud Garden)
1872
+ name: sky_tower-cloud_garden
1873
+ name_display: Sky Tower (Cloud Garden)
2030
1874
  description: A perfectly-maintained array of wispy flowers and other ethereal plantlife
2031
1875
  contained within a cumulonimbus barrier.
2032
1876
  coords:
@@ -2050,11 +1894,11 @@ locations:
2050
1894
  used: false
2051
1895
  number_of_uses:
2052
1896
  name: flower
1897
+ name_display: Flower
2053
1898
  description: Petals the color of clear sky and a stem of bright white. A most
2054
1899
  curious plant.
2055
- atk_lo:
2056
- atk_hi:
2057
1900
  takeable: true
1901
+ talkable: false
2058
1902
  useable: false
2059
1903
  equippable: false
2060
1904
  - !ruby/object:Gemwarrior::Keystone
@@ -2063,11 +1907,11 @@ locations:
2063
1907
  used: false
2064
1908
  number_of_uses:
2065
1909
  name: keystone
1910
+ name_display: Keystone
2066
1911
  description: Certainly greater than the sum of its parts, this smallish stone
2067
1912
  glows faintly and feels slick to the touch.
2068
- atk_lo:
2069
- atk_hi:
2070
1913
  takeable: true
1914
+ talkable: false
2071
1915
  useable: false
2072
1916
  equippable: false
2073
1917
  - !ruby/object:Gemwarrior::Pond
@@ -2076,20 +1920,21 @@ locations:
2076
1920
  used: false
2077
1921
  number_of_uses:
2078
1922
  name: pond
1923
+ name_display: Pond
2079
1924
  description: 'This tiny pool of water self-ripples every minute or so. Small,
2080
1925
  floating insects buzz around merrily. A small plaque lays at the foot, reading:
2081
1926
  "If the right objects curious doth possess, touch the water''s surface and you''ll
2082
1927
  get redress."'
2083
- atk_lo:
2084
- atk_hi:
2085
1928
  takeable: false
1929
+ talkable: false
2086
1930
  useable: true
2087
1931
  equippable: false
2088
1932
  monsters_abounding: []
2089
1933
  bosses_abounding: []
2090
1934
  checked_for_monsters: false
2091
1935
  - !ruby/object:Gemwarrior::Location
2092
- name: Sky Tower (Armory)
1936
+ name: sky_tower-armory
1937
+ name_display: Sky Tower (Armory)
2093
1938
  description: Weapons of all kinds litter the ground and are hung on hooks from the
2094
1939
  wall. Tower assailants beware/rejoice!
2095
1940
  coords:
@@ -2113,18 +1958,18 @@ locations:
2113
1958
  used: false
2114
1959
  number_of_uses:
2115
1960
  name: dehumidifier
1961
+ name_display: Dehumidifier
2116
1962
  description: Petals the color of clear sky and a stem of bright white. A most
2117
1963
  curious plant.
2118
- atk_lo: 2
2119
- atk_hi: 4
2120
1964
  takeable: true
1965
+ talkable: false
2121
1966
  useable: false
2122
- equippable: true
2123
1967
  monsters_abounding: []
2124
1968
  bosses_abounding: []
2125
1969
  checked_for_monsters: false
2126
1970
  - !ruby/object:Gemwarrior::Location
2127
- name: Sky Tower (West Hallway)
1971
+ name: sky_tower-west_hallway
1972
+ name_display: Sky Tower (West Hallway)
2128
1973
  description: The hallway seems to stretch on for days.
2129
1974
  coords:
2130
1975
  :x: 7
@@ -2145,7 +1990,8 @@ locations:
2145
1990
  bosses_abounding: []
2146
1991
  checked_for_monsters: false
2147
1992
  - !ruby/object:Gemwarrior::Location
2148
- name: Sky Tower (Waterfalls)
1993
+ name: sky_tower-waterfalls
1994
+ name_display: Sky Tower (Waterfalls)
2149
1995
  description: The seemingly neverending deluge of water causes this room to be quite
2150
1996
  loud, yet pretty.
2151
1997
  coords:
@@ -2169,18 +2015,19 @@ locations:
2169
2015
  used: false
2170
2016
  number_of_uses:
2171
2017
  name: waterfall
2018
+ name_display: Waterfall
2172
2019
  description: Gallons of murky, sparkling water fall downward from an unknown spot
2173
2020
  in the sky, ending in a pool on the ground, yet never overflowing.
2174
- atk_lo:
2175
- atk_hi:
2176
2021
  takeable: false
2022
+ talkable: false
2177
2023
  useable: true
2178
2024
  equippable: false
2179
2025
  monsters_abounding: []
2180
2026
  bosses_abounding: []
2181
2027
  checked_for_monsters: false
2182
2028
  - !ruby/object:Gemwarrior::Location
2183
- name: Sky Tower (Massive Door)
2029
+ name: sky_tower-massive_door
2030
+ name_display: Sky Tower (Massive Door)
2184
2031
  description: Before you lies a massive collection of cumulus clouds that form into
2185
2032
  a seemingly impenetrable door, beyond which may well be your doom.
2186
2033
  coords:
@@ -2204,19 +2051,20 @@ locations:
2204
2051
  used: false
2205
2052
  number_of_uses:
2206
2053
  name: massive_door
2054
+ name_display: Massive Door
2207
2055
  description: Translucent, but not transparent, this door constructed of condensed
2208
2056
  water vapor is like nothing you have ever seen. It has no keyhole, but it does
2209
2057
  have a stone-shaped depression floating centrally within it.
2210
- atk_lo:
2211
- atk_hi:
2212
2058
  takeable: false
2059
+ talkable: false
2213
2060
  useable: true
2214
2061
  equippable: false
2215
2062
  monsters_abounding: []
2216
2063
  bosses_abounding: []
2217
2064
  checked_for_monsters: false
2218
2065
  - !ruby/object:Gemwarrior::Location
2219
- name: Sky Tower (Throne Room)
2066
+ name: sky_tower-throne_room
2067
+ name_display: Sky Tower (Throne Room)
2220
2068
  description: There, on a mighty seat made of broken dreams, sits Emerald himself,
2221
2069
  staring at you coldly, silently.
2222
2070
  coords:
@@ -2240,21 +2088,18 @@ locations:
2240
2088
  used: false
2241
2089
  number_of_uses:
2242
2090
  name: throne
2243
- description: Made of what appears to be unfulfilled desires and latent, flawed
2244
- happiness, the well-crafted seat still looks kinda comfy. The wizard Emerald
2245
- sits in it, glaring at you.
2246
- atk_lo:
2247
- atk_hi:
2091
+ name_display: Throne
2092
+ description: Made of what appears to be unfulfilled desires and latent, flawed happiness, the well-crafted seat still looks kinda comfy. The wizard Emerald sits in it, glaring at you.
2248
2093
  takeable: false
2094
+ talkable: true
2249
2095
  useable: false
2250
2096
  equippable: false
2251
2097
  monsters_abounding: []
2252
2098
  bosses_abounding:
2253
2099
  - !ruby/object:Gemwarrior::Emerald
2254
- name: Emerald
2255
- description: A wily, beefy, tower of a man, Emerald looks to be a champion of
2256
- both wisdom, from what you've heard, AND strength, from what you plainly see.
2257
- He sports a permanent scowl as he faces you, dead-on.
2100
+ name: emerald
2101
+ name_display: Emerald
2102
+ description: A wily, beefy, tower of a man, Emerald looks to be a champion of both wisdom, from what you've heard, AND strength, from what you plainly see. He sports a permanent scowl as he faces you, dead-on.
2258
2103
  face: gleaming
2259
2104
  hands: tantalizing
2260
2105
  mood: enraged
@@ -2266,6 +2111,7 @@ locations:
2266
2111
  defense: 5
2267
2112
  dexterity: 9
2268
2113
  inventory: !ruby/object:Gemwarrior::Inventory
2114
+ armor:
2269
2115
  items:
2270
2116
  - !ruby/object:Gemwarrior::SparklyThing
2271
2117
  equipped: false
@@ -2273,22 +2119,22 @@ locations:
2273
2119
  used: false
2274
2120
  number_of_uses:
2275
2121
  name: sparkly_thing
2122
+ name_display: SparklyThing(tm)
2276
2123
  description: The sparkling that this thing does is unimaginably brilliant.
2277
- atk_lo:
2278
- atk_hi:
2279
2124
  takeable: true
2280
2125
  useable: true
2281
2126
  equippable: false
2282
2127
  weapon:
2283
- rox: 35
2284
- xp: 22
2128
+ rox: 175
2129
+ xp: 200
2285
2130
  battlecry: 'You have come for the SparklyThing(tm), I see. To that I say: Ha ha
2286
2131
  ha ha ha! Prepare yourself fool: today your whole life crumbles!'
2287
2132
  is_boss: true
2288
2133
  is_dead: false
2289
2134
  checked_for_monsters: false
2290
2135
  - !ruby/object:Gemwarrior::Location
2291
- name: Sky Tower (Lounge)
2136
+ name: sky_tower-lounge
2137
+ name_display: Sky Tower (Lounge)
2292
2138
  description: Nothing but a simple couch, which looks very comfortable, exists in
2293
2139
  this corner of the tower.
2294
2140
  coords:
@@ -2312,17 +2158,18 @@ locations:
2312
2158
  used: false
2313
2159
  number_of_uses:
2314
2160
  name: couch
2161
+ name_display: Couch
2315
2162
  description: Ever wanted to sit on a cloud? Now is your chance.
2316
- atk_lo:
2317
- atk_hi:
2318
2163
  takeable: false
2164
+ talkable: false
2319
2165
  useable: true
2320
2166
  equippable: false
2321
2167
  monsters_abounding: []
2322
2168
  bosses_abounding: []
2323
2169
  checked_for_monsters: false
2324
2170
  - !ruby/object:Gemwarrior::Location
2325
- name: Sky Tower (East Hallway)
2171
+ name: sky_tower-east_hallway
2172
+ name_display: Sky Tower (East Hallway)
2326
2173
  description: Longish and neverending is what you might say about this stretch of
2327
2174
  the tower.
2328
2175
  coords:
@@ -2344,7 +2191,8 @@ locations:
2344
2191
  bosses_abounding: []
2345
2192
  checked_for_monsters: false
2346
2193
  - !ruby/object:Gemwarrior::Location
2347
- name: Sky Tower (Kitchen)
2194
+ name: sky_tower-kitchen
2195
+ name_display: Sky Tower (Kitchen)
2348
2196
  description: This kitchen looks well-used, as appliances abound, and leftover food
2349
2197
  sits atop counters.
2350
2198
  coords:
@@ -2368,10 +2216,9 @@ locations:
2368
2216
  used: false
2369
2217
  number_of_uses:
2370
2218
  name: apple
2219
+ name_display: Apple
2371
2220
  description: Reddish-orangeish in color, this fruit looks sweet, but it is heavy
2372
2221
  and feels more like a rock you would sooner not bite into.
2373
- atk_lo:
2374
- atk_hi:
2375
2222
  takeable: true
2376
2223
  useable: false
2377
2224
  equippable: false
@@ -2381,18 +2228,19 @@ locations:
2381
2228
  used: false
2382
2229
  number_of_uses:
2383
2230
  name: cup
2231
+ name_display: Cup
2384
2232
  description: A nice stone mug, perfect for putting things into and then using
2385
2233
  to carry such things from place to place.
2386
- atk_lo:
2387
- atk_hi:
2388
2234
  takeable: true
2235
+ talkable: false
2389
2236
  useable: false
2390
2237
  equippable: false
2391
2238
  monsters_abounding: []
2392
2239
  bosses_abounding: []
2393
2240
  checked_for_monsters: false
2394
2241
  - !ruby/object:Gemwarrior::Location
2395
- name: Queen Room
2242
+ name: queen_room
2243
+ name_display: Queen Room
2396
2244
  description: Your surroundings contain four walls with no windows, a vaulted ceiling above, and a tile floor below, all immaculately decorated. A small throne lies before you with a woman sitting on it. You must be in the presence of Queen Ruby herself.
2397
2245
  coords:
2398
2246
  :x: 5
@@ -2413,8 +2261,6 @@ locations:
2413
2261
  number_of_uses:
2414
2262
  name: queen_ruby
2415
2263
  description: Queen Ruby glimmers like she was made from the substance of her name. She wears a wan smile, and her hands are delicately intertwined as she sits patiently.
2416
- atk_lo:
2417
- atk_hi:
2418
2264
  takeable: false
2419
2265
  useable: true
2420
2266
  equippable: false
@@ -2425,8 +2271,7 @@ locations:
2425
2271
  player: !ruby/object:Gemwarrior::Player
2426
2272
  name: Player
2427
2273
  description: |-
2428
- Picked to do battle against a wizened madman for a shiny something
2429
- or other for world-saving purposes.
2274
+ Picked to do battle against a wizened madman for a shiny something or other for world-saving purposes.
2430
2275
  face: facey
2431
2276
  hands: handsy
2432
2277
  mood: moody
@@ -2439,6 +2284,7 @@ player: !ruby/object:Gemwarrior::Player
2439
2284
  defense: 5
2440
2285
  dexterity: 5
2441
2286
  inventory: !ruby/object:Gemwarrior::Inventory
2287
+ armor:
2442
2288
  items: []
2443
2289
  weapon:
2444
2290
  rox: 0