Documentation polishing.
[open-adventure.git] / adventure.yaml
1 # This YAML file gets processed into a collection of data structures and
2 # variable initializers describing Colossal Cave.  It replaces an ad-hoc
3 # text database shipped with Adventure versions up to 2.5.  The format
4 # change enabled a lot of use of symbolic names where there were previously
5 # inscrutable numeric literals.
6 #
7 # We define a bunch of YAML structures:
8 #
9 # hints: Each item contains a hint number (add 10 to get cond bit),
10 #    a hint label (used to generate the value macro for the hint) 
11 #    the number of turns he must be at the right loc(s) before
12 #    triggering the hint, the points deducted for taking the hint, the
13 #    message number (section 6) of the question, and the message
14 #    number of the hint.  These values are stashed in the "hints"
15 #    array.
16 #
17 # locations: They have attributes as follows...
18 #
19 #    long:         Long description, always shown on first encounter.
20 #    short:        Short description. If none, use long description.
21 #    conditions:   A dictionary of attributes
22 #        LIT            Light
23 #        OILY           If FLUID flag is on: true for oil, false for water
24 #        FLUID          Liquid asset
25 #        NOARRR         Pirate doesn't go here unless following player
26 #        NOBACK         Cannot use "back" to move away
27 #        HCAVE          Trying to get into cave
28 #        HBIRD          Trying to catch bird
29 #        HSNAKE         Trying to deal with snake
30 #        HMAZE          Lost in maze
31 #        HDARK          Pondering dark room
32 #        HWITT          At Witt's End
33 #        HCLIFF         Cliff with urn
34 #        HWOODS         Lost in forest
35 #        HOGRE          Trying to deal with ogre
36 #        HJADE          Found all treasures except jade
37 #    hints:        A list of YAML references to hints that may be available at
38 #                  this location. (This is why locations has to follow hints.)
39 #    sound:        Label for a location sound.
40 #    loud:         If true, object sounds are drowned out at this location.
41 #
42 #    All attributes are optional except the long description. Order of
43 #    locations is not significant.
44 #
45 # arbitrary_messages: These are arguments to rspeak(). Some spans of
46 #    these messages need to be kept adjacent and ordered (for now).
47 #    To see which, grep for rspeak() calls containing expressions with
48 #    arithmetic.  Eventually, these will be pulled out into more appropriate
49 #    data structures. Then ordering can be dropped, and gaps removed.
50 #
51 # classes: Each item contains a point threshold and a message
52 #    describing a classification of player.  Point thresholds must be
53 #    in ascending order. The scoring code selects the appropriate
54 #    message, where each message is considered to apply to players
55 #    whose scores are higher than the previous N but not higher than
56 #    this N.  Note that these scores probably change with every
57 #    modification (and particularly expansion) of the program.
58 #
59 # turn_thresholds:  Each item contains a number and a message
60 #    berating the player for taking so many turns.  When the turn count
61 #    matches one of the thresholds, the corresponding message is shown.
62 #    Order doesn't matter; the logic simply tests every threshold on
63 #    the assumption that turn counts never decrease nor skip values.
64 #
65 # objects: Each item contains a description for use in the inventory command
66 #    and one or more messages describing the object in different states.
67 #    If the inventory desription begins with "*" the object is dungeon
68 #    furniture that cannot be taken or carried.
69 #
70 # obituaries: Death messages and reincarnation queries.  Order is
71 #    significant, they're used in succession as the player racks up
72 #    deaths.
73 #
74 # These correspond to sections 1, 2, 5, 6, 9, 10, 11, 13, and 14 in the old
75 # adventure.text format.  Sections 3, 4, 7, and 8 haven't moved yet.
76 # Section 12 was obsolete.
77
78 # FIXME: Hint texts shouldn't be in arbitrary_messages, but inlined here
79 hints:
80   - hint: &grate
81       name: CAVE
82       number: 1
83       turns: 4
84       penalty: 2
85       question: ENTRY_QUERY
86       hint: HARD_GRATE
87   - hint: &bird
88       name: BIRD
89       number: 2
90       turns: 5
91       penalty: 2
92       question: BIRD_QUERY
93       hint: SKITTISH_BIRD
94   - hint: &snake
95       name: SNAKE
96       number: 3
97       turns: 8
98       penalty: 2
99       question: SNAKE_QUERY
100       hint: SNAKE_HINT
101   - hint: &maze
102       name: MAZE
103       number: 4
104       turns: 75
105       penalty: 4
106       question: MAZE_HELP
107       hint: DROP_THINGS
108   - hint: &dark
109       name: DARK
110       number: 5
111       turns: 25
112       penalty: 5
113       question: PLOVER_QUERY
114       hint: EXPLORE_HINT
115   - hint: &witt
116       name: WITT
117       number: 6
118       turns: 20
119       penalty: 3
120       question: HELP_LEAVING
121       hint: NOGO_WEST
122   - hint: &urn
123       name: CLIFF
124       number: 7
125       turns: 8
126       penalty: 2
127       question: WONDERING_QUERY
128       hint: ADVANCED_SECTION
129   - hint: &forest
130       name: WOODS
131       number: 8
132       turns: 25
133       penalty: 2
134       question: FOREST_QUERY
135       hint: GO_EAST
136   - hint: &ogre
137       name: OGRE
138       number: 9
139       turns: 10
140       penalty: 4
141       question: OGRE_QUERY
142       hint: OGRE_CLUE
143   - hint: &jade
144       name: JADE
145       number: 10
146       turns: 1
147       penalty: 4
148       question: MISSING_ONE
149       hint: NO_LOCATE
150
151 locations: !!omap
152 - LOC_NOWHERE:
153     description:
154       long: !!null
155       short: !!null
156     conditions: {}
157 - LOC_START:
158     description:
159       long: 'You are standing at the end of a road before a small brick building.\nAround you is a forest.  A small stream flows out of the building and\ndown a gully.'
160       short: 'You''re in front of building.'
161     conditions: {FLUID: true, ABOVE: true, LIT: true}
162     sound: STREAM_GURGLES
163 - LOC_HILL:
164     description:
165       long: 'You have walked up a hill, still in the forest.  The road slopes back\ndown the other side of the hill.  There is a building in the distance.'
166       short: 'You''re at hill in road.'
167     conditions: {ABOVE: true, LIT: true}
168 - LOC_BUILDING:
169     description:
170       long: 'You are inside a building, a well house for a large spring.'
171       short: 'You''re inside building.'
172     conditions: {FLUID: true, ABOVE: true, LIT: true}
173     sound: STREAM_GURGLES
174 - LOC_VALLEY:
175     description:
176       long: 'You are in a valley in the forest beside a stream tumbling along a\nrocky bed.'
177       short: 'You''re in valley.'
178     conditions: {FLUID: true, ABOVE: true, LIT: true}
179     sound: STREAM_GURGLES
180 - LOC_ROADEND:
181     description:
182       long: 'The road, which approaches from the east, ends here amid the trees.'
183       short: 'You''re at end of road.'
184     conditions: {ABOVE: true, LIT: true}
185 - LOC_CLIFF:
186     description:
187       long: 'The forest thins out here to reveal a steep cliff.  There is no way\ndown, but a small ledge can be seen to the west across the chasm.'
188       short: 'You''re at cliff.'
189     conditions: {ABOVE: true, NOBACK: true, LIT: true}
190     hints: [*urn]
191 - LOC_SLIT:
192     description:
193       long: 'At your feet all the water of the stream splashes into a 2-inch slit\nin the rock.  Downstream the streambed is bare rock.'
194       short: 'You''re at slit in streambed.'
195     conditions: {FLUID: true, ABOVE: true, LIT: true}
196     sound: STREAM_GURGLES
197 - LOC_GRATE:
198     description:
199       long: 'You are in a 20-foot depression floored with bare dirt.  Set into the\ndirt is a strong steel grate mounted in concrete.  A dry streambed\nleads into the depression.'
200       short: 'You''re outside grate.'
201     conditions: {ABOVE: true, LIT: true}
202     hints: [*grate, *jade]
203 - LOC_BELOWGRATE:
204     description:
205       long: 'You are in a small chamber beneath a 3x3 steel grate to the surface.\nA low crawl over cobbles leads inward to the west.'
206       short: 'You''re below the grate.'
207     conditions: {LIT: true}
208 - LOC_COBBLE:
209     description:
210       long: 'You are crawling over cobbles in a low passage.  There is a dim light\nat the east end of the passage.'
211       short: 'You''re in cobble crawl.'
212     conditions: {LIT: true}
213 - LOC_DEBRIS:
214     description:
215       long: 'You are in a debris room filled with stuff washed in from the surface.\nA low wide passage with cobbles becomes plugged with mud and debris\nhere, but an awkward canyon leads upward and west.  In the mud someone\nhas scrawled, "MAGIC WORD XYZZY".'
216       short: 'You''re in debris room.'
217     conditions: {}
218 - LOC_AWKWARD:
219     description:
220       long: 'You are in an awkward sloping east/west canyon.'
221       short: !!null
222     conditions: {}
223 - LOC_BIRD:
224     description:
225       long: 'You are in a splendid chamber thirty feet high.  The walls are frozen\nrivers of orange stone.  An awkward canyon and a good passage exit\nfrom east and west sides of the chamber.'
226       short: 'You''re in bird chamber.'
227     conditions: {}
228     hints: [*bird] 
229 - LOC_PITTOP:
230     description:
231       long: 'At your feet is a small pit breathing traces of white mist.  An east\npassage ends here except for a small crack leading on.'
232       short: 'You''re at top of small pit.'
233     conditions: {}
234 - LOC_MISTHALL:
235     description:
236       long: 'You are at one end of a vast hall stretching forward out of sight to\nthe west.  There are openings to either side.  Nearby, a wide stone\nstaircase leads downward.  The hall is filled with wisps of white mist\nswaying to and fro almost as if alive.  A cold wind blows up the\nstaircase.  There is a passage at the top of a dome behind you.'
237       short: 'You''re in Hall of Mists.'
238     conditions: {DEEP: true}
239     hints: [*jade]
240     sound: WIND_WHISTLES
241 - LOC_CRACK:
242     description:
243       long: 'The crack is far too small for you to follow.  At its widest it is\nbarely wide enough to admit your foot.'
244       short: !!null
245     conditions: {DEEP: true}
246 - LOC_EASTBANK:
247     description:
248       long: 'You are on the east bank of a fissure slicing clear across the hall.\nThe mist is quite thick here, and the fissure is too wide to jump.'
249       short: 'You''re on east bank of fissure.'
250     conditions: {DEEP: true}
251 - LOC_NUGGET:
252     description:
253       long: 'This is a low room with a crude note on the wall.  The note says,\n"You won''t get it up the steps".'
254       short: 'You''re in nugget-of-gold room.'
255     conditions: {DEEP: true}
256 - LOC_KINGHALL:
257     description:
258       long: 'You are in the Hall of the Mountain King, with passages off in all\ndirections.'
259       short: 'You''re in Hall of Mt King.'
260     conditions: {DEEP: true}
261     hints: [*snake]
262 - LOC_NECKBROKE:
263     description:
264       long: 'You are at the bottom of the pit with a broken neck.'
265       short: !!null
266     conditions: {DEEP: true}
267 - LOC_NOMAKE:
268     description:
269       long: 'You didn''t make it.'
270       short: !!null
271     conditions: {DEEP: true}
272 - LOC_DOME:
273     description:
274       long: 'The dome is unclimbable.'
275       short: !!null
276     conditions: {DEEP: true}
277 - LOC_WESTEND:
278     description:
279       long: 'You are at the west end of the Twopit Room.  There is a large hole in\nthe wall above the pit at this end of the room.'
280       short: 'You''re at west end of Twopit Room.'
281     conditions: {DEEP: true}
282 - LOC_EASTPIT:
283     description:
284       long: 'You are at the bottom of the eastern pit in the Twopit Room.  There is\na small pool of oil in one corner of the pit.'
285       short: 'You''re in east pit.'
286     conditions: {FLUID: true, DEEP: true, OILY: true}
287 - LOC_WESTPIT:
288     description:
289       long: 'You are at the bottom of the western pit in the Twopit Room.  There is\na large hole in the wall about 25 feet above you.'
290       short: 'You''re in west pit.'
291     conditions: {DEEP: true}
292 - LOC_CLIMBSTALK:
293     description:
294       long: 'You clamber up the plant and scurry through the hole at the top.'
295       short: !!null
296     conditions: {DEEP: true}
297 - LOC_WESTBANK:
298     description:
299       long: 'You are on the west side of the fissure in the Hall of Mists.'
300       short: 'You''re on west bank of fissure.'
301     conditions: {DEEP: true}
302 - LOC_FLOORHOLE:
303     description:
304       long: 'You are in a low n/s passage at a hole in the floor.  The hole goes\ndown to an e/w passage.'
305       short: 'You''re in n/s passage above e/w passage.'
306     conditions: {DEEP: true}
307 - LOC_SOUTHSIDE:
308     description:
309       long: 'You are in the south side chamber.'
310       short: !!null
311     conditions: {DEEP: true}
312 - LOC_WESTSIDE:
313     description:
314       long: 'You are in the west side chamber of the Hall of the Mountain King.\nA passage continues west and up here.'
315       short: 'You''re in the west side chamber.'
316     conditions: {DEEP: true}
317 - LOC_BUILDING1:
318     description:
319       long: ''
320       short: !!null
321     conditions: {DEEP: true}
322 - LOC_SNAKEBLOCK:
323     description:
324       long: 'You can''t get by the snake.'
325       short: !!null
326     conditions: {DEEP: true}
327 - LOC_Y2:
328     description:
329       long: 'You are in a large room, with a passage to the south, a passage to the\nwest, and a wall of broken rock to the east.  There is a large "Y2" on\na rock in the room''s center.'
330       short: 'You''re at "Y2".'
331     conditions: {DEEP: true}
332 - LOC_JUMBLE:
333     description:
334       long: 'You are in a jumble of rock, with cracks everywhere.'
335       short: !!null
336     conditions: {DEEP: true}
337 - LOC_WINDOW1:
338     description:
339       long: 'You''re at a low window overlooking a huge pit, which extends up out of\nsight.  A floor is indistinctly visible over 50 feet below.  Traces of\nwhite mist cover the floor of the pit, becoming thicker to the right.\nMarks in the dust around the window would seem to indicate that\nsomeone has been here recently.  Directly across the pit from you and\n25 feet away there is a similar window looking into a lighted room.  A\nshadowy figure can be seen there peering back at you.'
340       short: 'You''re at window on pit.'
341     conditions: {DEEP: true}
342 - LOC_BROKEN:
343     description:
344       long: 'You are in a dirty broken passage.  To the east is a crawl.  To the\nwest is a large passage.  Above you is a hole to another passage.'
345       short: 'You''re in dirty passage.'
346     conditions: {DEEP: true}
347 - LOC_SMALLPITBRINK:
348     description:
349       long: 'You are on the brink of a small clean climbable pit.  A crawl leads\nwest.'
350       short: 'You''re at brink of small pit.'
351     conditions: {DEEP: true}
352 - LOC_SMALLPIT:
353     description:
354       long: 'You are in the bottom of a small pit with a little stream, which\nenters and exits through tiny slits.'
355       short: 'You''re at bottom of pit with stream.'
356     conditions: {FLUID: true, DEEP: true}
357     sound: STREAM_GURGLES
358 - LOC_DUSTY:
359     description:
360       long: 'You are in a large room full of dusty rocks.  There is a big hole in\nthe floor.  There are cracks everywhere, and a passage leading east.'
361       short: 'You''re in dusty rock room.'
362     conditions: {DEEP: true}
363 - LOC_PARALLEL1:
364     description:
365       long: 'You have crawled through a very low wide passage parallel to and north\nof the Hall of Mists.'
366       short: !!null
367     conditions: {DEEP: true}
368 - LOC_MISTWEST:
369     description:
370       long: 'You are at the west end of the Hall of Mists.  A low wide crawl\ncontinues west and another goes north.  To the south is a little\npassage 6 feet off the floor.'
371       short: 'You''re at west end of Hall of Mists.'
372     conditions: {DEEP: true}
373 - LOC_ALIKE1:
374     description:
375       long: 'You are in a maze of twisty little passages, all alike.'
376       short: !!null
377     conditions: {DEEP: true, NOBACK: true}
378     hints: [*maze]
379 - LOC_ALIKE2:
380     description:
381       long: 'You are in a maze of twisty little passages, all alike.'
382       short: !!null
383     conditions: {DEEP: true, NOBACK: true}
384     hints: [*maze]
385 - LOC_ALIKE3:
386     description:
387       long: 'You are in a maze of twisty little passages, all alike.'
388       short: !!null
389     conditions: {DEEP: true, NOBACK: true}
390     hints: [*maze]
391 - LOC_ALIKE4:
392     description:
393       long: 'You are in a maze of twisty little passages, all alike.'
394       short: !!null
395     conditions: {DEEP: true, NOBACK: true}
396     hints: [*maze]
397 - LOC_DEADEND1:
398     description:
399       long: 'Dead end'
400       short: !!null
401     conditions: {DEEP: true, NOARRR: true}
402     hints: [*maze]
403 - LOC_DEADEND2:
404     description:
405       long: 'Dead end'
406       short: !!null
407     conditions: {DEEP: true, NOARRR: true}
408     hints: [*maze]
409 - LOC_DEADEND3:
410     description:
411       long: 'Dead end'
412       short: !!null
413     conditions: {DEEP: true, NOARRR: true}
414     hints: [*maze]
415 - LOC_ALIKE5:
416     description:
417       long: 'You are in a maze of twisty little passages, all alike.'
418       short: !!null
419     conditions: {DEEP: true, NOBACK: true}
420     hints: [*maze]
421 - LOC_ALIKE6:
422     description:
423       long: 'You are in a maze of twisty little passages, all alike.'
424       short: !!null
425     conditions: {DEEP: true, NOBACK: true}
426     hints: [*maze]
427 - LOC_ALIKE7:
428     description:
429       long: 'You are in a maze of twisty little passages, all alike.'
430       short: !!null
431     conditions: {DEEP: true, NOBACK: true}
432     hints: [*maze]
433 - LOC_ALIKE8:
434     description:
435       long: 'You are in a maze of twisty little passages, all alike.'
436       short: !!null
437     conditions: {DEEP: true, NOBACK: true}
438     hints: [*maze]
439 - LOC_ALIKE9:
440     description:
441       long: 'You are in a maze of twisty little passages, all alike.'
442       short: !!null
443     conditions: {DEEP: true, NOBACK: true}
444     hints: [*maze]
445 - LOC_DEADEND4:
446     description:
447       long: 'Dead end'
448       short: !!null
449     conditions: {DEEP: true, NOARRR: true}
450     hints: [*maze]
451 - LOC_ALIKE10:
452     description:
453       long: 'You are in a maze of twisty little passages, all alike.'
454       short: !!null
455     conditions: {DEEP: true, NOBACK: true}
456     hints: [*maze]
457 - LOC_DEADEND5:
458     description:
459       long: 'Dead end'
460       short: !!null
461     conditions: {DEEP: true, NOARRR: true}
462     hints: [*maze]
463 - LOC_PITBRINK:
464     description:
465       long: 'You are on the brink of a thirty foot pit with a massive orange column\ndown one wall.  You could climb down here but you could not get back\nup.  The maze continues at this level.'
466       short: 'You''re at brink of pit.'
467     conditions: {DEEP: true, NOBACK: true}
468 - LOC_DEADEND6:
469     description:
470       long: 'Dead end'
471       short: !!null
472     conditions: {NOARRR: true, DEEP: true}
473 - LOC_PARALLEL2:
474     description:
475       long: 'You have crawled through a very low wide passage parallel to and north\nof the Hall of Mists.'
476       short: !!null
477     conditions: {DEEP: true}
478 - LOC_LONGEAST:
479     description:
480       long: 'You are at the east end of a very long hall apparently without side\nchambers.  To the east a low wide crawl slants up.  To the north a\nround two foot hole slants down.'
481       short: 'You''re at east end of long hall.'
482     conditions: {DEEP: true}
483 - LOC_LONGWEST:
484     description:
485       long: 'You are at the west end of a very long featureless hall.  The hall\njoins up with a narrow north/south passage.'
486       short: 'You''re at west end of long hall.'
487     conditions: {DEEP: true}
488 - LOC_CROSSOVER:
489     description:
490       long: 'You are at a crossover of a high n/s passage and a low e/w one.'
491       short: !!null
492     conditions: {DEEP: true}
493 - LOC_DEADEND7:
494     description:
495       long: 'Dead end'
496       short: !!null
497     conditions: {DEEP: true}
498 - LOC_COMPLEX:
499     description:
500       long: 'You are at a complex junction.  A low hands and knees passage from the\nnorth joins a higher crawl from the east to make a walking passage\ngoing west.  There is also a large room above.  The air is damp here.'
501       short: 'You''re at complex junction.'
502     conditions: {DEEP: true}
503     hints: [*jade]
504     sound: WIND_WHISTLES
505 - LOC_BEDQUILT:
506     description:
507       long: 'You are in Bedquilt, a long east/west passage with holes everywhere.\nTo explore at random select north, south, up, or down.'
508       short: 'You''re in Bedquilt.'
509     conditions: {DEEP: true}
510 - LOC_SWISSCHEESE:
511     description:
512       long: 'You are in a room whose walls resemble swiss cheese.  Obvious passages\ngo west, east, ne, and nw.  Part of the room is occupied by a large\nbedrock block.'
513       short: 'You''re in Swiss Cheese Room.'
514     conditions: {DEEP: true}
515 - LOC_EASTEND:
516     description:
517       long: 'You are at the east end of the Twopit Room.  The floor here is\nlittered with thin rock slabs, which make it easy to descend the pits.\nThere is a path here bypassing the pits to connect passages from east\nand west.  There are holes all over, but the only big one is on the\nwall directly over the west pit where you can''t get to it.'
518       short: 'You''re at east end of Twopit Room.'
519     conditions: {DEEP: true}
520 - LOC_SLAB:
521     description:
522       long: 'You are in a large low circular chamber whose floor is an immense slab\nfallen from the ceiling (Slab Room).  East and west there once were\nlarge passages, but they are now filled with boulders.  Low small\npassages go north and south, and the south one quickly bends west\naround the boulders.'
523       short: 'You''re in Slab Room.'
524     conditions: {DEEP: true}
525 - LOC_SECRET1:
526     description:
527       long: 'You are in a secret n/s canyon above a large room.'
528       short: !!null
529     conditions: {DEEP: true}
530 - LOC_SECRET2:
531     description:
532       long: 'You are in a secret n/s canyon above a sizable passage.'
533       short: !!null
534     conditions: {DEEP: true}
535 - LOC_THREEJUNCTION:
536     description:
537       long: 'You are in a secret canyon at a junction of three canyons, bearing\nnorth, south, and se.  The north one is as tall as the other two\ncombined.'
538       short: 'You''re at junction of three secret canyons.'
539     conditions: {DEEP: true}
540 - LOC_LOWROOM:
541     description:
542       long: 'You are in a large low room.  Crawls lead north, se, and sw.'
543       short: 'You''re in large low room.'
544     conditions: {DEEP: true}
545 - LOC_DEADCRAWL:
546     description:
547       long: 'Dead end crawl.'
548       short: !!null
549     conditions: {DEEP: true}
550 - LOC_SECRET3:
551     description:
552       long: 'You are in a secret canyon which here runs e/w.  It crosses over a\nvery tight canyon 15 feet below.  If you go down you may not be able\nto get back up.'
553       short: 'You''re in secret e/w canyon above tight canyon.'
554     conditions: {DEEP: true}
555 - LOC_WIDEPLACE:
556     description:
557       long: 'You are at a wide place in a very tight n/s canyon.'
558       short: !!null
559     conditions: {DEEP: true}
560 - LOC_TIGHTPLACE:
561     description:
562       long: 'The canyon here becomes too tight to go further south.'
563       short: !!null
564     conditions: {DEEP: true}
565 - LOC_TALL:
566     description:
567       long: 'You are in a tall e/w canyon.  A low tight crawl goes 3 feet north and\nseems to open up.'
568       short: !!null
569     conditions: {DEEP: true}
570 - LOC_BOULDERS1:
571     description:
572       long: 'The canyon runs into a mass of boulders -- dead end.'
573       short: !!null
574     conditions: {DEEP: true}
575 - LOC_SEWER:
576     description:
577       long: 'The stream flows out through a pair of 1 foot diameter sewer pipes.\nIt would be advisable to use the exit.'
578       short: !!null
579     conditions: {DEEP: true}
580 - LOC_ALIKE11:
581     description:
582       long: 'You are in a maze of twisty little passages, all alike.'
583       short: !!null
584     conditions: {DEEP: true, NOBACK: true}
585     hints: [*maze]
586 - LOC_DEADEND8:
587     description:
588       long: 'Dead end'
589       short: !!null
590     conditions: {DEEP: true}
591     hints: [*maze]
592 - LOC_DEADEND9:
593     description:
594       long: 'Dead end'
595       short: !!null
596     conditions: {DEEP: true, NOARRR: true}
597     hints: [*maze]
598 - LOC_ALIKE12:
599     description:
600       long: 'You are in a maze of twisty little passages, all alike.'
601       short: !!null
602     conditions: {DEEP: true, NOBACK: true}
603 - LOC_ALIKE13:
604     description:
605       long: 'You are in a maze of twisty little passages, all alike.'
606       short: !!null
607     conditions: {DEEP: true, NOBACK: true}
608 - LOC_DEADEND10:
609     description:
610       long: 'Dead end'
611       short: !!null
612     conditions: {NOARRR: true, DEEP: true}
613 - LOC_DEADEND11:
614     description:
615       long: 'Dead end'
616       short: !!null
617     conditions: {DEEP: true, NOARRR: true}
618     hints: [*maze]
619 - LOC_ALIKE14:
620     description:
621       long: 'You are in a maze of twisty little passages, all alike.'
622       short: !!null
623     conditions: {DEEP: true, NOBACK: true}
624     hints: [*maze]
625 - LOC_NARROW:
626     description:
627       long: 'You are in a long, narrow corridor stretching out of sight to the\nwest.  At the eastern end is a hole through which you can see a\nprofusion of leaves.'
628       short: 'You''re in narrow corridor.'
629     conditions: {DEEP: true}
630 - LOC_NOCLIMB:
631     description:
632       long: 'There is nothing here to climb.  Use "up" or "out" to leave the pit.'
633       short: !!null
634     conditions: {DEEP: true}
635 - LOC_PLANTTOP:
636     description:
637       long: 'You have climbed up the plant and out of the pit.'
638       short: !!null
639     conditions: {DEEP: true}
640 - LOC_INCLINE:
641     description:
642       long: 'You are at the top of a steep incline above a large room.  You could\nclimb down here, but you would not be able to climb up.  There is a\npassage leading back to the north.'
643       short: 'You''re at steep incline above large room.'
644     conditions: {DEEP: true}
645 - LOC_GIANTROOM:
646     description:
647       long: 'You are in the Giant Room.  The ceiling here is too high up for your\nlamp to show it.  Cavernous passages lead east, north, and south.  On\nthe west wall is scrawled the inscription, "FEE FIE FOE FOO" [sic].'
648       short: 'You''re in Giant Room.'
649     conditions: {DEEP: true}
650 - LOC_CAVEIN:
651     description:
652       long: 'The passage here is blocked by a recent cave-in.'
653       short: !!null
654     conditions: {DEEP: true}
655 - LOC_IMMENSE:
656     description:
657       long: 'You are at one end of an immense north/south passage.'
658       short: !!null
659     conditions: {DEEP: true}
660     sound: WIND_WHISTLES
661 - LOC_WATERFALL:
662     description:
663       long: 'You are in a magnificent cavern with a rushing stream, which cascades\nover a sparkling waterfall into a roaring whirlpool which disappears\nthrough a hole in the floor.  Passages exit to the south and west.'
664       short: 'You''re in cavern with waterfall.'
665     conditions: {FLUID: true, DEEP: true}
666     sound: STREAM_SPLASHES
667 - LOC_SOFTROOM:
668     description:
669       long: 'You are in the Soft Room.  The walls are covered with heavy curtains,\nthe floor with a thick pile carpet.  Moss covers the ceiling.'
670       short: 'You''re in Soft Room.'
671     conditions: {DEEP: true}
672 - LOC_ORIENTAL:
673     description:
674       long: 'This is the Oriental Room.  Ancient oriental cave drawings cover the\nwalls.  A gently sloping passage leads upward to the north, another\npassage leads se, and a hands and knees crawl leads west.'
675       short: 'You''re in Oriental Room.'
676     conditions: {DEEP: true}
677 - LOC_MISTY:
678     description:
679       long: 'You are following a wide path around the outer edge of a large cavern.\nFar below, through a heavy white mist, strange splashing noises can be\nheard.  The mist rises up through a fissure in the ceiling.  The path\nexits to the south and west.'
680       short: 'You''re in misty cavern.'
681     conditions: {DEEP: true}
682     sound: NO_MEANING
683 - LOC_ALCOVE:
684     description:
685       long: 'You are in an alcove.  A small nw path seems to widen after a short\ndistance.  An extremely tight tunnel leads east.  It looks like a very\ntight squeeze.  An eerie light can be seen at the other end.'
686       short: 'You''re in alcove.'
687     conditions: {DEEP: true}
688     hints: [*dark]
689 - LOC_PLOVER:
690     description:
691       long: 'You''re in a small chamber lit by an eerie green light.  An extremely\nnarrow tunnel exits to the west.  A dark corridor leads ne.'
692       short: 'You''re in Plover Room.'
693     conditions: {DEEP: true, LIT: true}
694     hints: [*dark]
695 - LOC_DARKROOM:
696     description:
697       long: 'You''re in the dark-room.  A corridor leading south is the only exit.'
698       short: 'You''re in dark-room.'
699     conditions: {DEEP: true}
700     hints: [*dark]
701 - LOC_ARCHED:
702     description:
703       long: 'You are in an arched hall.  A coral passage once continued up and east\nfrom here, but is now blocked by debris.  The air smells of sea water.'
704       short: 'You''re in arched hall.'
705     conditions: {DEEP: true}
706 - LOC_SHELLROOM:
707     description:
708       long: 'You''re in a large room carved out of sedimentary rock.  The floor and\nwalls are littered with bits of shells imbedded in the stone.  A\nshallow passage proceeds downward, and a somewhat steeper one leads\nup.  A low hands and knees passage enters from the south.'
709       short: 'You''re in Shell Room.'
710     conditions: {DEEP: true}
711 - LOC_SLOPING1:
712     description:
713       long: 'You are in a long sloping corridor with ragged sharp walls.'
714       short: !!null
715     conditions: {DEEP: true}
716 - LOC_CULDESAC:
717     description:
718       long: 'You are in a cul-de-sac about eight feet across.'
719       short: !!null
720     conditions: {DEEP: true}
721 - LOC_ANTEROOM:
722     description:
723       long: 'You are in an anteroom leading to a large passage to the east.  Small\npassages go west and up.  The remnants of recent digging are evident.\nA sign in midair here says "Cave under construction beyond this point.\nProceed at own risk.  [Witt Construction Company]"'
724       short: 'You''re in anteroom.'
725     conditions: {DEEP: true}
726 - LOC_DIFFERENT1:
727     description:
728       long: 'You are in a maze of twisty little passages, all different.'
729       short: !!null
730     conditions: {DEEP: true, NOBACK: true}
731 - LOC_WITTSEND:
732     description:
733       long: 'You are at Witt''s End.  Passages lead off in *ALL* directions.'
734       short: 'You''re at Witt''s End.'
735     conditions: {DEEP: true, NOBACK: true}
736     hints: [*witt]
737 - LOC_MIRRORCANYON:
738     description:
739       long: 'You are in a north/south canyon about 25 feet across.  The floor is\ncovered by white mist seeping in from the north.  The walls extend\nupward for well over 100 feet.  Suspended from some unseen point far\nabove you, an enormous two-sided mirror is hanging parallel to and\nmidway between the canyon walls.  (The mirror is obviously provided\nfor the use of the dwarves who, as you know, are extremely vain.)  A\nsmall window can be seen in either wall, some fifty feet up.'
740       short: 'You''re in Mirror Canyon.'
741     conditions: {DEEP: true}
742     hints: [*jade]
743     sound: WIND_WHISTLES
744 - LOC_WINDOW2:
745     description:
746       long: 'You''re at a low window overlooking a huge pit, which extends up out of\nsight.  A floor is indistinctly visible over 50 feet below.  Traces of\nwhite mist cover the floor of the pit, becoming thicker to the left.\nMarks in the dust around the window would seem to indicate that\nsomeone has been here recently.  Directly across the pit from you and\n25 feet away there is a similar window looking into a lighted room.  A\nshadowy figure can be seen there peering back at you.'
747       short: 'You''re at window on pit.'
748     conditions: {DEEP: true}
749 - LOC_TOPSTALACTITE:
750     description:
751       long: 'A large stalactite extends from the roof and almost reaches the floor\nbelow.  You could climb down it, and jump from it to the floor, but\nhaving done so you would be unable to reach it to climb back up.'
752       short: 'You''re at top of stalactite.'
753     conditions: {DEEP: true}
754 - LOC_DIFFERENT2:
755     description:
756       long: 'You are in a little maze of twisting passages, all different.'
757       short: !!null
758     conditions: {DEEP: true, NOBACK: true}
759 - LOC_RESERVOIR:
760     description:
761       long: 'You are at the edge of a large underground reservoir.  An opaque cloud\nof white mist fills the room and rises rapidly upward.  The lake is\nfed by a stream, which tumbles out of a hole in the wall about 10 feet\noverhead and splashes noisily into the water somewhere within the\nmist.  There is a passage going back toward the south.'
762       short: 'You''re at reservoir.'
763     conditions: {FLUID: true, DEEP: true}
764     sound: STREAM_SPLASHES
765 - LOC_DEADEND12:
766     description:
767       long: 'Dead end'
768       short: !!null
769     conditions: {DEEP: true}
770 - LOC_NE:
771     description:
772       long: 'You are at the northeast end of an immense room, even larger than the\nGiant Room.  It appears to be a repository for the "Adventure"\nprogram.  Massive torches far overhead bathe the room with smoky\nyellow light.  Scattered about you can be seen a pile of bottles (all\nof them empty), a nursery of young beanstalks murmuring quietly, a bed\nof oysters, a bundle of black rods with rusty stars on their ends, and\na collection of brass lanterns.  Off to one side a great many dwarves\nare sleeping on the floor, snoring loudly.  A notice nearby reads: "Do\nnot disturb the dwarves!"  An immense mirror is hanging against one\nwall, and stretches to the other end of the room, where various other\nsundry objects can be glimpsed dimly in the distance.'
773       short: 'You''re at ne end.'
774     conditions: {DEEP: true, LIT: true}
775     sound: MURMURING_SNORING
776 - LOC_SW:
777     description:
778       long: 'You are at the southwest end of the repository.  To one side is a pit\nfull of fierce green snakes.  On the other side is a row of small\nwicker cages, each of which contains a little sulking bird.  In one\ncorner is a bundle of black rods with rusty marks on their ends.  A\nlarge number of velvet pillows are scattered about on the floor.  A\nvast mirror stretches off to the northeast.  At your feet is a large\nsteel grate, next to which is a sign that reads, "Treasure Vault.\nKeys in main office."'
779       short: 'You''re at sw end.'
780     conditions: {DEEP: true, LIT: true}
781     sound: SNAKES_HISSING
782 - LOC_SWCHASM:
783     description:
784       long: 'You are on one side of a large, deep chasm.  A heavy white mist rising\nup from below obscures all view of the far side.  A sw path leads away\nfrom the chasm into a winding corridor.'
785       short: 'You''re on sw side of chasm.'
786     conditions: {DEEP: true}
787 - LOC_WINDING:
788     description:
789       long: 'You are in a long winding corridor sloping out of sight in both\ndirections.'
790       short: 'You''re in sloping corridor.'
791     conditions: {DEEP: true}
792 - LOC_SECRET4:
793     description:
794       long: 'You are in a secret canyon which exits to the north and east.'
795       short: !!null
796     conditions: {DEEP: true}
797 - LOC_SECRET5:
798     description:
799       long: 'You are in a secret canyon which exits to the north and east.'
800       short: !!null
801     conditions: {DEEP: true}
802 - LOC_SECRET6:
803     description:
804       long: 'You are in a secret canyon which exits to the north and east.'
805       short: !!null
806     conditions: {DEEP: true}
807 - LOC_NECHASM:
808     description:
809       long: 'You are on the far side of the chasm.  A ne path leads away from the\nchasm on this side.'
810       short: 'You''re on ne side of chasm.'
811     conditions: {NOARRR: true, DEEP: true}
812 - LOC_CORRIDOR:
813     description:
814       long: 'You''re in a long east/west corridor.  A faint rumbling noise can be\nheard in the distance.'
815       short: 'You''re in corridor.'
816     conditions: {NOARRR: true, DEEP: true}
817     sound: DULL_RUMBLING
818 - LOC_FORK:
819     description:
820       long: 'The path forks here.  The left fork leads northeast.  A dull rumbling\nseems to get louder in that direction.  The right fork leads southeast\ndown a gentle slope.  The main corridor enters from the west.'
821       short: 'You''re at fork in path.'
822     conditions: {NOARRR: true, DEEP: true}
823     sound: DULL_RUMBLING
824 - LOC_WARMWALLS:
825     description:
826       long: 'The walls are quite warm here.  From the north can be heard a steady\nroar, so loud that the entire cave seems to be trembling.  Another\npassage leads south, and a low crawl goes east.'
827       short: 'You''re at junction with warm walls.'
828     conditions: {NOARRR: true, DEEP: true}
829     sound: LOUD_ROAR
830 - LOC_BREATHTAKING:
831     description:
832       long: 'You are on the edge of a breath-taking view.  Far below you is an\nactive volcano, from which great gouts of molten lava come surging\nout, cascading back down into the depths.  The glowing rock fills the\nfarthest reaches of the cavern with a blood-red glare, giving every-\nthing an eerie, macabre appearance.  The air is filled with flickering\nsparks of ash and a heavy smell of brimstone.  The walls are hot to\nthe touch, and the thundering of the volcano drowns out all other\nsounds.  Embedded in the jagged roof far overhead are myriad twisted\nformations composed of pure white alabaster, which scatter the murky\nlight into sinister apparitions upon the walls.  To one side is a deep\ngorge, filled with a bizarre chaos of tortured rock which seems to\nhave been crafted by the devil himself.  An immense river of fire\ncrashes out from the depths of the volcano, burns its way through the\ngorge, and plummets into a bottomless pit far off to your left.  To\nthe right, an immense geyser of blistering steam erupts continuously\nfrom a barren island in the center of a sulfurous lake, which bubbles\nominously.  The far right wall is aflame with an incandescence of its\nown, which lends an additional infernal splendor to the already\nhellish scene.  A dark, foreboding passage exits to the south.'
833       short: 'You''re at breath-taking view.'
834     conditions: {NOARRR: true, LIT: true, DEEP: true}
835     hints: [*jade]
836     sound: TOTAL_ROAR
837     loud: true
838 - LOC_BOULDERS2:
839     description:
840       long: 'You are in a small chamber filled with large boulders.  The walls are\nvery warm, causing the air in the room to be almost stifling from the\nheat.  The only exit is a crawl heading west, through which is coming\na low rumbling.'
841       short: 'You''re in Chamber of Boulders.'
842     conditions: {NOARRR: true, DEEP: true}
843     sound: DULL_RUMBLING
844 - LOC_LIMESTONE:
845     description:
846       long: 'You are walking along a gently sloping north/south passage lined with\noddly shaped limestone formations.'
847       short: 'You''re in limestone passage.'
848     conditions: {NOARRR: true, DEEP: true}
849 - LOC_BARRENFRONT:
850     description:
851       long: 'You are standing at the entrance to a large, barren room.  A notice\nabove the entrance reads:  "Caution!  Bear in room!"'
852       short: 'You''re in front of Barren Room.'
853     conditions: {NOARRR: true, DEEP: true}
854 - LOC_BARRENROOM:
855     description:
856       long: 'You are inside a barren room.  The center of the room is completely\nempty except for some dust.  Marks in the dust lead away toward the\nfar end of the room.  The only exit is the way you came in.'
857       short: 'You''re in Barren Room.'
858     conditions: {NOARRR: true, DEEP: true}
859 - LOC_DIFFERENT3:
860     description:
861       long: 'You are in a maze of twisting little passages, all different.'
862       short: !!null
863     conditions: {DEEP: true, NOBACK: true}
864 - LOC_DIFFERENT4:
865     description:
866       long: 'You are in a little maze of twisty passages, all different.'
867       short: !!null
868     conditions: {DEEP: true, NOBACK: true}
869 - LOC_DIFFERENT5:
870     description:
871       long: 'You are in a twisting maze of little passages, all different.'
872       short: !!null
873     conditions: {DEEP: true, NOBACK: true}
874 - LOC_DIFFERENT6:
875     description:
876       long: 'You are in a twisting little maze of passages, all different.'
877       short: !!null
878     conditions: {DEEP: true, NOBACK: true}
879 - LOC_DIFFERENT7:
880     description:
881       long: 'You are in a twisty little maze of passages, all different.'
882       short: !!null
883     conditions: {DEEP: true, NOBACK: true}
884 - LOC_DIFFERENT8:
885     description:
886       long: 'You are in a twisty maze of little passages, all different.'
887       short: !!null
888     conditions: {DEEP: true, NOBACK: true}
889 - LOC_DIFFERENT9:
890     description:
891       long: 'You are in a little twisty maze of passages, all different.'
892       short: !!null
893     conditions: {DEEP: true, NOBACK: true}
894 - LOC_DIFFERENT10:
895     description:
896       long: 'You are in a maze of little twisting passages, all different.'
897       short: !!null
898     conditions: {DEEP: true, NOBACK: true}
899 - LOC_DIFFERENT11:
900     description:
901       long: 'You are in a maze of little twisty passages, all different.'
902       short: !!null
903     conditions: {DEEP: true, NOBACK: true}
904 - LOC_DEADEND13:
905     description:
906       long: 'Dead end'
907       short: !!null
908     conditions: {DEEP: true}
909 - LOC_ROUGHHEWN:
910     description:
911       long: 'You are in a long, rough-hewn, north/south corridor.'
912       short: !!null
913     conditions: {DEEP: true}
914 - LOC_BADDIRECTION:
915     description:
916       long: 'There is no way to go that direction.'
917       short: !!null
918     conditions: {DEEP: true}
919 - LOC_LARGE:
920     description:
921       long: 'You are in a large chamber with passages to the west and north.'
922       short: !!null
923     conditions: {DEEP: true}
924     hints: [*ogre]
925 - LOC_STOREROOM:
926     description:
927       long: 'You are in the ogre''s storeroom.  The only exit is to the south.'
928       short: !!null
929     conditions: {DEEP: true}
930 - LOC_FOREST1:
931     description:
932       long: 'You are wandering aimlessly through the forest.'
933       short: !!null
934     conditions: {FOREST: true, NOBACK: true, LIT: true}
935     hints: [*forest]
936 - LOC_FOREST2:
937     description:
938       long: 'You are wandering aimlessly through the forest.'
939       short: !!null
940     conditions: {FOREST: true, NOBACK: true, LIT: true}
941     hints: [*forest]
942 - LOC_FOREST3:
943     description:
944       long: 'You are wandering aimlessly through the forest.'
945       short: !!null
946     conditions: {FOREST: true, NOBACK: true, LIT: true}
947     hints: [*forest]
948 - LOC_FOREST4:
949     description:
950       long: 'You are wandering aimlessly through the forest.'
951       short: !!null
952     conditions: {FOREST: true, NOBACK: true, LIT: true}
953     hints: [*forest]
954 - LOC_FOREST5:
955     description:
956       long: 'You are wandering aimlessly through the forest.'
957       short: !!null
958     conditions: {FOREST: true, NOBACK: true, LIT: true}
959     hints: [*forest]
960 - LOC_FOREST6:
961     description:
962       long: 'You are wandering aimlessly through the forest.'
963       short: !!null
964     conditions: {FOREST: true, NOBACK: true, LIT: true}
965     hints: [*forest]
966 - LOC_FOREST7:
967     description:
968       long: 'You are wandering aimlessly through the forest.'
969       short: !!null
970     conditions: {FOREST: true, NOBACK: true, LIT: true}
971     hints: [*forest]
972 - LOC_FOREST8:
973     description:
974       long: 'You are wandering aimlessly through the forest.'
975       short: !!null
976     conditions: {FOREST: true, NOBACK: true, LIT: true}
977     hints: [*forest]
978 - LOC_FOREST9:
979     description:
980       long: 'You are wandering aimlessly through the forest.'
981       short: !!null
982     conditions: {FOREST: true, NOBACK: true, LIT: true}
983     hints: [*forest]
984 - LOC_FOREST10:
985     description:
986       long: 'You are wandering aimlessly through the forest.'
987       short: !!null
988     conditions: {FOREST: true, NOBACK: true, LIT: true}
989     hints: [*forest]
990 - LOC_FOREST11:
991     description:
992       long: 'You are wandering aimlessly through the forest.'
993       short: !!null
994     conditions: {FOREST: true, NOBACK: true, LIT: true}
995     hints: [*forest]
996 - LOC_FOREST12:
997     description:
998       long: 'You are wandering aimlessly through the forest.'
999       short: !!null
1000     conditions: {FOREST: true, NOBACK: true, LIT: true}
1001     hints: [*forest]
1002 - LOC_FOREST13:
1003     description:
1004       long: 'You are wandering aimlessly through the forest.'
1005       short: !!null
1006     conditions: {FOREST: true, NOBACK: true, LIT: true}
1007     hints: [*forest]
1008 - LOC_FOREST14:
1009     description:
1010       long: 'You are wandering aimlessly through the forest.'
1011       short: !!null
1012     conditions: {FOREST: true, NOBACK: true, LIT: true}
1013     hints: [*forest]
1014 - LOC_FOREST15:
1015     description:
1016       long: 'You are wandering aimlessly through the forest.'
1017       short: !!null
1018     conditions: {FOREST: true, NOBACK: true, LIT: true}
1019     hints: [*forest]
1020 - LOC_FOREST16:
1021     description:
1022       long: 'You are wandering aimlessly through the forest.'
1023       short: !!null
1024     conditions: {FOREST: true, NOBACK: true, LIT: true}
1025     hints: [*forest]
1026 - LOC_FOREST17:
1027     description:
1028       long: 'You are wandering aimlessly through the forest.'
1029       short: !!null
1030     conditions: {FOREST: true, NOBACK: true, LIT: true}
1031     hints: [*forest]
1032 - LOC_FOREST18:
1033     description:
1034       long: 'You are wandering aimlessly through the forest.'
1035       short: !!null
1036     conditions: {FOREST: true, NOBACK: true, LIT: true}
1037     hints: [*forest]
1038 - LOC_FOREST19:
1039     description:
1040       long: 'You are wandering aimlessly through the forest.'
1041       short: !!null
1042     conditions: {FOREST: true, NOBACK: true, LIT: true}
1043     hints: [*forest]
1044 - LOC_FOREST20:
1045     description:
1046       long: 'You are wandering aimlessly through the forest.'
1047       short: !!null
1048     conditions: {FOREST: true, NOBACK: true, LIT: true}
1049     hints: [*forest]
1050 - LOC_FOREST21:
1051     description:
1052       long: 'You are wandering aimlessly through the forest.'
1053       short: !!null
1054     conditions: {FOREST: true, NOBACK: true, LIT: true}
1055     hints: [*forest]
1056 - LOC_FOREST22:
1057     description:
1058       long: 'You are wandering aimlessly through the forest.'
1059       short: !!null
1060     conditions: {FOREST: true, NOBACK: true, LIT: true}
1061     hints: [*forest]
1062 - LOC_LEDGE:
1063     description:
1064       long: 'You are on a small ledge on one face of a sheer cliff.  There are no\npaths away from the ledge.  Across the chasm is a small clearing\nsurrounded by forest.'
1065       short: 'You''re on ledge.'
1066     conditions: {ABOVE: true, LIT: true}
1067 - LOC_RESBOTTOM:
1068     description:
1069       long: 'You are walking across the bottom of the reservoir.  Walls of water\nrear up on either side.  The roar of the water cascading past is\nnearly deafening, and the mist is so thick you can barely see.'
1070       short: 'You''re at bottom of reservoir.'
1071     conditions: {FLUID: true, DEEP: true}
1072     sound: TOTAL_ROAR
1073     loud: true
1074 - LOC_RESNORTH:
1075     description:
1076       long: 'You are at the northern edge of the reservoir.  A northwest passage\nleads sharply up from here.'
1077       short: 'You''re north of reservoir.'
1078     conditions: {FLUID: true, DEEP: true}
1079     sound: WATERS_CRASHING
1080 - LOC_TREACHEROUS:
1081     description:
1082       long: 'You are scrambling along a treacherously steep, rocky passage.'
1083       short: !!null
1084     conditions: {DEEP: true}
1085 - LOC_STEEP:
1086     description:
1087       long: 'You are on a very steep incline, which widens at it goes upward.'
1088       short: !!null
1089     conditions: {DEEP: true}
1090 - LOC_CLIFFBASE:
1091     description:
1092       long: 'You are at the base of a nearly vertical cliff.  There are some\nslim footholds which would enable you to climb up, but it looks\nextremely dangerous.  Here at the base of the cliff lie the remains\nof several earlier adventurers who apparently failed to make it.'
1093       short: 'You''re at base of cliff.'
1094     conditions: {DEEP: true}
1095 - LOC_CLIFFACE:
1096     description:
1097       long: 'You are climbing along a nearly vertical cliff.'
1098       short: !!null
1099     conditions: {DEEP: true}
1100 - LOC_FOOTSLIP:
1101     description:
1102       long: 'Just as you reach the top, your foot slips on a loose rock and you\ntumble several hundred feet to join the other unlucky adventurers.'
1103       short: !!null
1104     conditions: {DEEP: true}
1105 - LOC_CLIFFTOP:
1106     description:
1107       long: 'Just as you reach the top, your foot slips on a loose rock and you\nmake one last desperate grab.  Your luck holds, as does your grip.\nWith an enormous heave, you lift yourself to the ledge above.'
1108       short: !!null
1109     conditions: {DEEP: true}
1110 - LOC_CLIFFLEDGE:
1111     description:
1112       long: 'You are on a small ledge at the top of a nearly vertical cliff.\nThere is a low crawl leading off to the northeast.'
1113       short: 'You''re at top of cliff.'
1114     conditions: {DEEP: true}
1115 - LOC_REACHDEAD:
1116     description:
1117       long: 'You have reached a dead end.'
1118       short: !!null
1119     conditions: {DEEP: true}
1120 - LOC_GRUESOME:
1121     description:
1122       long: 'There is now one more gruesome aspect to the spectacular vista.'
1123       short: !!null
1124     conditions: {DEEP: true}
1125 - LOC_FOOF1:
1126     description:
1127       long: '>>Foof!<<'
1128       short: !!null
1129     conditions: {}
1130 - LOC_FOOF2:
1131     description:
1132       long: '>>Foof!<<'
1133       short: !!null
1134     conditions: {ABOVE: true}
1135 - LOC_FOOF3:
1136     description:
1137       long: '>>Foof!<<'
1138       short: !!null
1139     conditions: {DEEP: true}
1140 - LOC_FOOF4:
1141     description:
1142       long: '>>Foof!<<'
1143       short: !!null
1144     conditions: {ABOVE: true}
1145 - LOC_FOOF5:
1146     description:
1147       long: '>>Foof!<<'
1148       short: !!null
1149     conditions: {DEEP: true}
1150 - LOC_FOOF6:
1151     description:
1152       long: '>>Foof!<<'
1153       short: !!null
1154     conditions: {DEEP: true}
1155
1156 arbitrary_messages:  !!omap
1157 - NO_MESSAGE: !!null
1158 - CAVE_NEARBY: 'Somewhere nearby is Colossal Cave, where others have found fortunes in\ntreasure and gold, though it is rumored that some who enter are never\nseen again.  Magic is said to work in the cave.  I will be your eyes\nand hands.  Direct me with commands of 1 or 2 words.  I should warn\nyou that I look at only the first five letters of each word, so you''ll\nhave to enter "northeast" as "ne" to distinguish it from "north".\nYou can type "help" for some general hints.  For information on how\nto end your adventure, scoring, etc., type "info".\n\t\t\t      - - -\nThis program was originally developed by Willie Crowther.  Most of the\nfeatures of the current program were added by Don Woods.  Contact Don\nif you have any questions, comments, etc.'
1159 - DWARF_BLOCK: 'A little dwarf with a big knife blocks your way.'
1160 - DWARF_RAN: 'A little dwarf just walked around a corner, saw you, threw a little\naxe at you which missed, cursed, and ran away.'
1161 - DWARF_PACK: 'There are %d threatening little dwarves in the room with you.'
1162 - DWARF_SINGLE: 'There is a threatening little dwarf in the room with you!'
1163 - KNIFE_THROWN: 'One sharp nasty knife is thrown at you!'
1164 - SAYS_PLUGH: 'A hollow voice says "PLUGH".'
1165 - GETS_YOU: 'It gets you!'
1166 - MISSES_YOU: 'It misses!'
1167 - UNSURE_FACING: 'I am unsure how you are facing.  Use compass points or nearby objects.'
1168 - NO_INOUT_HERE: 'I don''t know in from out here.  Use compass points or name something\nin the general direction you want to go.'
1169 - CANT_APPLY: 'I don''t know how to apply that word here.'
1170 - YOUR_WELCOME: 'You''re quite welcome.'
1171 - AM_GAME: 'I''m game.  Would you care to explain how?'
1172 - NO_MORE_DETAIL: 'Sorry, but I am not allowed to give more detail.  I will repeat the\nlong description of your location.'
1173 - PITCH_DARK: 'It is now pitch dark.  If you proceed you will likely fall into a pit.'
1174 - W_IS_WEST: 'If you prefer, simply type w rather than west.'
1175 - BIRD_QUERY: 'Are you trying to catch the bird?'
1176 - SKITTISH_BIRD: 'Something about you seems to be frightening the bird.  Perhaps you\nmight figure out what it is.'
1177 - SNAKE_QUERY: 'Are you trying to somehow deal with the snake?'
1178 - SNAKE_HINT: 'You can''t kill the snake, or drive it away, or avoid it, or anything\nlike that.  There is a way to get by, but you don''t have the necessary\nresources right now.'
1179 - REALLY_QUIT: 'Do you really want to quit now?'
1180 - PIT_FALL: 'You fell into a pit and broke every bone in your body!'
1181 - ALREADY_CARRYING: 'You are already carrying it!'
1182 - YOU_JOKING: 'You can''t be serious!'
1183 - BIRD_EVADES: 'The bird seemed unafraid at first, but as you approach it becomes\ndisturbed and you cannot catch it.'
1184 - CANNOT_CARRY: 'You can catch the bird, but you cannot carry it.'
1185 - NOTHING_LOCKED: 'There is nothing here with a lock!'
1186 - ARENT_CARRYING: 'You aren''t carrying it!'
1187 - BIRD_ATTACKS: 'The little bird attacks the green snake, and in an astounding flurry\ndrives the snake away.'
1188 - NO_KEYS: 'You have no keys!'
1189 - NO_LOCK: 'It has no lock.'
1190 - NOT_LOCKABLE: 'I don''t know how to lock or unlock such a thing.'
1191 - ALREADY_LOCKED: 'It was already locked.'
1192 - GRATE_LOCKED: 'The grate is now locked.'
1193 - GRATE_UNLOCKED: 'The grate is now unlocked.'
1194 - ALREADY_UNLOCKED: 'It was already unlocked.'
1195 - URN_EMPTY: 'The urn is empty and will not light.'
1196 - LAMP_ON: 'Your lamp is now on.'
1197 - LAMP_OFF: 'Your lamp is now off.'
1198 - BEAR_BLOCKS: 'There is no way to get past the bear to unlock the chain, which is\nprobably just as well.'
1199 - NOTHING_HAPPENS: 'Nothing happens.'
1200 - WHERE_QUERY: 'Where?'
1201 - NO_TARGET: 'There is nothing here to attack.'
1202 - BIRD_DEAD: 'The little bird is now dead.  Its body disappears.'
1203 - SNAKE_WARNING: 'Attacking the snake both doesn''t work and is very dangerous.'
1204 - KILLED_DWARF: 'You killed a little dwarf.'
1205 - DWARF_DODGES: 'You attack a little dwarf, but he dodges out of the way.'
1206 - BARE_HANDS_QUERY: 'With what?  Your bare hands?'
1207 - WORN_OUT: 'Good try, but that is an old worn-out magic word.'
1208 - VOCAB_DESCRIPTION: 'I know of places, actions, and things.  Most of my vocabulary\ndescribes places and is used to move you there.  To move, try words\nlike forest, building, downstream, enter, east, west, north, south,\nup, or down.  I know about a few special objects, like a black rod\nhidden in the cave.  These objects can be manipulated using some of\nthe action words that I know.  Usually you will need to give both the\nobject and action words (in either order), but sometimes I can infer\nthe object from the verb alone.  Some objects also imply verbs; in\nparticular, "inventory" implies "take inventory", which causes me to\ngive you a list of what you''re carrying.  Some objects have unexpected\neffects; the effects are not always desirable!  Usually people having\ntrouble moving just need to try a few more words.  Usually people\ntrying unsuccessfully to manipulate an object are attempting something\nbeyond their (or my!) capabilities and should try a completely\ndifferent tack.  One point often confusing to beginners is that, when\nthere are several ways to go in a certain direction (e.g., if there\nare several holes in a wall), choosing that direction in effect\nchooses one of the ways at random; often, though, by specifying the\nplace you want to reach you can guarantee choosing the right path.\nAlso, to speed the game you can sometimes move long distances with a\nsingle word.  For example, "building" usually gets you to the building\nfrom anywhere above ground except when lost in the forest.  Also, note\nthat cave passages and forest paths turn a lot, so leaving one place\nheading north doesn''t guarantee entering the next from the south.\nHowever (another important point), except when you''ve used a "long\ndistance" word such as "building", there is always a way to go back\nwhere you just came from unless I warn you to the contrary, even\nthough the direction that takes you back might not be the reverse of\nwhat got you here.  Good luck, and have fun!'
1209 - BAD_DIRECTION: 'There is no way to go that direction.'
1210 - TWO_WORDS: 'Please stick to 1- and 2-word commands.'
1211 - OK_MAN: 'OK'
1212 - CANNOT_UNLOCK: 'You can''t unlock the keys.'
1213 - FUTILE_CRAWL: 'You have crawled around in some little holes and wound up back in the\nmain passage.'
1214 - FOLLOW_STREAM: 'I don''t know where the cave is, but hereabouts no stream can run on\nthe surface for long.  I would try the stream.'
1215 - NEED_DETAIL: 'I need more detailed instructions to do that.'
1216 - NEARBY: 'I can only tell you what you see as you move about and manipulate\nthings.  I cannot tell you where remote things are.'
1217 - OGRE_SNARL: 'The ogre snarls and shoves you back.'
1218 - HUH_MAN: 'Huh?'
1219 - ENTRY_QUERY: 'Are you trying to get into the cave?'
1220 - HARD_GRATE: 'The grate is very solid and has a hardened steel lock.  You cannot\nenter without a key, and there are no keys nearby.  I would recommend\nlooking elsewhere for the keys.'
1221 - FOREST_LOOK: 'The trees of the forest are large hardwood oak and maple, with an\noccasional grove of pine or spruce.  There is quite a bit of under-\ngrowth, largely birch and ash saplings plus nondescript bushes of\nvarious sorts.  This time of year visibility is quite restricted by\nall the leaves, but travel is quite easy if you detour around the\nspruce and berry bushes.'
1222 - WELCOME_YOU: 'Welcome to Adventure!!  Would you like instructions?'
1223 - DIGGING_FUTILE: 'Digging without a shovel is quite impractical.  Even with a shovel\nprogress is unlikely.'
1224 - REQUIRES_DYNAMITE: 'Blasting requires dynamite.'
1225 - IM_CONFUSED: 'I''m as confused as you are.'
1226 - EXPLAIN_MIST: 'Mist is a white vapor, usually water, seen from time to time in\ncaverns.  It can be found anywhere but is frequently a sign of a deep\npit leading down to water.'
1227 - FEET_WET: 'Your feet are now wet.'
1228 - LOST_APPETITE: 'I think I just lost my appetite.'
1229 - THANKS_DELICIOUS: 'Thank you, it was delicious!'
1230 - STREAM_WATER: 'You have taken a drink from the stream.  The water tastes strongly of\nminerals, but is not unpleasant.  It is extremely cold.'
1231 - BOTTLE_EMPTY: 'The bottle of water is now empty.'
1232 - RUB_NOGO: 'Rubbing the electric lamp is not particularly rewarding.  Anyway,\nnothing exciting happens.'
1233 - PECULIAR_NOTHING: 'Peculiar.  Nothing unexpected happens.'
1234 - GROUND_WET: 'Your bottle is empty and the ground is wet.'
1235 - CANT_POUR: 'You can''t pour that.'
1236 - WATCH_IT: 'Watch it!'
1237 - WHICH_WAY: 'Which way?'
1238 - ARB_81: !!null
1239 - ARB_82: !!null
1240 - ARB_83: !!null
1241 - ARB_84: !!null
1242 - ARB_85: !!null
1243 - ARB_86: !!null
1244 - ARB_87: !!null
1245 - ARB_88: !!null
1246 - ARB_89: !!null
1247 - ARB_90: !!null
1248 - FORGOT_PATH: 'Sorry, but I no longer seem to remember how it was you got here.'
1249 - CARRY_LIMIT: 'You can''t carry anything more.  You''ll have to drop something first.'
1250 - GRATE_NOWAY: 'You can''t go through a locked steel grate!'
1251 - YOU_HAVEIT: 'I believe what you want is right here with you.'
1252 - DONT_FIT: 'You don''t fit through a two-inch slit!'
1253 - CROSS_BRIDGE: 'I respectfully suggest you go across the bridge instead of jumping.'
1254 - NO_CROSS: 'There is no way across the fissure.'
1255 - NO_CARRY: 'You''re not carrying anything.'
1256 - NOW_HOLDING: 'You are currently holding the following:'
1257 - BIRD_PINING: 'It''s not hungry (it''s merely pinin'' for the fjords).  Besides, you\nhave no bird seed.'
1258 - BIRD_DEVOURED: 'The snake has now devoured your bird.'
1259 - NOTHING_EDIBLE: 'There''s nothing here it wants to eat (except perhaps you).'
1260 - REALLY_MAD: 'You fool, dwarves eat only coal!  Now you''ve made him *REALLY* mad!!'
1261 - NO_CONTAINER: 'You have nothing in which to carry it.'
1262 - BOTTLE_FULL: 'Your bottle is already full.'
1263 - NO_LIQUID: 'There is nothing here with which to fill the bottle.'
1264 - BOTTLED_WATER: 'Your bottle is now full of water.'
1265 - BOTTLED_OIL: 'Your bottle is now full of oil.'
1266 - CANT_FILL: 'You can''t fill that.'
1267 - RIDICULOUS_ATTEMPT: 'Don''t be ridiculous!'
1268 - RUSTY_DOOR: 'The door is extremely rusty and refuses to open.'
1269 - SHAKING_LEAVES: 'The plant indignantly shakes the oil off its leaves and asks, "Water?"'
1270 - RUSTED_HINGES: 'The hinges are quite thoroughly rusted now and won''t budge.'
1271 - OILED_NINGES: 'The oil has freed up the hinges so that the door will now move,\nalthough it requires some effort.'
1272 - DEEP_ROOTS: 'The plant has exceptionally deep roots and cannot be pulled free.'
1273 - KNIVES_VANISH: 'The dwarves'' knives vanish as they strike the walls of the cave.'
1274 - MUST_DROP: 'Something you''re carrying won''t fit through the tunnel with you.\nYou''d best take inventory and drop something.'
1275 - CLAM_BLOCKER: 'You can''t fit this five-foot clam through that little passage!'
1276 - OYSTER_BLOCKER: 'You can''t fit this five-foot oyster through that little passage!'
1277 - DROP_CLAM: 'I advise you to put down the clam before opening it.  >STRAIN!<'
1278 - DROP_OYSTER: 'I advise you to put down the oyster before opening it.  >WRENCH!<'
1279 - CLAM_OPENER: 'You don''t have anything strong enough to open the clam.'
1280 - OYSTER_OPENER: 'You don''t have anything strong enough to open the oyster.'
1281 - PEARL_FALLS: 'A glistening pearl falls out of the clam and rolls away.  Goodness,\nthis must really be an oyster.  (I never was very good at identifying\nbivalves.)  Whatever it is, it has now snapped shut again.'
1282 - OYSTER_OPENS: 'The oyster creaks open, revealing nothing but oyster inside.  It\npromptly snaps shut again.'
1283 - WAY_BLOCKED: 'You have crawled around in some little holes and found your way\nblocked by a recent cave-in.  You are now back in the main passage.'
1284 - PIRATE_RUSTLES: 'There are faint rustling noises from the darkness behind you.'
1285 - PIRATE_POUNCES: 'Out from the shadows behind you pounces a bearded pirate!  "Har, har,"\nhe chortles, "I''ll just take all this booty and hide it away with me\nchest deep in the maze!"  He snatches your treasure and vanishes into\nthe gloom.'
1286 - CAVE_CLOSING: 'A sepulchral voice reverberating through the cave, says, "Cave closing\nsoon.  All adventurers exit immediately through main office."'
1287 - EXIT_CLOSED: 'A mysterious recorded voice groans into life and announces:\n   "This exit is closed.  Please leave via main office."'
1288 - DEATH_CLOSING: 'It looks as though you''re dead.  Well, seeing as how it''s so close to\nclosing time anyway, I think we''ll just call it a day.'
1289 - CAVE_CLOSED: 'The sepulchral voice intones, "The cave is now closed."  As the echoes\nfade, there is a blinding flash of light (and a small puff of orange\nsmoke). . . .    As your eyes refocus, you look around and find...'
1290 - VICTORY_MESSAGE: 'There is a loud explosion, and a twenty-foot hole appears in the far\nwall, burying the dwarves in the rubble.  You march through the hole\nand find yourself in the main office, where a cheering band of\nfriendly elves carry the conquering adventurer off into the sunset.'
1291 - DEFEAT_MESSAGE: 'There is a loud explosion, and a twenty-foot hole appears in the far\nwall, burying the snakes in the rubble.  A river of molten lava pours\nin through the hole, destroying everything in its path, including you!'
1292 - SPLATTER_MESSAGE: 'There is a loud explosion, and you are suddenly splashed across the\nwalls of the room.'
1293 - DWARVES_AWAKEN: 'The resulting ruckus has awakened the dwarves.  There are now several\nthreatening little dwarves in the room with you!  Most of them throw\nknives at you!  All of them get you!'
1294 - UNHAPPY_BIRD: 'Oh, leave the poor unhappy bird alone.'
1295 - NEEDED_NEARBY: 'I daresay whatever you want is around here somewhere.'
1296 - STOP_UNKNOWN: 'I don''t know the word "stop".  Use "quit" if you want to give up.'
1297 - NOT_CONNECTED: 'You can''t get there from here.'
1298 - TAME_BEAR: 'You are being followed by a very large, tame bear.'
1299 - QUICK_START: 'For a summary of the most recent changes to the game, say "news".\nIf you want to end your adventure early, say "quit".  To suspend your\nadventure such that you can continue later, say "suspend" (or "pause"\nor "save").  To see how well you''re doing, say "score".  To get full\ncredit for a treasure, you must have left it safely in the building,\nthough you get partial credit just for locating it.  You lose points\nfor getting killed, or for quitting, though the former costs you more.\nThere are also points based on how much (if any) of the cave you''ve\nmanaged to explore; in particular, there is a large bonus just for\ngetting in (to distinguish the beginners from the rest of the pack),\nand there are other ways to determine whether you''ve been through some\nof the more harrowing sections.  If you think you''ve found all the\ntreasures, just keep exploring for a while.  If nothing interesting\nhappens, you haven''t found them all yet.  If something interesting\n*DOES* happen (incidentally, there *ARE* ways to hasten things along),\nit means you''re getting a bonus and have an opportunity to garner many\nmore points in the Master''s section.  I may occasionally offer hints\nif you seem to be having trouble.  If I do, I''ll warn you in advance\nhow much it will affect your score to accept the hints.  Finally, to\nsave time, you may specify "brief", which tells me never to repeat the\nfull description of a place unless you explicitly ask me to.'
1300 - WITHOUT_SUSPENDS: 'Now let''s see you do it without suspending in mid-Adventure.'
1301 - FILL_INVALID: 'There is nothing here with which to fill it.'
1302 - SHATTER_VASE: 'The sudden change in temperature has delicately shattered the vase.'
1303 - BEYOND_POWER: 'It is beyond your power to do that.'
1304 - NOT_KNOWHOW: 'I don''t know how.'
1305 - TOO_FAR: 'It is too far up for you to reach.'
1306 - DWARF_SMOKE: 'You killed a little dwarf.  The body vanishes in a cloud of greasy\nblack smoke.'
1307 - SHELL_IMPERVIOUS: 'The shell is very strong and is impervious to attack.'
1308 - START_OVER: 'What''s the matter, can''t you read?  Now you''d best start over.'
1309 - DRAGON_SCALES: 'The axe bounces harmlessly off the dragon''s thick scales.'
1310 - NASTY_DRAGON: 'The dragon looks rather nasty.  You''d best not try to get by.'
1311 - BIRD_BURNT: 'The little bird attacks the green dragon, and in an astounding flurry\ngets burnt to a cinder.  The ashes blow away.'
1312 - ON_WHAT: 'On what?'
1313 - BRIEF_CONFIRM: 'Okay, from now on I''ll only describe a place in full the first time\nyou come to it.  To get the full description, say "look".'
1314 - ROCKY_TROLL: 'Trolls are close relatives with the rocks and have skin as tough as\nthat of a rhinoceros.  The troll fends off your blows effortlessly.'
1315 - TROLL_RETURNS: 'The troll deftly catches the axe, examines it carefully, and tosses it\nback, declaring, "Good workmanship, but it''s not valuable enough."'
1316 - TROLL_SATISFIED: 'The troll catches your treasure and scurries away out of sight.'
1317 - TROLL_BLOCKS: 'The troll refuses to let you cross.'
1318 - BRIDGE_GONE: 'There is no longer any way across the chasm.'
1319 - BRIDGE_COLLAPSE: 'Just as you reach the other side, the bridge buckles beneath the\nweight of the bear, which was still following you around.  You\nscrabble desperately for support, but as the bridge collapses you\nstumble back and fall into the chasm.'
1320 - TROLL_SCAMPERS: 'The bear lumbers toward the troll, who lets out a startled shriek and\nscurries away.  The bear soon gives up the pursuit and wanders back.'
1321 - AXE_LOST: 'The axe misses and lands near the bear where you can''t get at it.'
1322 - BEAR_HANDS: 'With what?  Your bare hands?  Against *HIS* bear hands??'
1323 - BEAR_CONFUSED: 'The bear is confused; he only wants to be your friend.'
1324 - ALREADY_DEAD: 'For crying out loud, the poor thing is already dead!'
1325 - BEAR_TAMED: 'The bear eagerly wolfs down your food, after which he seems to calm\ndown considerably and even becomes rather friendly.'
1326 - BEAR_CHAINED: 'The bear is still chained to the wall.'
1327 - STILL_LOCKED: 'The chain is still locked.'
1328 - CHAIN_UNLOCKED: 'The chain is now unlocked.'
1329 - CHAIN_LOCKED: 'The chain is now locked.'
1330 - NO_LOCKSITE: 'There is nothing here to which the chain can be locked.'
1331 - NO_EDIBLES: 'There is nothing here to eat.'
1332 - WANT_HINT: 'Do you want the hint?'
1333 - MAZE_HELP: 'Do you need help getting out of the maze?'
1334 - DROP_THINGS: 'You can make the passages look less alike by dropping things.'
1335 - PLOVER_QUERY: 'Are you trying to explore beyond the plover room?'
1336 - EXPLORE_HINT: 'There is a way to explore that region without having to worry about\nfalling into a pit.  None of the objects available is immediately\nuseful in discovering the secret.'
1337 - HELP_LEAVING: 'Do you need help getting out of here?'
1338 - NOGO_WEST: 'Don''t go west.'
1339 - TROLL_VICES: 'Gluttony is not one of the troll''s vices.  Avarice, however, is.'
1340 - LAMP_DIM: 'Your lamp is getting dim.  You''d best start wrapping this up, unless\nyou can find some fresh batteries.  I seem to recall there''s a vending\nmachine in the maze.  Bring some coins with you.'
1341 - LAMP_OUT: 'Your lamp has run out of power.'
1342 - PLEASE_ANSWER: 'Please answer the question.'
1343 - PIRATE_SPOTTED: 'There are faint rustling noises from the darkness behind you.  As you\nturn toward them, the beam of your lamp falls across a bearded pirate.\nHe is carrying a large chest.  "Shiver me timbers!" he cries, "I''ve\nbeen spotted!  I''d best hie meself off to the maze to hide me chest!"\nWith that, he vanishes into the gloom.'
1344 - GET_BATTERIES: 'Your lamp is getting dim.  You''d best go back for those batteries.'
1345 - REPLACE_BATTERIES: 'Your lamp is getting dim.  I''m taking the liberty of replacing the\nbatteries.'
1346 - MISSING_BATTERYIES: 'Your lamp is getting dim, and you''re out of spare batteries.  You''d\nbest start wrapping this up.'
1347 - REMOVE_MESSAGE: 'You sift your fingers through the dust, but succeed only in\nobliterating the cryptic message.'
1348 - OGRE_QUERY: 'Do you need help dealing with the ogre?'
1349 - CLUE_QUERY: 'Hmmm, this looks like a clue, which means it''ll cost you 10 points to\nread it.  Should I go ahead and read it anyway?'
1350 - WAYOUT_CLUE: 'It says, "There is a way out of this place.  Do you need any more\ninformation to escape?  Sorry, but this initial hint is all you get."'
1351 - OGRE_CLUE: 'There is nothing the presence of which will prevent you from defeating\nhim; thus it can''t hurt to fetch everything you possibly can.'
1352 - DONT_UNDERSTAND: 'I''m afraid I don''t understand.'
1353 - HAND_PASSTHROUGH: 'Your hand passes through it as though it weren''t there.'
1354 - BREAK_MIRROR: 'You strike the mirror a resounding blow, whereupon it shatters into a\nmyriad tiny fragments.'
1355 - BREAK_VASE: 'You have taken the vase and hurled it delicately to the ground.'
1356 - PROD_DWARF: 'You prod the nearest dwarf, who wakes up grumpily, takes one look at\nyou, curses, and grabs for his axe.'
1357 - THIS_ACCEPTABLE: 'Is this acceptable?'
1358 - ALREADY_OVER: 'This adventure is already over.  To start a new adventure, or to\nresume an earlier adventure, please run a fresh copy of the program.'
1359 - OGRE_FULL: 'The ogre doesn''t appear to be hungry.'
1360 - OGRE_DODGE: 'The ogre, who despite his bulk is quite agile, easily dodges your\nattack.  He seems almost amused by your puny effort.'
1361 - OGRE_PANIC1: 'The ogre, distracted by your rush, is struck by the knife.  With a\nblood-curdling yell he turns and bounds after the dwarves, who flee\nin panic.  You are left alone in the room.'
1362 - OGRE_PANIC2: 'The ogre, distracted by your rush, is struck by the knife.  With a\nblood-curdling yell he turns and bounds after the dwarf, who flees\nin panic.  You are left alone in the room.'
1363 - FREE_FLY: 'The bird flies about agitatedly for a moment.'
1364 - CAGE_FLY: 'The bird flies agitatedly about the cage.'
1365 - NECKLACE_FLY: 'The bird flies about agitatedly for a moment, then disappears through\nthe crack.  It reappears shortly, carrying in its beak a jade\nnecklace, which it drops at your feet.'
1366 - URN_LIT: 'The urn is now lit.'
1367 - URN_DARK: 'The urn is now dark.'
1368 - WATER_URN: 'You empty the bottle into the urn, which promptly ejects the water\nwith uncanny accuracy, squirting you directly between the eyes.'
1369 - OIL_URN: 'Your bottle is now empty and the urn is full of oil.'
1370 - FULL_URN: 'The urn is already full of oil.'
1371 - URN_NOPOUR: 'There''s no way to get the oil out of the urn.'
1372 - URN_NOBUDGE: 'The urn is far too firmly embedded for your puny strength to budge it.'
1373 - URN_GENIES: 'As you rub the urn, there is a flash of light and a genie appears.\nHis aspect is stern as he advises: "One who wouldst traffic in\nprecious stones must first learn to recognize the signals thereof."\nHe wrests the urn from the stone, leaving a small cavity.  Turning to\nface you again, he fixes you with a steely eye and intones: "Caution!"\nGenie and urn vanish in a cloud of amber smoke.  The smoke condenses\nto form a rare amber gemstone, resting in the cavity in the rock.'
1374 - DOUGHNUT_HOLES: 'I suppose you collect doughnut holes, too?'
1375 - GEM_FITS: 'The gem fits easily into the cavity.'
1376 - RUG_RISES: 'The persian rug stiffens and rises a foot or so off the ground.'
1377 - RUG_WIGGLES: 'The persian rug draped over your shoulder seems to wriggle for a\nmoment, but then subsides.'
1378 - RUG_SETTLES: 'The persian rug settles gently to the ground.'
1379 - RUG_HOVERS: 'The rug hovers stubbornly where it is.'
1380 - RUG_NOTHING1: 'The rug does not appear inclined to cooperate.'
1381 - RUG_NOTHING2: 'If you mean to use the persian rug, it does not appear inclined to\ncooperate.'
1382 - FLAP_ARMS: 'Though you flap your arms furiously, it is to no avail.'
1383 - RUG_GOES: 'You board the persian rug, which promptly whisks you across the chasm.\nYou have time for a fleeting glimpse of a two thousand foot drop to a\nmighty river; then you find yourself on the other side.'
1384 - RUG_RETURNS: 'The rug ferries you back across the chasm.'
1385 - ALL_SILENT: 'All is silent.'
1386 - STREAM_GURGLES: 'The stream is gurgling placidly.'
1387 - WIND_WHISTLES: 'The wind whistles coldly past your ears.'
1388 - STREAM_SPLASHES: 'The stream splashes loudly into the pool.'
1389 - NO_MEANING: 'You are unable to make anything of the splashing noise.'
1390 - MURMURING_SNORING: 'You can hear the murmuring of the beanstalks and the snoring of the\ndwarves.'
1391 - SNAKES_HISSING: 'A loud hissing emanates from the snake pit.'
1392 - DULL_RUMBLING: 'The air is filled with a dull rumbling sound.'
1393 - LOUD_ROAR: 'The roar is quite loud here.'
1394 - TOTAL_ROAR: 'The roaring is so loud that it drowns out all other sound.'
1395 - BIRD_CRAP: 'The bird eyes you suspiciously and flutters away.  A moment later you\nfeel something wet land on your head, but upon looking up you can see\nno sign of the culprit.'
1396 - FEW_DROPS: 'There are only a few drops--not enough to carry.'
1397 - HEAD_BUZZES: 'Your head buzzes strangely for a moment.'
1398 - NOT_BRIGHT: '(Uh, y''know, that wasn''t very bright.)'
1399 - TOOK_LONG: 'It''s a pity you took so long about it.'
1400 - WONDERING_QUERY: 'Are you wondering what to do here?'
1401 - ADVANCED_SECTION: 'This section is quite advanced.  Find the cave first.'
1402 - UPSTREAM_DOWNSTREAM: 'Upstream or downstream?'
1403 - WIZARDS_NODISTURB: 'Wizards are not to be disturbed by such as you.'
1404 - FOREST_QUERY: 'Would you like to be shown out of the forest?'
1405 - GO_EAST: 'Go east ten times.  If that doesn''t get you out, then go south, then\nwest twice, then south.'
1406 - WATERS_CRASHING: 'The waters are crashing loudly against the shore.'
1407 - THROWN_KNIVES: '%d of them throw knives at you!'
1408 - MULTIPLE_HITS: '%d of them get you!'
1409 - ONE_HIT: 'One of them gets you!'
1410 - NONE_HIT: 'None of them hits you!'
1411 - DONT_KNOW: 'Sorry, I don''t know the word "%s".'
1412 - WHAT_DO: 'What do you want to do with the %L%L?' # FIXME: %L%L should become %L once parsing no longer depends on packed tokens
1413 - NO_SEE: 'I see no %L%L here.' # FIXME: %L%L should become %L once parsing no longer depends on packed tokens
1414 - DO_WHAT: '%C what?'
1415 - OKEY_DOKEY: 'Okay, "%s".'
1416 - GARNERED_POINTS: 'You have garnered %d out of a possible %d points, using %d turn%S.'
1417 - SUSPEND_WARNING: 'I can suspend your Adventure for you so that you can resume later, but\nit will cost you 5 points.'
1418 - HINT_COST: 'I am prepared to give you a hint, but it will cost you %d point%S.'
1419 - TOTAL_SCORE: 'You scored %d out of a possible %d, using %d turn%S.'
1420 - NEXT_HIGHER: 'To achieve the next higher rating, you need %d more point%S.'
1421 - NO_HIGHER: 'To achieve the next higher rating would be a neat trick!\nCongratulations!!'
1422 - OFF_SCALE: 'You just went off my scale!!'
1423 - RESUME_HELP: 'To resume your Adventure, start a new game and then say "RESUME".'
1424 - TABLE_SPACE: 'Table space used:\n%d of %d words of messages   %d of %d travel options\n%d of %d vocabulary words    %d of %d locations\n%d of %d objects             %d of %d action verbs\n%d of %d "random" messages   %d of %d "class" messages\n%d of %d hints               %d of %d turn threshholds'
1425 - RESUME_ABANDON: 'To resume an earlier Adventure, you must abandon the current one.'
1426 - VERSION_SKEW: 'I''m sorry, but that Adventure was begun using Version%d.%d of the\nprogram, and this is Version%d.%d.  You must find the other version\nin order to resume that Adventure.'
1427 - DAVE_TAMPERING: 'A dark fog creeps in to surround you.  From somewhere in the fog you\nhear a stern voice.  "This Adventure has been tampered with!  You have\nbeen dabbling in magic, knowing not the havoc you might cause thereby.\nLeave at once, before you do irrevocable harm!"  The fog thickens,\nuntil at last you can see nothing at all.  Your vision then clears,\nand you find yourself back in The Real World.'
1428 - GUESS_AGAIN: 'Guess again.'
1429 - MISSING_ONE: 'You''re missing only one other treasure.  Do you need help finding it?'
1430 - NO_LOCATE: 'Once you''ve found all the other treasures, it is no longer possible to\nlocate the one you''re now missing.'
1431 - TWIST_TURN: 'Sorry, but the path twisted and turned so much that I can''t figure\nout which way to go to get back.'
1432 - ADVENTURE_NEWS: 'Open Adventure is an author-approved open-source release of\nVersion 2.5 with, as yet, no gameplay changes.\nVersion 2.5 was essentially the same as Version II; the cave and the\nhazards therein are unchanged, and top score is still 430 points.\nThere are a few more hints, especially for some of the more obscure\npuzzles.  There are a few minor bugfixes and cosmetic changes.  You\ncan now save a game and resume it at once (formerly you had to wait a\nwhile first), but it now costs you a few points each time you save the\ngame.  Saved games are now stored in much smaller files than before.'
1433 - GO_UNNEEDED: 'You don''t have to say "go" every time; just specify a direction or, if\nit''s nearby, name the place to which you wish to move.'
1434 - CANNOT_CARRY7: !!null
1435   
1436 classes: 
1437 - threshold: 0
1438   message: !!null
1439 - threshold: 45
1440   message: 'You are obviously a rank amateur.  Better luck next time.'
1441 - threshold: 120
1442   message: 'Your score qualifies you as a novice class adventurer.'
1443 - threshold: 170
1444   message: 'You have achieved the rating: "Experienced Adventurer".'
1445 - threshold: 250
1446   message: 'You may now consider yourself a "Seasoned Adventurer".'
1447 - threshold: 320
1448   message: 'You have reached "Junior Master" status.'
1449 - threshold: 375
1450   message: 'Your score puts you in Master Adventurer Class C.'
1451 - threshold: 410
1452   message: 'Your score puts you in Master Adventurer Class B.'
1453 - threshold: 426
1454   message: 'Your score puts you in Master Adventurer Class A.'
1455 - threshold: 429
1456   message: 'All of Adventuredom gives tribute to you, Adventurer Grandmaster!'
1457 - threshold: 9999
1458   message: 'Adventuredom stands in awe -- you have now joined the ranks of the\n       W O R L D   C H A M P I O N   A D V E N T U R E R S !\nIt may interest you to know that the Dungeon-Master himself has, to\nmy knowledge, never achieved this threshhold in fewer than 330 turns.'
1459
1460 turn_thresholds:
1461 - threshold: 350
1462   point_loss: 2
1463   message: 'Tsk!  A wizard wouldn''t have to take 350 turns.  This is going to cost\nyou a couple of points.' 
1464 - threshold: 500
1465   point_loss: 3
1466   message: '500 turns?  That''s another few points you''ve lost.'  
1467 - threshold: 1000
1468   point_loss: 5
1469   message: 'Are you still at it?  Five points off for exceeding 1000 turns!'  
1470 - threshold: 2500
1471   point_loss: 10
1472   message: 'Good grief, don''t you *EVER* give up?  Do you realize you''ve spent\nover 2500 turns at this?  That''s another ten points off, a total of\ntwenty points lost for taking so long.'
1473   
1474 object_descriptions: !!omap
1475 - OBJ_0:
1476     inventory: !!null
1477     longs: !!null
1478 - OBJ_1:
1479     inventory: 'Set of keys'
1480     longs:
1481     - 'There are some keys on the ground here.'
1482 - OBJ_2:
1483     inventory: 'Brass lantern'
1484     longs:
1485     - 'There is a shiny brass lamp nearby.'
1486     - 'There is a lamp shining nearby.'
1487 - OBJ_3:
1488     inventory: '*grate'
1489     longs:
1490     - 'The grate is locked.'
1491     - 'The grate is open.'
1492 - OBJ_4:
1493     inventory: 'Wicker cage'
1494     longs:
1495     - 'There is a small wicker cage discarded nearby.'
1496 - OBJ_5:
1497     inventory: 'Black rod'
1498     longs:
1499     - 'A three foot black rod with a rusty star on an end lies nearby.'
1500 - OBJ_6:
1501     inventory: 'Black rod'
1502     longs:
1503     - 'A three foot black rod with a rusty mark on an end lies nearby.'
1504 - OBJ_7:
1505     inventory: '*steps'
1506     longs:
1507     - 'Rough stone steps lead down the pit.'
1508     - 'Rough stone steps lead up the dome.'
1509 - OBJ_8:
1510     inventory: 'Little bird in cage'
1511     longs:
1512     - 'A cheerful little bird is sitting here singing.'
1513     - 'There is a little bird in the cage.'
1514     - 'A cheerful little bird is sitting here singing.'
1515     - 'The bird''s singing is quite melodious.'
1516     - 'The bird does not seem inclined to sing while in the cage.'
1517     - 'It almost seems as though the bird is trying to tell you something.'
1518     - 'To your surprise, you can understand the bird''s chirping; it is\nsinging about the joys of its forest home.'
1519     - 'The bird does not seem inclined to sing while in the cage.'
1520     - 'The bird is singing to you in gratitude for your having returned it to\nits home.  In return, it informs you of a magic word which it thinks\nyou may find useful somewhere near the Hall of Mists.  The magic word\nchanges frequently, but for now the bird believes it is "%s".  You\nthank the bird for this information, and it flies off into the forest.'
1521 - OBJ_9:
1522     inventory: '*rusty door'
1523     longs:
1524     - 'The way north is barred by a massive, rusty, iron door.'
1525     - 'The way north leads through a massive, rusty, iron door.'
1526 - OBJ_10:
1527     inventory: 'Velvet pillow'
1528     longs:
1529     - 'A small velvet pillow lies on the floor.'
1530 - OBJ_11:
1531     inventory: '*snake'
1532     longs:
1533     - 'A huge green fierce snake bars the way!'
1534     - '' # chased away
1535     - 'The snake is hissing venomously.'
1536 - OBJ_12:
1537     inventory: '*fissure'
1538     longs:
1539     - ''
1540     - 'A crystal bridge now spans the fissure.'
1541     - 'The crystal bridge has vanished!'
1542 - OBJ_13:
1543     inventory: '*stone tablet'
1544     longs:
1545     - 'A massive stone tablet imbedded in the wall reads:\n"Congratulations on bringing light into the dark-room!"'
1546     - '"Congratulations on bringing light into the dark-room!"'
1547 - OBJ_14:
1548     inventory: 'Giant clam  >GRUNT!<'
1549     longs:
1550     - 'There is an enormous clam here with its shell tightly closed.'
1551     - 'The clam is as tight-mouthed as a, er, clam.'
1552 - OBJ_15:
1553     inventory: 'Giant oyster  >GROAN!<'
1554     longs:
1555     - 'There is an enormous oyster here with its shell tightly closed.'
1556     - 'Interesting.  There seems to be something written on the underside of\nthe oyster.'
1557     - 'Even though it''s an oyster, the critter''s as tight-mouthed as a clam.'
1558     - 'It says the same thing it did before.  Hm, maybe it''s a pun?'
1559 - OBJ_16:
1560     inventory: '"Spelunker Today"'
1561     longs:
1562     - 'There are a few recent issues of "Spelunker Today" magazine here.'
1563     - 'I''m afraid the magazine is written in dwarvish.  But pencilled on one\ncover you see, "Please leave the magazines at the construction site."'
1564 - OBJ_17:
1565     inventory: !!null
1566     longs: !!null
1567 - OBJ_18:
1568     inventory: !!null
1569     longs: !!null
1570 - OBJ_19:
1571     inventory: 'Tasty food'
1572     longs:
1573     - 'There is food here.'
1574 - OBJ_20:
1575     inventory: 'Small bottle'
1576     longs:
1577     - 'There is a bottle of water here.'
1578     - 'There is an empty bottle here.'
1579     - 'There is a bottle of oil here.'
1580 - OBJ_21:
1581     inventory: 'Water in the bottle'
1582     longs: !!null
1583 - OBJ_22:
1584     inventory: 'Oil in the bottle'
1585     longs: !!null
1586 - OBJ_23:
1587     inventory: '*mirror'
1588     longs: !!null
1589 - OBJ_24:
1590     inventory: '*plant'
1591     longs:
1592     - 'There is a tiny little plant in the pit, murmuring "water, water, ..."'
1593     - 'There is a 12-foot-tall beanstalk stretching up out of the pit,\nbellowing "WATER!! WATER!!"'
1594     - 'There is a gigantic beanstalk stretching all the way up to the hole.'
1595     - 'The plant spurts into furious growth for a few seconds.'
1596     - 'The plant grows explosively, almost filling the bottom of the pit.'
1597     - 'You''ve over-watered the plant!  It''s shriveling up!  And now . . .'
1598     - 'The plant continues to ask plaintively for water.'
1599     - 'The plant continues to demand water.'
1600     - 'The plant now maintains a contented silence.'
1601 - OBJ_25:
1602     inventory: '*phony plant' # seen in Twopit Room only when tall enough
1603     longs:
1604     - ''
1605     - 'The top of a 12-foot-tall beanstalk is poking out of the west pit.'
1606     - 'There is a huge beanstalk growing out of the west pit up to the hole.'
1607 - OBJ_26:
1608     inventory: '*stalactite'
1609     longs:
1610     - ''
1611 - OBJ_27:
1612     inventory: '*shadowy figure and/or window'
1613     longs:
1614     - 'The shadowy figure seems to be trying to attract your attention.'
1615 - OBJ_28:
1616     inventory: 'Dwarf''s axe'
1617     longs:
1618     - 'There is a little axe here.'
1619     - 'There is a little axe lying beside the bear.'
1620 - OBJ_29:
1621     inventory: '*cave drawings'
1622     longs: !!null
1623 - OBJ_30:
1624     inventory: '*pirate/genie'
1625     longs: !!null # never present
1626 - OBJ_31:
1627     inventory: '*dragon'
1628     longs:
1629     - 'A huge green fierce dragon bars the way!'
1630     - 'The blood-specked body of a huge green dead dragon lies to one side.'
1631     - 'The body of a huge green dead dragon is lying off to one side.'
1632     - 'Congratulations!  You have just vanquished a dragon with your bare\nhands!  (Unbelievable, isn''t it?)'
1633     - 'The dragon''s ominous hissing does not bode well for you.'
1634     - 'The dragon is, not surprisingly, silent.'
1635     - 'The dragon is, not surprisingly, silent.'
1636 - OBJ_32:
1637     inventory: '*chasm'
1638     longs:
1639     - 'A rickety wooden bridge extends across the chasm, vanishing into the\nmist.  A notice posted on the bridge reads, "Stop! Pay troll!"'
1640     - 'The wreckage of a bridge (and a dead bear) can be seen at the bottom\nof the chasm.'
1641 - OBJ_33:
1642     inventory: '*troll'
1643     longs:
1644     - 'A burly troll stands by the bridge and insists you throw him a\ntreasure before you may cross.'
1645     - 'The troll steps out from beneath the bridge and blocks your way.'
1646     - '' # chased away
1647     - 'The troll sounds quite adamant in his demand for a treasure.'
1648 - OBJ_34:
1649     inventory: '*phony troll'
1650     longs:
1651     - 'The troll is nowhere to be seen.'
1652 - OBJ_35:
1653     inventory: !!null # bear uses rtext 141
1654     longs:
1655     - 'There is a ferocious cave bear eying you from the far end of the room!'
1656     - 'There is a gentle cave bear sitting placidly in one corner.'
1657     - 'There is a contented-looking bear wandering about nearby.'
1658     - '' # dead
1659 - OBJ_36:
1660     inventory: '*message in second maze'
1661     longs:
1662     - 'There is a message scrawled in the dust in a flowery script, reading:\n"This is not the maze where the pirate leaves his treasure chest."'
1663     - '"This is not the maze where the pirate leaves his treasure chest."'
1664 - OBJ_37:
1665     inventory: '*volcano and/or geyser'
1666     longs: !!null
1667 - OBJ_38:
1668     inventory: '*vending machine'
1669     longs:
1670     - 'There is a massive and somewhat battered vending machine here.  The\ninstructions on it read: "Drop coins here to receive fresh batteries."'
1671     - '"Drop coins here to receive fresh batteries."'
1672     - 'As you strike the vending machine, it pivots backward along with a\nsection of wall, revealing a dark passage leading south.'
1673     - 'There is a massive vending machine here, swung back to reveal a\nsouthward passage.'
1674     - '"Drop coins here to receive fresh batteries."'
1675     - 'The vending machine swings back to block the passage.'
1676 - OBJ_39:
1677     inventory: 'Batteries'
1678     longs:
1679     - 'There are fresh batteries here.'
1680     - 'Some worn-out batteries have been discarded nearby.'
1681 - OBJ_40:
1682     inventory: '*carpet and/or moss and/or curtains'
1683     longs: !!null
1684 - OBJ_41:
1685     inventory: '*ogre'
1686     longs:
1687     - 'A formidable ogre bars the northern exit.'
1688     - 'The ogre is apparently the strong, silent type.'
1689 - OBJ_42:
1690     inventory: '*urn'
1691     longs:
1692     - 'A small urn is embedded in the rock.'
1693     - 'A small urn full of oil is embedded in the rock.'
1694     - 'A small oil flame extrudes from an urn embedded in the rock.'
1695 - OBJ_43:
1696     inventory: '*cavity'
1697     longs:
1698     - '' # something in it
1699     - 'There is a small urn-shaped cavity in the rock.'
1700 - OBJ_44:
1701     inventory: '*blood'
1702     longs:
1703     - '' # described with dragon
1704 - OBJ_45:
1705     inventory: '*reservoir'
1706     longs:
1707     - ''
1708     - 'The waters have parted to form a narrow path across the reservoir.'
1709     - 'The waters crash together again.'
1710 - OBJ_46:
1711     inventory: 'Leporine appendage'
1712     longs:
1713     - 'Your keen eye spots a severed leporine appendage lying on the ground.'
1714 - OBJ_47:
1715     inventory: '*mud'
1716     longs:
1717     - ''
1718     - '"MAGIC WORD XYZZY"'
1719 - OBJ_48:
1720     inventory: '*note'
1721     longs:
1722     - ''
1723     - '"You won''t get it up the steps"'
1724 - OBJ_49:
1725     inventory: '*sign'
1726     longs:
1727     - ''
1728     - 'Cave under construction beyond this point.\n           Proceed at own risk.\n       [Witt Construction Company]'
1729     - '"Treasure Vault.  Keys in main office."'
1730 - OBJ_50:
1731     inventory: 'Large gold nugget'
1732     longs:
1733     - 'There is a large sparkling nugget of gold here!'
1734 - OBJ_51:
1735     inventory: 'Several diamonds'
1736     longs:
1737     - 'There are diamonds here!'
1738 - OBJ_52:
1739     inventory: 'Bars of silver'
1740     longs:
1741     - 'There are bars of silver here!'
1742 - OBJ_53:
1743     inventory: 'Precious jewelry'
1744     longs:
1745     - 'There is precious jewelry here!'
1746 - OBJ_54:
1747     inventory: 'Rare coins'
1748     longs:
1749     - 'There are many coins here!'
1750 - OBJ_55:
1751     inventory: 'Treasure chest'
1752     longs:
1753     - 'The pirate''s treasure chest is here!'
1754 - OBJ_56:
1755     inventory: 'Golden eggs'
1756     longs:
1757     - 'There is a large nest here, full of golden eggs!'
1758     - 'The nest of golden eggs has vanished!'
1759     - 'Done!'
1760 - OBJ_57:
1761     inventory: 'Jeweled trident'
1762     longs:
1763     - 'There is a jewel-encrusted trident here!'
1764 - OBJ_58:
1765     inventory: 'Ming vase'
1766     longs:
1767     - 'There is a delicate, precious, ming vase here!'
1768     - 'The vase is now resting, delicately, on a velvet pillow.'
1769     - 'The floor is littered with worthless shards of pottery.'
1770     - 'The ming vase drops with a delicate crash.'
1771 - OBJ_59:
1772     inventory: 'Egg-sized emerald'
1773     longs:
1774     - 'There is an emerald here the size of a plover''s egg!'
1775     - 'There is an emerald resting in a small cavity in the rock!'
1776 - OBJ_60:
1777     inventory: 'Platinum pyramid'
1778     longs:
1779     - 'There is a platinum pyramid here, 8 inches on a side!'
1780 - OBJ_61:
1781     inventory: 'Glistening pearl'
1782     longs:
1783     - 'Off to one side lies a glistening pearl!'
1784 - OBJ_62:
1785     inventory: 'Persian rug'
1786     longs:
1787     - 'There is a persian rug spread out on the floor!'
1788     - 'The dragon is sprawled out on a persian rug!!'
1789     - 'There is a persian rug here, hovering in mid-air!'
1790 - OBJ_63:
1791     inventory: 'Rare spices'
1792     longs:
1793     - 'There are rare spices here!'
1794 - OBJ_64:
1795     inventory: 'Golden chain'
1796     longs:
1797     - 'There is a golden chain lying in a heap on the floor!'
1798     - 'The bear is locked to the wall with a golden chain!'
1799     - 'There is a golden chain locked to the wall!'
1800 - OBJ_65:
1801     inventory: 'Giant ruby'
1802     longs:
1803     - 'There is an enormous ruby here!'
1804     - 'There is a ruby resting in a small cavity in the rock!'
1805 - OBJ_66:
1806     inventory: 'Jade necklace'
1807     longs:
1808     - 'A precious jade necklace has been dropped here!'
1809 - OBJ_67:
1810     inventory: 'Amber gemstone'
1811     longs:
1812     - 'There is a rare amber gemstone here!'
1813     - 'There is an amber gemstone resting in a small cavity in the rock!'
1814 - OBJ_68:
1815     inventory: 'Star sapphire'
1816     longs:
1817     - 'A brilliant blue star sapphire is here!'
1818     - 'There is a star sapphire resting in a small cavity in the rock!'
1819 - OBJ_69:
1820     inventory: 'Ebony statuette'
1821     longs:
1822     - 'There is a richly-carved ebony statuette here!'
1823 - OBJ_70:
1824     inventory: !!null
1825     longs: !!null
1826 - OBJ_71:
1827     inventory: !!null
1828     longs: !!null
1829 - OBJ_72:
1830     inventory: !!null
1831     longs: !!null
1832 - OBJ_73:
1833     inventory: !!null
1834     longs: !!null
1835 - OBJ_74:
1836     inventory: !!null
1837     longs: !!null
1838 - OBJ_75:
1839     inventory: !!null
1840     longs: !!null
1841 - OBJ_76:
1842     inventory: !!null
1843     longs: !!null
1844 - OBJ_77:
1845     inventory: !!null
1846     longs: !!null
1847 - OBJ_78:
1848     inventory: !!null
1849     longs: !!null
1850 - OBJ_79:
1851     inventory: !!null
1852     longs: !!null
1853 - OBJ_80:
1854     inventory: !!null
1855     longs: !!null
1856 - OBJ_81:
1857     inventory: !!null
1858     longs: !!null
1859 - OBJ_82:
1860     inventory: !!null
1861     longs: !!null
1862 - OBJ_83:
1863     inventory: !!null
1864     longs: !!null
1865 - OBJ_84:
1866     inventory: !!null
1867     longs: !!null
1868 - OBJ_85:
1869     inventory: !!null
1870     longs: !!null
1871 - OBJ_86:
1872     inventory: !!null
1873     longs: !!null
1874 - OBJ_87:
1875     inventory: !!null
1876     longs: !!null
1877 - OBJ_88:
1878     inventory: !!null
1879     longs: !!null
1880 - OBJ_89:
1881     inventory: !!null
1882     longs: !!null
1883 - OBJ_90:
1884     inventory: !!null
1885     longs: !!null
1886 - OBJ_91:
1887     inventory: !!null
1888     longs: !!null
1889 - OBJ_92:
1890     inventory: !!null
1891     longs: !!null
1892 - OBJ_93:
1893     inventory: !!null
1894     longs: !!null
1895 - OBJ_94:
1896     inventory: !!null
1897     longs: !!null
1898 - OBJ_95:
1899     inventory: !!null
1900     longs: !!null
1901 - OBJ_96:
1902     inventory: !!null
1903     longs: !!null
1904 - OBJ_97:
1905     inventory: !!null
1906     longs: !!null
1907 - OBJ_98:
1908     inventory: !!null
1909     longs: !!null
1910 - OBJ_99:
1911     inventory: !!null
1912     longs: !!null
1913 - OBJ_100:
1914     inventory: !!null
1915     longs: !!null
1916
1917 obituaries:
1918   - query: 'Oh dear, you seem to have gotten yourself killed.  I might be able to\nhelp you out, but I''ve never really done this before.  Do you want me\nto try to reincarnate you?'
1919     yes_response: 'All right.  But don''t blame me if something goes wr......\n                    --- POOF!! ---\nYou are engulfed in a cloud of orange smoke.  Coughing and gasping,\nyou emerge from the smoke and find....'
1920   - query: 'You clumsy oaf, you''ve done it again!  I don''t know how long I can\nkeep this up.  Do you want me to try reincarnating you again?'
1921     yes_response: 'Okay, now where did I put my orange smoke?....  >POOF!<\nEverything disappears in a dense cloud of orange smoke.'
1922   - query: 'Now you''ve really done it!  I''m out of orange smoke!  You don''t expect\nme to do a decent reincarnation without any orange smoke, do you?'
1923     yes_response: 'Okay, if you''re so smart, do it yourself!  I''m leaving!'
1924
1925 # end