Document the YAML, remove some dead code, fix typos.
[open-adventure.git] / adventure.yaml
1 # This YAML file gets processed into a collection of data structure and
2 # variable initializers describing Colossal Cave.  It replaces an ad-hoc
3 # text database shipped with Adventure versions up to 2.6.  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 # locations: Each item contains a long and short description.  Some
10 #    short descriptions are empty.  Order of these locations is significant;
11 #    see the macros OUTSID and INDEEP.
12 #
13 # arbitrary_messages: These are arguments to RSPEAK(). Some spans of
14 #    these messages need to be kept adjacent and ordered.  To see which,
15 #    grep for RSPEAK calls containing expressions with arithmetic.
16 #
17 # classes: Each item contains a point threshold and a message
18 #    describing a classification of player.  point thresholds must be
19 #    in ascending order. The scoring code selects the appropriate
20 #    message, where each message is considered to apply to players
21 #    whose scores are higher than the previous N but not higher than
22 #    this N.  Note that these scores probably change with every
23 #    modification (and particularly expansion) of the program.
24 #
25 # turn_thresholds:  Each item contains a number and a message
26 #    berating the player for taking so many turns.  The messages must
27 #    be in the proper (ascending) order.  The message gets printed if
28 #    the player exceeds N % 100000 turns, at which time N/100000
29 #    points get deducted from his score.
30 #
31 # objects: Each item contains a description for use in the inventory command
32 #    and one or more messages describing the object in different states.
33 #    If the inventory desription begins with "*" the object is dungeon
34 #    furniture that cannot be taken or carried.
35 #
36 locations: !!omap
37 - LOC_NOWHERE:
38     description:
39       long: !!null
40       short: !!null
41 - LOC_START:
42     description:
43       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.'
44       short: 'You''re in front of building.'
45 - LOC_HILL:
46     description:
47       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.'
48       short: 'You''re at hill in road.'
49 - LOC_BUILDING:
50     description:
51       long: 'You are inside a building, a well house for a large spring.'
52       short: 'You''re inside building.'
53 - LOC_VALLEY:
54     description:
55       long: 'You are in a valley in the forest beside a stream tumbling along a\nrocky bed.'
56       short: 'You''re in valley.'
57 - LOC_ROADEND:
58     description:
59       long: 'The road, which approaches from the east, ends here amid the trees.'
60       short: 'You''re at end of road.'
61 - LOC_CLIFF:
62     description:
63       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.'
64       short: 'You''re at cliff.'
65 - LOC_SLIT:
66     description:
67       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.'
68       short: 'You''re at slit in streambed.'
69 - LOC_GRATE:
70     description:
71       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.'
72       short: 'You''re outside grate.'
73 - LOC_BELOWGRATE:
74     description:
75       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.'
76       short: 'You''re below the grate.'
77 - LOC_COBBLE:
78     description:
79       long: 'You are crawling over cobbles in a low passage.  There is a dim light\nat the east end of the passage.'
80       short: 'You''re in cobble crawl.'
81 - LOC_DEBRIS:
82     description:
83       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".'
84       short: 'You''re in debris room.'
85 - LOC_AWKWARD:
86     description:
87       long: 'You are in an awkward sloping east/west canyon.'
88       short: !!null
89 - LOC_BIRD:
90     description:
91       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.'
92       short: 'You''re in bird chamber.'
93 - LOC_PITTOP:
94     description:
95       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.'
96       short: 'You''re at top of small pit.'
97 - LOC_MISTHALL:
98     description:
99       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.'
100       short: 'You''re in Hall of Mists.'
101 - LOC_CRACK:
102     description:
103       long: 'The crack is far too small for you to follow.  At its widest it is\nbarely wide enough to admit your foot.'
104       short: !!null
105 - LOC_EASTBANK:
106     description:
107       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.'
108       short: 'You''re on east bank of fissure.'
109 - LOC_NUGGET:
110     description:
111       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".'
112       short: 'You''re in nugget-of-gold room.'
113 - LOC_KINGHALL:
114     description:
115       long: 'You are in the Hall of the Mountain King, with passages off in all\ndirections.'
116       short: 'You''re in Hall of Mt King.'
117 - LOC_NECKBROKE:
118     description:
119       long: 'You are at the bottom of the pit with a broken neck.'
120       short: !!null
121 - LOC_NOMAKE:
122     description:
123       long: 'You didn''t make it.'
124       short: !!null
125 - LOC_DOME:
126     description:
127       long: 'The dome is unclimbable.'
128       short: !!null
129 - LOC_WESTEND:
130     description:
131       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.'
132       short: 'You''re at west end of Twopit Room.'
133 - LOC_EASTPIT:
134     description:
135       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.'
136       short: 'You''re in east pit.'
137 - LOC_WESTPIT:
138     description:
139       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.'
140       short: 'You''re in west pit.'
141 - LOC_CLIMBSTALK:
142     description:
143       long: 'You clamber up the plant and scurry through the hole at the top.'
144       short: !!null
145 - LOC_WESTBANK:
146     description:
147       long: 'You are on the west side of the fissure in the Hall of Mists.'
148       short: 'You''re on west bank of fissure.'
149 - LOC_FLOORHOLE:
150     description:
151       long: 'You are in a low n/s passage at a hole in the floor.  The hole goes\ndown to an e/w passage.'
152       short: 'You''re in n/s passage above e/w passage.'
153 - LOC_SOUTHSIDE:
154     description:
155       long: 'You are in the south side chamber.'
156       short: !!null
157 - LOC_WESTSIDE:
158     description:
159       long: 'You are in the west side chamber of the Hall of the Mountain King.\nA passage continues west and up here.'
160       short: 'You''re in the west side chamber.'
161 - LOC_BUILDING1:
162     description:
163       long: ''
164       short: !!null
165 - LOC_SNAKEBLOCK:
166     description:
167       long: 'You can''t get by the snake.'
168       short: !!null
169 - LOC_Y2:
170     description:
171       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.'
172       short: 'You''re at "Y2".'
173 - LOC_JUMBLE:
174     description:
175       long: 'You are in a jumble of rock, with cracks everywhere.'
176       short: !!null
177 - LOC_WINDOW1:
178     description:
179       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.'
180       short: 'You''re at window on pit.'
181 - LOC_BROKEN:
182     description:
183       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.'
184       short: 'You''re in dirty passage.'
185 - LOC_SMALLPITBRINK:
186     description:
187       long: 'You are on the brink of a small clean climbable pit.  A crawl leads\nwest.'
188       short: 'You''re at brink of small pit.'
189 - LOC_SMALLPIT:
190     description:
191       long: 'You are in the bottom of a small pit with a little stream, which\nenters and exits through tiny slits.'
192       short: 'You''re at bottom of pit with stream.'
193 - LOC_DUSTY:
194     description:
195       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.'
196       short: 'You''re in dusty rock room.'
197 - LOC_PARALLEL1:
198     description:
199       long: 'You have crawled through a very low wide passage parallel to and north\nof the Hall of Mists.'
200       short: !!null
201 - LOC_MISTWEST:
202     description:
203       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.'
204       short: 'You''re at west end of Hall of Mists.'
205 - LOC_ALIKE1:
206     description:
207       long: 'You are in a maze of twisty little passages, all alike.'
208       short: !!null
209 - LOC_ALIKE2:
210     description:
211       long: 'You are in a maze of twisty little passages, all alike.'
212       short: !!null
213 - LOC_ALIKE3:
214     description:
215       long: 'You are in a maze of twisty little passages, all alike.'
216       short: !!null
217 - LOC_ALIKE4:
218     description:
219       long: 'You are in a maze of twisty little passages, all alike.'
220       short: !!null
221 - LOC_DEADEND1:
222     description:
223       long: 'Dead end'
224       short: !!null
225 - LOC_DEADEND2:
226     description:
227       long: 'Dead end'
228       short: !!null
229 - LOC_DEADEND3:
230     description:
231       long: 'Dead end'
232       short: !!null
233 - LOC_ALIKE5:
234     description:
235       long: 'You are in a maze of twisty little passages, all alike.'
236       short: !!null
237 - LOC_ALIKE6:
238     description:
239       long: 'You are in a maze of twisty little passages, all alike.'
240       short: !!null
241 - LOC_ALIKE7:
242     description:
243       long: 'You are in a maze of twisty little passages, all alike.'
244       short: !!null
245 - LOC_ALIKE8:
246     description:
247       long: 'You are in a maze of twisty little passages, all alike.'
248       short: !!null
249 - LOC_ALIKE9:
250     description:
251       long: 'You are in a maze of twisty little passages, all alike.'
252       short: !!null
253 - LOC_DEADEND4:
254     description:
255       long: 'Dead end'
256       short: !!null
257 - LOC_ALIKE10:
258     description:
259       long: 'You are in a maze of twisty little passages, all alike.'
260       short: !!null
261 - LOC_DEADEND5:
262     description:
263       long: 'Dead end'
264       short: !!null
265 - LOC_PITBRINK:
266     description:
267       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.'
268       short: 'You''re at brink of pit.'
269 - LOC_DEADEND6:
270     description:
271       long: 'Dead end'
272       short: !!null
273 - LOC_PARALLEL2:
274     description:
275       long: 'You have crawled through a very low wide passage parallel to and north\nof the Hall of Mists.'
276       short: !!null
277 - LOC_LONGEAST:
278     description:
279       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.'
280       short: 'You''re at east end of long hall.'
281 - LOC_LONGWEST:
282     description:
283       long: 'You are at the west end of a very long featureless hall.  The hall\njoins up with a narrow north/south passage.'
284       short: 'You''re at west end of long hall.'
285 - LOC_CROSSOVER:
286     description:
287       long: 'You are at a crossover of a high n/s passage and a low e/w one.'
288       short: !!null
289 - LOC_DEADEND7:
290     description:
291       long: 'Dead end'
292       short: !!null
293 - LOC_COMPLEX:
294     description:
295       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.'
296       short: 'You''re at complex junction.'
297 - LOC_BEDQUILT:
298     description:
299       long: 'You are in Bedquilt, a long east/west passage with holes everywhere.\nTo explore at random select north, south, up, or down.'
300       short: 'You''re in Bedquilt.'
301 - LOC_SWISSCHEESE:
302     description:
303       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.'
304       short: 'You''re in Swiss Cheese Room.'
305 - LOC_EASTEND:
306     description:
307       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.'
308       short: 'You''re at east end of Twopit Room.'
309 - LOC_SLAB:
310     description:
311       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.'
312       short: 'You''re in Slab Room.'
313 - LOC_SECRET1:
314     description:
315       long: 'You are in a secret n/s canyon above a large room.'
316       short: !!null
317 - LOC_SECRET2:
318     description:
319       long: 'You are in a secret n/s canyon above a sizable passage.'
320       short: !!null
321 - LOC_THREEJUNCTION:
322     description:
323       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.'
324       short: 'You''re at junction of three secret canyons.'
325 - LOC_LOWROOM:
326     description:
327       long: 'You are in a large low room.  Crawls lead north, se, and sw.'
328       short: 'You''re in large low room.'
329 - LOC_DEADCRAWL:
330     description:
331       long: 'Dead end crawl.'
332       short: !!null
333 - LOC_SECRET3:
334     description:
335       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.'
336       short: 'You''re in secret e/w canyon above tight canyon.'
337 - LOC_WIDEPLACE:
338     description:
339       long: 'You are at a wide place in a very tight n/s canyon.'
340       short: !!null
341 - LOC_TIGHTPLACE:
342     description:
343       long: 'The canyon here becomes too tight to go further south.'
344       short: !!null
345 - LOC_TALL:
346     description:
347       long: 'You are in a tall e/w canyon.  A low tight crawl goes 3 feet north and\nseems to open up.'
348       short: !!null
349 - LOC_BOULDERS1:
350     description:
351       long: 'The canyon runs into a mass of boulders -- dead end.'
352       short: !!null
353 - LOC_SEWER:
354     description:
355       long: 'The stream flows out through a pair of 1 foot diameter sewer pipes.\nIt would be advisable to use the exit.'
356       short: !!null
357 - LOC_ALIKE11:
358     description:
359       long: 'You are in a maze of twisty little passages, all alike.'
360       short: !!null
361 - LOC_DEADEND8:
362     description:
363       long: 'Dead end'
364       short: !!null
365 - LOC_DEADEND9:
366     description:
367       long: 'Dead end'
368       short: !!null
369 - LOC_ALIKE12:
370     description:
371       long: 'You are in a maze of twisty little passages, all alike.'
372       short: !!null
373 - LOC_ALIKE13:
374     description:
375       long: 'You are in a maze of twisty little passages, all alike.'
376       short: !!null
377 - LOC_DEADEND10:
378     description:
379       long: 'Dead end'
380       short: !!null
381 - LOC_DEADEND11:
382     description:
383       long: 'Dead end'
384       short: !!null
385 - LOC_ALIKE14:
386     description:
387       long: 'You are in a maze of twisty little passages, all alike.'
388       short: !!null
389 - LOC_NARROW:
390     description:
391       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.'
392       short: 'You''re in narrow corridor.'
393 - LOC_NOCLIMB:
394     description:
395       long: 'There is nothing here to climb.  Use "up" or "out" to leave the pit.'
396       short: !!null
397 - LOC_PLANTTOP:
398     description:
399       long: 'You have climbed up the plant and out of the pit.'
400       short: !!null
401 - LOC_INCLINE:
402     description:
403       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.'
404       short: 'You''re at steep incline above large room.'
405 - LOC_GIANTROOM:
406     description:
407       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].'
408       short: 'You''re in Giant Room.'
409 - LOC_CAVEIN:
410     description:
411       long: 'The passage here is blocked by a recent cave-in.'
412       short: !!null
413 - LOC_IMMENSE:
414     description:
415       long: 'You are at one end of an immense north/south passage.'
416       short: !!null
417 - LOC_WATERFALL:
418     description:
419       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.'
420       short: 'You''re in cavern with waterfall.'
421 - LOC_SOFTROOM:
422     description:
423       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.'
424       short: 'You''re in Soft Room.'
425 - LOC_ORIENTAL:
426     description:
427       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.'
428       short: 'You''re in Oriental Room.'
429 - LOC_MISTY:
430     description:
431       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.'
432       short: 'You''re in misty cavern.'
433 - LOC_ALCOVE:
434     description:
435       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.'
436       short: 'You''re in alcove.'
437 - LOC_PLOVER:
438     description:
439       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.'
440       short: 'You''re in Plover Room.'
441 - LOC_DARKROOM:
442     description:
443       long: 'You''re in the dark-room.  A corridor leading south is the only exit.'
444       short: 'You''re in dark-room.'
445 - LOC_ARCHED:
446     description:
447       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.'
448       short: 'You''re in arched hall.'
449 - LOC_SHELLROOM:
450     description:
451       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.'
452       short: 'You''re in Shell Room.'
453 - LOC_SLOPING1:
454     description:
455       long: 'You are in a long sloping corridor with ragged sharp walls.'
456       short: !!null
457 - LOC_CULDESAC:
458     description:
459       long: 'You are in a cul-de-sac about eight feet across.'
460       short: !!null
461 - LOC_ANTEROOM:
462     description:
463       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]"'
464       short: 'You''re in anteroom.'
465 - LOC_DIFFERENT1:
466     description:
467       long: 'You are in a maze of twisty little passages, all different.'
468       short: !!null
469 - LOC_WITTSEND:
470     description:
471       long: 'You are at Witt''s End.  Passages lead off in *ALL* directions.'
472       short: 'You''re at Witt''s End.'
473 - LOC_MIRRORCANYON:
474     description:
475       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.'
476       short: 'You''re in Mirror Canyon.'
477 - LOC_WINDOW2:
478     description:
479       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.'
480       short: 'You''re at window on pit.'
481 - LOC_TOPSTALACTITE:
482     description:
483       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.'
484       short: 'You''re at top of stalactite.'
485 - LOC_DIFFERENT2:
486     description:
487       long: 'You are in a little maze of twisting passages, all different.'
488       short: !!null
489 - LOC_RESERVOIR:
490     description:
491       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.'
492       short: 'You''re at reservoir.'
493 - LOC_DEADEND12:
494     description:
495       long: 'Dead end'
496       short: !!null
497 - LOC_NE:
498     description:
499       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.'
500       short: 'You''re at ne end.'
501 - LOC_SW:
502     description:
503       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."'
504       short: 'You''re at sw end.'
505 - LOC_SWCHASM:
506     description:
507       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.'
508       short: 'You''re on sw side of chasm.'
509 - LOC_WINDING:
510     description:
511       long: 'You are in a long winding corridor sloping out of sight in both\ndirections.'
512       short: 'You''re in sloping corridor.'
513 - LOC_SECRET4:
514     description:
515       long: 'You are in a secret canyon which exits to the north and east.'
516       short: !!null
517 - LOC_SECRET5:
518     description:
519       long: 'You are in a secret canyon which exits to the north and east.'
520       short: !!null
521 - LOC_SECRET6:
522     description:
523       long: 'You are in a secret canyon which exits to the north and east.'
524       short: !!null
525 - LOC_NECHASM:
526     description:
527       long: 'You are on the far side of the chasm.  A ne path leads away from the\nchasm on this side.'
528       short: 'You''re on ne side of chasm.'
529 - LOC_CORRIDOR:
530     description:
531       long: 'You''re in a long east/west corridor.  A faint rumbling noise can be\nheard in the distance.'
532       short: 'You''re in corridor.'
533 - LOC_FORK:
534     description:
535       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.'
536       short: 'You''re at fork in path.'
537 - LOC_WARMWALLS:
538     description:
539       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.'
540       short: 'You''re at junction with warm walls.'
541 - LOC_BREATHTAKING:
542     description:
543       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.'
544       short: 'You''re at breath-taking view.'
545 - LOC_BOULDERS2:
546     description:
547       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.'
548       short: 'You''re in Chamber of Boulders.'
549 - LOC_LIMESTONE:
550     description:
551       long: 'You are walking along a gently sloping north/south passage lined with\noddly shaped limestone formations.'
552       short: 'You''re in limestone passage.'
553 - LOC_BARRENFRONT:
554     description:
555       long: 'You are standing at the entrance to a large, barren room.  A notice\nabove the entrance reads:  "Caution!  Bear in room!"'
556       short: 'You''re in front of Barren Room.'
557 - LOC_BARRENROOM:
558     description:
559       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.'
560       short: 'You''re in Barren Room.'
561 - LOC_DIFFERENT3:
562     description:
563       long: 'You are in a maze of twisting little passages, all different.'
564       short: !!null
565 - LOC_DIFFERENT4:
566     description:
567       long: 'You are in a little maze of twisty passages, all different.'
568       short: !!null
569 - LOC_DIFFERENT5:
570     description:
571       long: 'You are in a twisting maze of little passages, all different.'
572       short: !!null
573 - LOC_DIFFERENT6:
574     description:
575       long: 'You are in a twisting little maze of passages, all different.'
576       short: !!null
577 - LOC_DIFFERENT7:
578     description:
579       long: 'You are in a twisty little maze of passages, all different.'
580       short: !!null
581 - LOC_DIFFERENT8:
582     description:
583       long: 'You are in a twisty maze of little passages, all different.'
584       short: !!null
585 - LOC_DIFFERENT9:
586     description:
587       long: 'You are in a little twisty maze of passages, all different.'
588       short: !!null
589 - LOC_DIFFERENT10:
590     description:
591       long: 'You are in a maze of little twisting passages, all different.'
592       short: !!null
593 - LOC_DIFFERENT11:
594     description:
595       long: 'You are in a maze of little twisty passages, all different.'
596       short: !!null
597 - LOC_DEADEND13:
598     description:
599       long: 'Dead end'
600       short: !!null
601 - LOC_ROUGHHEWN:
602     description:
603       long: 'You are in a long, rough-hewn, north/south corridor.'
604       short: !!null
605 - LOC_BADDIRECTION:
606     description:
607       long: 'There is no way to go that direction.'
608       short: !!null
609 - LOC_LARGE:
610     description:
611       long: 'You are in a large chamber with passages to the west and north.'
612       short: !!null
613 - LOC_STOREROOM:
614     description:
615       long: 'You are in the ogre''s storeroom.  The only exit is to the south.'
616       short: !!null
617 - LOC_FOREST1:
618     description:
619       long: 'You are wandering aimlessly through the forest.'
620       short: !!null
621 - LOC_FOREST2:
622     description:
623       long: 'You are wandering aimlessly through the forest.'
624       short: !!null
625 - LOC_FOREST3:
626     description:
627       long: 'You are wandering aimlessly through the forest.'
628       short: !!null
629 - LOC_FOREST4:
630     description:
631       long: 'You are wandering aimlessly through the forest.'
632       short: !!null
633 - LOC_FOREST5:
634     description:
635       long: 'You are wandering aimlessly through the forest.'
636       short: !!null
637 - LOC_FOREST6:
638     description:
639       long: 'You are wandering aimlessly through the forest.'
640       short: !!null
641 - LOC_FOREST7:
642     description:
643       long: 'You are wandering aimlessly through the forest.'
644       short: !!null
645 - LOC_FOREST8:
646     description:
647       long: 'You are wandering aimlessly through the forest.'
648       short: !!null
649 - LOC_FOREST9:
650     description:
651       long: 'You are wandering aimlessly through the forest.'
652       short: !!null
653 - LOC_FOREST10:
654     description:
655       long: 'You are wandering aimlessly through the forest.'
656       short: !!null
657 - LOC_FOREST11:
658     description:
659       long: 'You are wandering aimlessly through the forest.'
660       short: !!null
661 - LOC_FOREST12:
662     description:
663       long: 'You are wandering aimlessly through the forest.'
664       short: !!null
665 - LOC_FOREST13:
666     description:
667       long: 'You are wandering aimlessly through the forest.'
668       short: !!null
669 - LOC_FOREST14:
670     description:
671       long: 'You are wandering aimlessly through the forest.'
672       short: !!null
673 - LOC_FOREST15:
674     description:
675       long: 'You are wandering aimlessly through the forest.'
676       short: !!null
677 - LOC_FOREST16:
678     description:
679       long: 'You are wandering aimlessly through the forest.'
680       short: !!null
681 - LOC_FOREST17:
682     description:
683       long: 'You are wandering aimlessly through the forest.'
684       short: !!null
685 - LOC_FOREST18:
686     description:
687       long: 'You are wandering aimlessly through the forest.'
688       short: !!null
689 - LOC_FOREST19:
690     description:
691       long: 'You are wandering aimlessly through the forest.'
692       short: !!null
693 - LOC_FOREST20:
694     description:
695       long: 'You are wandering aimlessly through the forest.'
696       short: !!null
697 - LOC_FOREST21:
698     description:
699       long: 'You are wandering aimlessly through the forest.'
700       short: !!null
701 - LOC_FOREST22:
702     description:
703       long: 'You are wandering aimlessly through the forest.'
704       short: !!null
705 - LOC_LEDGE:
706     description:
707       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.'
708       short: 'You''re on ledge.'
709 - LOC_RESBOTTOM:
710     description:
711       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.'
712       short: 'You''re at bottom of reservoir.'
713 - LOC_RESNORTH:
714     description:
715       long: 'You are at the northern edge of the reservoir.  A northwest passage\nleads sharply up from here.'
716       short: 'You''re north of reservoir.'
717 - LOC_TREACHEROUS:
718     description:
719       long: 'You are scrambling along a treacherously steep, rocky passage.'
720       short: !!null
721 - LOC_STEEP:
722     description:
723       long: 'You are on a very steep incline, which widens at it goes upward.'
724       short: !!null
725 - LOC_CLIFFBASE:
726     description:
727       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.'
728       short: 'You''re at base of cliff.'
729 - LOC_CLIFFACE:
730     description:
731       long: 'You are climbing along a nearly vertical cliff.'
732       short: !!null
733 - LOC_FOOTSLIP:
734     description:
735       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.'
736       short: !!null
737 - LOC_CLIFFTOP:
738     description:
739       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.'
740       short: !!null
741 - LOC_CLIFFLEDGE:
742     description:
743       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.'
744       short: 'You''re at top of cliff.'
745 - LOC_REACHDEAD:
746     description:
747       long: 'You have reached a dead end.'
748       short: !!null
749 - LOC_GRUESOME:
750     description:
751       long: 'There is now one more gruesome aspect to the spectacular vista.'
752       short: !!null
753 - LOC_FOOF1:
754     description:
755       long: '>>Foof!<<'
756       short: !!null
757 - LOC_FOOF2:
758     description:
759       long: '>>Foof!<<'
760       short: !!null
761 - LOC_FOOF3:
762     description:
763       long: '>>Foof!<<'
764       short: !!null
765 - LOC_FOOF4:
766     description:
767       long: '>>Foof!<<'
768       short: !!null
769 - LOC_FOOF5:
770     description:
771       long: '>>Foof!<<'
772       short: !!null
773 - LOC_FOOF6:
774     description:
775       long: '>>Foof!<<'
776       short: !!null
777 - LOC_NUGGET5:
778     description:
779       long: !!null
780       short: !!null
781
782 arbitrary_messages:  !!omap
783 - NO_MESSAGE: !!null
784 - 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.'
785 - DWARF_BLOCK: 'A little dwarf with a big knife blocks your way.'
786 - DWARF_RAN: 'A little dwarf just walked around a corner, saw you, threw a little\naxe at you which missed, cursed, and ran away.'
787 - DWARF_PACK: 'There are %d threatening little dwarves in the room with you.'
788 - DWARF_SINGLE: 'There is a threatening little dwarf in the room with you!'
789 - KNIFE_THROWN: 'One sharp nasty knife is thrown at you!'
790 - SAYS_PLUGH: 'A hollow voice says "PLUGH".'
791 - GETS_YOU: 'It gets you!'
792 - MISSES_YOU: 'It misses!'
793 - UNSURE_FACING: 'I am unsure how you are facing.  Use compass points or nearby objects.'
794 - 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.'
795 - CANT_APPLY: 'I don''t know how to apply that word here.'
796 - YOUR_WELCOME: 'You''re quite welcome.'
797 - AM_GAME: 'I''m game.  Would you care to explain how?'
798 - NO_MORE_DETAIL: 'Sorry, but I am not allowed to give more detail.  I will repeat the\nlong description of your location.'
799 - PITCH_DARK: 'It is now pitch dark.  If you proceed you will likely fall into a pit.'
800 - W_IS_WEST: 'If you prefer, simply type w rather than west.'
801 - BIRD_QUERY: 'Are you trying to catch the bird?'
802 - SKITTISH_BIRD: 'Something about you seems to be frightening the bird.  Perhaps you\nmight figure out what it is.'
803 - SNAKE_QUERY: 'Are you trying to somehow deal with the snake?'
804 - 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.'
805 - REALLY_QUIT: 'Do you really want to quit now?'
806 - PIT_FALL: 'You fell into a pit and broke every bone in your body!'
807 - ALREADY_CARRYING: 'You are already carrying it!'
808 - YOU_JOKING: 'You can''t be serious!'
809 - BIRD_EVADES: 'The bird seemed unafraid at first, but as you approach it becomes\ndisturbed and you cannot catch it.'
810 - CANNOT_CARRY: 'You can catch the bird, but you cannot carry it.'
811 - NOTHING_LOCKED: 'There is nothing here with a lock!'
812 - ARENT_CARRYING: 'You aren''t carrying it!'
813 - BIRD_ATTACKS: 'The little bird attacks the green snake, and in an astounding flurry\ndrives the snake away.'
814 - NO_KEYS: 'You have no keys!'
815 - NO_LOCK: 'It has no lock.'
816 - NOT_LOCKABLE: 'I don''t know how to lock or unlock such a thing.'
817 - ALREADY_LOCKED: 'It was already locked.'
818 - GRATE_LOCKED: 'The grate is now locked.'
819 - GRATE_UNLOCKED: 'The grate is now unlocked.'
820 - ALREADY_UNLOCKED: 'It was already unlocked.'
821 - URN_EMPTY: 'The urn is empty and will not light.'
822 - LAMP_ON: 'Your lamp is now on.'
823 - LAMP_OFF: 'Your lamp is now off.'
824 - BEAR_BLOCKS: 'There is no way to get past the bear to unlock the chain, which is\nprobably just as well.'
825 - NOTHING_HAPPENS: 'Nothing happens.'
826 - WHERE_QUERY: 'Where?'
827 - NO_TARGET: 'There is nothing here to attack.'
828 - BIRD_DEAD: 'The little bird is now dead.  Its body disappears.'
829 - SNAKE_WARNING: 'Attacking the snake both doesn''t work and is very dangerous.'
830 - KILLED_DWARF: 'You killed a little dwarf.'
831 - DWARF_DODGES: 'You attack a little dwarf, but he dodges out of the way.'
832 - BARE_HANDS_QUERY: 'With what?  Your bare hands?'
833 - WORN_OUT: 'Good try, but that is an old worn-out magic word.'
834 - 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!'
835 - BAD_DIRECTION: 'There is no way to go that direction.'
836 - TWO_WORDS: 'Please stick to 1- and 2-word commands.'
837 - OK_MAN: 'OK'
838 - CANNOT_UNLOCK: 'You can''t unlock the keys.'
839 - FUTILE_CRAWL: 'You have crawled around in some little holes and wound up back in the\nmain passage.'
840 - 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.'
841 - NEED_DETAIL: 'I need more detailed instructions to do that.'
842 - NEARBY: 'I can only tell you what you see as you move about and manipulate\nthings.  I cannot tell you where remote things are.'
843 - OGRE_SNARL: 'The ogre snarls and shoves you back.'
844 - HUH_MAN: 'Huh?'
845 - ENTRY_QUERY: 'Are you trying to get into the cave?'
846 - 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.'
847 - 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.'
848 - WELCOME_YOU: 'Welcome to Adventure!!  Would you like instructions?'
849 - DIGGING_FUTILE: 'Digging without a shovel is quite impractical.  Even with a shovel\nprogress is unlikely.'
850 - REQUIRES_DYNAMITE: 'Blasting requires dynamite.'
851 - IM_CONFUSED: 'I''m as confused as you are.'
852 - 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.'
853 - FEET_WET: 'Your feet are now wet.'
854 - LOST_APPETITE: 'I think I just lost my appetite.'
855 - THANKS_DELICIOUS: 'Thank you, it was delicious!'
856 - STREAM_WATER: 'You have taken a drink from the stream.  The water tastes strongly of\nminerals, but is not unpleasant.  It is extremely cold.'
857 - BOTTLE_EMPTY: 'The bottle of water is now empty.'
858 - RUB_NOGO: 'Rubbing the electric lamp is not particularly rewarding.  Anyway,\nnothing exciting happens.'
859 - PECULIAR_NOTHING: 'Peculiar.  Nothing unexpected happens.'
860 - GROUND_WET: 'Your bottle is empty and the ground is wet.'
861 - CANT_POUR: 'You can''t pour that.'
862 - WATCH_IT: 'Watch it!'
863 - WHICH_WAY: 'Which way?'
864 - ARB_81: !!null
865 - ARB_82: !!null
866 - ARB_83: !!null
867 - ARB_84: !!null
868 - ARB_85: !!null
869 - ARB_86: !!null
870 - ARB_87: !!null
871 - ARB_88: !!null
872 - ARB_89: !!null
873 - ARB_90: !!null
874 - FORGOT_PATH: 'Sorry, but I no longer seem to remember how it was you got here.'
875 - CARRY_LIMIT: 'You can''t carry anything more.  You''ll have to drop something first.'
876 - GRATE_NOWAY: 'You can''t go through a locked steel grate!'
877 - YOU_HAVEIT: 'I believe what you want is right here with you.'
878 - DONT_FIT: 'You don''t fit through a two-inch slit!'
879 - CROSS_BRIDGE: 'I respectfully suggest you go across the bridge instead of jumping.'
880 - NO_CROSS: 'There is no way across the fissure.'
881 - NO_CARRY: 'You''re not carrying anything.'
882 - NOW_HOLDING: 'You are currently holding the following:'
883 - BIRD_PINING: 'It''s not hungry (it''s merely pinin'' for the fjords).  Besides, you\nhave no bird seed.'
884 - BIRD_DEVOURED: 'The snake has now devoured your bird.'
885 - NOTHING_EDIBLE: 'There''s nothing here it wants to eat (except perhaps you).'
886 - REALLY_MAD: 'You fool, dwarves eat only coal!  Now you''ve made him *REALLY* mad!!'
887 - NO_CONTAINER: 'You have nothing in which to carry it.'
888 - BOTTLE_FULL: 'Your bottle is already full.'
889 - NO_LIQUID: 'There is nothing here with which to fill the bottle.'
890 - BOTTLED_WATER: 'Your bottle is now full of water.'
891 - BOTTLED_OIL: 'Your bottle is now full of oil.'
892 - CANT_FILL: 'You can''t fill that.'
893 - RIDICULOUS_ATTEMPT: 'Don''t be ridiculous!'
894 - RUSTY_DOOR: 'The door is extremely rusty and refuses to open.'
895 - SHAKING_LEAVES: 'The plant indignantly shakes the oil off its leaves and asks, "Water?"'
896 - RUSTED_HINGES: 'The hinges are quite thoroughly rusted now and won''t budge.'
897 - OILED_NINGES: 'The oil has freed up the hinges so that the door will now move,\nalthough it requires some effort.'
898 - DEEP_ROOTS: 'The plant has exceptionally deep roots and cannot be pulled free.'
899 - KNIVES_VANISH: 'The dwarves'' knives vanish as they strike the walls of the cave.'
900 - MUST_DROP: 'Something you''re carrying won''t fit through the tunnel with you.\nYou''d best take inventory and drop something.'
901 - CLAM_BLOCKER: 'You can''t fit this five-foot clam through that little passage!'
902 - OYSTER_BLOCKER: 'You can''t fit this five-foot oyster through that little passage!'
903 - DROP_CLAM: 'I advise you to put down the clam before opening it.  >STRAIN!<'
904 - DROP_OYSTER: 'I advise you to put down the oyster before opening it.  >WRENCH!<'
905 - CLAM_OPENER: 'You don''t have anything strong enough to open the clam.'
906 - OYSTER_OPENER: 'You don''t have anything strong enough to open the oyster.'
907 - 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.'
908 - OYSTER_OPENS: 'The oyster creaks open, revealing nothing but oyster inside.  It\npromptly snaps shut again.'
909 - 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.'
910 - PIRATE_RUSTLES: 'There are faint rustling noises from the darkness behind you.'
911 - 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.'
912 - CAVE_CLOSING: 'A sepulchral voice reverberating through the cave, says, "Cave closing\nsoon.  All adventurers exit immediately through main office."'
913 - EXIT_CLOSED: 'A mysterious recorded voice groans into life and announces:\n   "This exit is closed.  Please leave via main office."'
914 - 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.'
915 - 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...'
916 - 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.'
917 - 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!'
918 - SPLATTER_MESSAGE: 'There is a loud explosion, and you are suddenly splashed across the\nwalls of the room.'
919 - 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!'
920 - UNHAPPY_BIRD: 'Oh, leave the poor unhappy bird alone.'
921 - NEEDED_NEARBY: 'I daresay whatever you want is around here somewhere.'
922 - STOP_UNKNOWN: 'I don''t know the word "stop".  Use "quit" if you want to give up.'
923 - NOT_CONNECTED: 'You can''t get there from here.'
924 - TAME_BEAR: 'You are being followed by a very large, tame bear.'
925 - 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.'
926 - WITHOUT_SUSPENDS: 'Now let''s see you do it without suspending in mid-Adventure.'
927 - FILL_INVALID: 'There is nothing here with which to fill it.'
928 - SHATTER_VASE: 'The sudden change in temperature has delicately shattered the vase.'
929 - BEYOND_POWER: 'It is beyond your power to do that.'
930 - NOT_KNOWHOW: 'I don''t know how.'
931 - TOO_FAR: 'It is too far up for you to reach.'
932 - DWARF_SMOKE: 'You killed a little dwarf.  The body vanishes in a cloud of greasy\nblack smoke.'
933 - SHELL_IMPERVIOUS: 'The shell is very strong and is impervious to attack.'
934 - START_OVER: 'What''s the matter, can''t you read?  Now you''d best start over.'
935 - DRAGON_SCALES: 'The axe bounces harmlessly off the dragon''s thick scales.'
936 - NASTY_DRAGON: 'The dragon looks rather nasty.  You''d best not try to get by.'
937 - BIRD_BURNT: 'The little bird attacks the green dragon, and in an astounding flurry\ngets burnt to a cinder.  The ashes blow away.'
938 - ON_WHAT: 'On what?'
939 - 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".'
940 - 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.'
941 - TROLL_RETURNS: 'The troll deftly catches the axe, examines it carefully, and tosses it\nback, declaring, "Good workmanship, but it''s not valuable enough."'
942 - TROLL_SATISFIED: 'The troll catches your treasure and scurries away out of sight.'
943 - TROLL_BLOCKS: 'The troll refuses to let you cross.'
944 - BRIDGE_GONE: 'There is no longer any way across the chasm.'
945 - 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.'
946 - 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.'
947 - AXE_LOST: 'The axe misses and lands near the bear where you can''t get at it.'
948 - BEAR_HANDS: 'With what?  Your bare hands?  Against *HIS* bear hands??'
949 - BEAR_CONFUSED: 'The bear is confused; he only wants to be your friend.'
950 - ALREADY_DEAD: 'For crying out loud, the poor thing is already dead!'
951 - BEAR_TAMED: 'The bear eagerly wolfs down your food, after which he seems to calm\ndown considerably and even becomes rather friendly.'
952 - BEAR_CHAINED: 'The bear is still chained to the wall.'
953 - STILL_LOCKED: 'The chain is still locked.'
954 - CHAIN_UNLOCKED: 'The chain is now unlocked.'
955 - CHAIN_LOCKED: 'The chain is now locked.'
956 - NO_LOCKSITE: 'There is nothing here to which the chain can be locked.'
957 - NO_EDIBLES: 'There is nothing here to eat.'
958 - WANT_HINT: 'Do you want the hint?'
959 - MAZE_HELP: 'Do you need help getting out of the maze?'
960 - DROP_THINGS: 'You can make the passages look less alike by dropping things.'
961 - PLOVER_QUERY: 'Are you trying to explore beyond the plover room?'
962 - 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.'
963 - HELP_LEAVING: 'Do you need help getting out of here?'
964 - NOGO_WEST: 'Don''t go west.'
965 - TROLL_VICES: 'Gluttony is not one of the troll''s vices.  Avarice, however, is.'
966 - 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.'
967 - LAMP_OUT: 'Your lamp has run out of power.'
968 - PLEASE_ANSWER: 'Please answer the question.'
969 - 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.'
970 - GET_BATTERIES: 'Your lamp is getting dim.  You''d best go back for those batteries.'
971 - REPLACE_BATTERIES: 'Your lamp is getting dim.  I''m taking the liberty of replacing the\nbatteries.'
972 - MISSING_BATTERYIES: 'Your lamp is getting dim, and you''re out of spare batteries.  You''d\nbest start wrapping this up.'
973 - REMOVE_MESSAGE: 'You sift your fingers through the dust, but succeed only in\nobliterating the cryptic message.'
974 - OGRE_QUERY: 'Do you need help dealing with the ogre?'
975 - 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?'
976 - 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."'
977 - 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.'
978 - DONT_UNDERSTAND: 'I''m afraid I don''t understand.'
979 - HAND_PASSTHROUGH: 'Your hand passes through it as though it weren''t there.'
980 - BREAK_MIRROR: 'You strike the mirror a resounding blow, whereupon it shatters into a\nmyriad tiny fragments.'
981 - BREAK_VASE: 'You have taken the vase and hurled it delicately to the ground.'
982 - PROD_DWARF: 'You prod the nearest dwarf, who wakes up grumpily, takes one look at\nyou, curses, and grabs for his axe.'
983 - THIS_ACCEPTABLE: 'Is this acceptable?'
984 - 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.'
985 - OGRE_FULL: 'The ogre doesn''t appear to be hungry.'
986 - OGRE_DODGE: 'The ogre, who despite his bulk is quite agile, easily dodges your\nattack.  He seems almost amused by your puny effort.'
987 - 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.'
988 - 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.'
989 - FREE_FLY: 'The bird flies about agitatedly for a moment.'
990 - CAGE_FLY: 'The bird flies agitatedly about the cage.'
991 - 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.'
992 - URN_LIT: 'The urn is now lit.'
993 - URN_DARK: 'The urn is now dark.'
994 - WATER_URN: 'You empty the bottle into the urn, which promptly ejects the water\nwith uncanny accuracy, squirting you directly between the eyes.'
995 - OIL_URN: 'Your bottle is now empty and the urn is full of oil.'
996 - FULL_URN: 'The urn is already full of oil.'
997 - URN_NOPOUR: 'There''s no way to get the oil out of the urn.'
998 - URN_NOBUDGE: 'The urn is far too firmly embedded for your puny strength to budge it.'
999 - 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.'
1000 - DOUGHNUT_HOLES: 'I suppose you collect doughnut holes, too?'
1001 - GEM_FITS: 'The gem fits easily into the cavity.'
1002 - RUG_RISES: 'The persian rug stiffens and rises a foot or so off the ground.'
1003 - RUG_WIGGLES: 'The persian rug draped over your shoulder seems to wriggle for a\nmoment, but then subsides.'
1004 - RUG_SETTLES: 'The persian rug settles gently to the ground.'
1005 - RUG_HOVERS: 'The rug hovers stubbornly where it is.'
1006 - RUG_NOTHING1: 'The rug does not appear inclined to cooperate.'
1007 - RUG_NOTHING2: 'If you mean to use the persian rug, it does not appear inclined to\ncooperate.'
1008 - FLAP_ARMS: 'Though you flap your arms furiously, it is to no avail.'
1009 - 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.'
1010 - RUG_RETURNS: 'The rug ferries you back across the chasm.'
1011 - ALL_SILENT: 'All is silent.'
1012 - STREAM_GURGLES: 'The stream is gurgling placidly.'
1013 - WIND_WHISTLES: 'The wind whistles coldly past your ears.'
1014 - STREAM_SPLASHES: 'The stream splashes loudly into the pool.'
1015 - NO_MEANING: 'You are unable to make anything of the splashing noise.'
1016 - MURMURING_SNORING: 'You can hear the murmuring of the beanstalks and the snoring of the\ndwarves.'
1017 - SNAKES_HISSING: 'A loud hissing emanates from the snake pit.'
1018 - DULL_RUMBLING: 'The air is filled with a dull rumbling sound.'
1019 - LOUD_ROAR: 'The roar is quite loud here.'
1020 - TOTAL_ROAR: 'The roaring is so loud that it drowns out all other sound.'
1021 - 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.'
1022 - FEW_DROPS: 'There are only a few drops--not enough to carry.'
1023 - HEAD_BUZZES: 'Your head buzzes strangely for a moment.'
1024 - NOT_BRIGHT: '(Uh, y''know, that wasn''t very bright.)'
1025 - TOOK_LONG: 'It''s a pity you took so long about it.'
1026 - WONDERING_QUERY: 'Are you wondering what to do here?'
1027 - ADVANCED_SECTION: 'This section is quite advanced.  Find the cave first.'
1028 - UPSTREAM_DOWNSTREAM: 'Upstream or downstream?'
1029 - WIZARDS_NODISTURB: 'Wizards are not to be disturbed by such as you.'
1030 - FOREST_QUERY: 'Would you like to be shown out of the forest?'
1031 - GO_EAST: 'Go east ten times.  If that doesn''t get you out, then go south, then\nwest twice, then south.'
1032 - WATERS_CRASHING: 'The waters are crashing loudly against the shore.'
1033 - THROWN_KNIVES: '%d of them throw knives at you!'
1034 - MULTIPLE_HITS: '%d of them get you!'
1035 - ONE_HIT: 'One of them gets you!'
1036 - NONE_HIT: 'None of them hits you!'
1037 - DONT_KNOW: 'Sorry, I don''t know the word "%s".'
1038 - WHAT_DO: 'What do you want to do with the %L?'
1039 - NO_SEE: 'I see no %L here.'
1040 - DO_WHAT: '%C what?'
1041 - OKEY_DOKEY: 'Okay, "%s".'
1042 - GARNERED_POINTS: 'You have garnered %d out of a possible %d points, using %d turn%S.'
1043 - SUSPEND_WARNING: 'I can suspend your Adventure for you so that you can resume later, but\nit will cost you 5 points.'
1044 - HINT_COST: 'I am prepared to give you a hint, but it will cost you %d point%S.'
1045 - TOTAL_SCORE: 'You scored %d out of a possible %d, using %d turn%S.'
1046 - NEXT_HIGHER: 'To achieve the next higher rating, you need %d more point%S.'
1047 - NO_HIGHER: 'To achieve the next higher rating would be a neat trick!\nCongratulations!!'
1048 - OFF_SCALE: 'You just went off my scale!!'
1049 - RESUME_HELP: 'To resume your Adventure, start a new game and then say "RESUME".'
1050 - 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'
1051 - RESUME_ABANDON: 'To resume an earlier Adventure, you must abandon the current one.'
1052 - 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.'
1053 - 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.'
1054 - GUESS_AGAIN: 'Guess again.'
1055 - MISSING_ONE: 'You''re missing only one other treasure.  Do you need help finding it?'
1056 - NO_LOCATE: 'Once you''ve found all the other treasures, it is no longer possible to\nlocate the one you''re now missing.'
1057 - TWIST_TURN: 'Sorry, but the path twisted and turned so much that I can''t figure\nout which way to go to get back.'
1058 - 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.'
1059 - 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.'
1060 - CANNOT_CARRY7: !!null
1061   
1062 classes: 
1063 - threshold: 0
1064   message: !!null
1065 - threshold: 45
1066   message: 'You are obviously a rank amateur.  Better luck next time.'
1067 - threshold: 120
1068   message: 'Your score qualifies you as a novice class adventurer.'
1069 - threshold: 170
1070   message: 'You have achieved the rating: "Experienced Adventurer".'
1071 - threshold: 250
1072   message: 'You may now consider yourself a "Seasoned Adventurer".'
1073 - threshold: 320
1074   message: 'You have reached "Junior Master" status.'
1075 - threshold: 375
1076   message: 'Your score puts you in Master Adventurer Class C.'
1077 - threshold: 410
1078   message: 'Your score puts you in Master Adventurer Class B.'
1079 - threshold: 426
1080   message: 'Your score puts you in Master Adventurer Class A.'
1081 - threshold: 429
1082   message: 'All of Adventuredom gives tribute to you, Adventurer Grandmaster!'
1083 - threshold: 9999
1084   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.'
1085
1086 turn_thresholds:
1087 - threshold: 350
1088   point_loss: 2
1089   message: 'Tsk!  A wizard wouldn''t have to take 350 turns.  This is going to cost\nyou a couple of points.' 
1090 - threshold: 500
1091   point_loss: 3
1092   message: '500 turns?  That''s another few points you''ve lost.'  
1093 - threshold: 1000
1094   point_loss: 5
1095   message: 'Are you still at it?  Five points off for exceeding 1000 turns!'  
1096 - threshold: 2500
1097   point_loss: 10
1098   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.'
1099   
1100 object_descriptions: !!omap
1101 - OBJ_0:
1102     inventory: !!null
1103     longs: !!null
1104 - OBJ_1:
1105     inventory: 'Set of keys'
1106     longs:
1107     - 'There are some keys on the ground here.'
1108 - OBJ_2:
1109     inventory: 'Brass lantern'
1110     longs:
1111     - 'There is a shiny brass lamp nearby.'
1112     - 'There is a lamp shining nearby.'
1113 - OBJ_3:
1114     inventory: '*grate'
1115     longs:
1116     - 'The grate is locked.'
1117     - 'The grate is open.'
1118 - OBJ_4:
1119     inventory: 'Wicker cage'
1120     longs:
1121     - 'There is a small wicker cage discarded nearby.'
1122 - OBJ_5:
1123     inventory: 'Black rod'
1124     longs:
1125     - 'A three foot black rod with a rusty star on an end lies nearby.'
1126 - OBJ_6:
1127     inventory: 'Black rod'
1128     longs:
1129     - 'A three foot black rod with a rusty mark on an end lies nearby.'
1130 - OBJ_7:
1131     inventory: '*steps'
1132     longs:
1133     - 'Rough stone steps lead down the pit.'
1134     - 'Rough stone steps lead up the dome.'
1135 - OBJ_8:
1136     inventory: 'Little bird in cage'
1137     longs:
1138     - 'A cheerful little bird is sitting here singing.'
1139     - 'There is a little bird in the cage.'
1140     - 'A cheerful little bird is sitting here singing.'
1141     - 'The bird''s singing is quite melodious.'
1142     - 'The bird does not seem inclined to sing while in the cage.'
1143     - 'It almost seems as though the bird is trying to tell you something.'
1144     - 'To your surprise, you can understand the bird''s chirping; it is\nsinging about the joys of its forest home.'
1145     - 'The bird does not seem inclined to sing while in the cage.'
1146     - '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.'
1147 - OBJ_9:
1148     inventory: '*rusty door'
1149     longs:
1150     - 'The way north is barred by a massive, rusty, iron door.'
1151     - 'The way north leads through a massive, rusty, iron door.'
1152 - OBJ_10:
1153     inventory: 'Velvet pillow'
1154     longs:
1155     - 'A small velvet pillow lies on the floor.'
1156 - OBJ_11:
1157     inventory: '*snake'
1158     longs:
1159     - 'A huge green fierce snake bars the way!'
1160     - '' # chased away
1161     - 'The snake is hissing venomously.'
1162 - OBJ_12:
1163     inventory: '*fissure'
1164     longs:
1165     - ''
1166     - 'A crystal bridge now spans the fissure.'
1167     - 'The crystal bridge has vanished!'
1168 - OBJ_13:
1169     inventory: '*stone tablet'
1170     longs:
1171     - 'A massive stone tablet imbedded in the wall reads:\n"Congratulations on bringing light into the dark-room!"'
1172     - '"Congratulations on bringing light into the dark-room!"'
1173 - OBJ_14:
1174     inventory: 'Giant clam  >GRUNT!<'
1175     longs:
1176     - 'There is an enormous clam here with its shell tightly closed.'
1177     - 'The clam is as tight-mouthed as a, er, clam.'
1178 - OBJ_15:
1179     inventory: 'Giant oyster  >GROAN!<'
1180     longs:
1181     - 'There is an enormous oyster here with its shell tightly closed.'
1182     - 'Interesting.  There seems to be something written on the underside of\nthe oyster.'
1183     - 'Even though it''s an oyster, the critter''s as tight-mouthed as a clam.'
1184     - 'It says the same thing it did before.  Hm, maybe it''s a pun?'
1185 - OBJ_16:
1186     inventory: '"Spelunker Today"'
1187     longs:
1188     - 'There are a few recent issues of "Spelunker Today" magazine here.'
1189     - 'I''m afraid the magazine is written in dwarvish.  But pencilled on one\ncover you see, "Please leave the magazines at the construction site."'
1190 - OBJ_17:
1191     inventory: !!null
1192     longs: !!null
1193 - OBJ_18:
1194     inventory: !!null
1195     longs: !!null
1196 - OBJ_19:
1197     inventory: 'Tasty food'
1198     longs:
1199     - 'There is food here.'
1200 - OBJ_20:
1201     inventory: 'Small bottle'
1202     longs:
1203     - 'There is a bottle of water here.'
1204     - 'There is an empty bottle here.'
1205     - 'There is a bottle of oil here.'
1206 - OBJ_21:
1207     inventory: 'Water in the bottle'
1208     longs: !!null
1209 - OBJ_22:
1210     inventory: 'Oil in the bottle'
1211     longs: !!null
1212 - OBJ_23:
1213     inventory: '*mirror'
1214     longs: !!null
1215 - OBJ_24:
1216     inventory: '*plant'
1217     longs:
1218     - 'There is a tiny little plant in the pit, murmuring "water, water, ..."'
1219     - 'There is a 12-foot-tall beanstalk stretching up out of the pit,\nbellowing "WATER!! WATER!!"'
1220     - 'There is a gigantic beanstalk stretching all the way up to the hole.'
1221     - 'The plant spurts into furious growth for a few seconds.'
1222     - 'The plant grows explosively, almost filling the bottom of the pit.'
1223     - 'You''ve over-watered the plant!  It''s shriveling up!  And now . . .'
1224     - 'The plant continues to ask plaintively for water.'
1225     - 'The plant continues to demand water.'
1226     - 'The plant now maintains a contented silence.'
1227 - OBJ_25:
1228     inventory: '*phony plant' # seen in Twopit Room only when tall enough
1229     longs:
1230     - ''
1231     - 'The top of a 12-foot-tall beanstalk is poking out of the west pit.'
1232     - 'There is a huge beanstalk growing out of the west pit up to the hole.'
1233 - OBJ_26:
1234     inventory: '*stalactite'
1235     longs:
1236     - ''
1237 - OBJ_27:
1238     inventory: '*shadowy figure and/or window'
1239     longs:
1240     - 'The shadowy figure seems to be trying to attract your attention.'
1241 - OBJ_28:
1242     inventory: 'Dwarf''s axe'
1243     longs:
1244     - 'There is a little axe here.'
1245     - 'There is a little axe lying beside the bear.'
1246 - OBJ_29:
1247     inventory: '*cave drawings'
1248     longs: !!null
1249 - OBJ_30:
1250     inventory: '*pirate/genie'
1251     longs: !!null # never present
1252 - OBJ_31:
1253     inventory: '*dragon'
1254     longs:
1255     - 'A huge green fierce dragon bars the way!'
1256     - 'The blood-specked body of a huge green dead dragon lies to one side.'
1257     - 'The body of a huge green dead dragon is lying off to one side.'
1258     - 'Congratulations!  You have just vanquished a dragon with your bare\nhands!  (Unbelievable, isn''t it?)'
1259     - 'The dragon''s ominous hissing does not bode well for you.'
1260     - 'The dragon is, not surprisingly, silent.'
1261     - 'The dragon is, not surprisingly, silent.'
1262 - OBJ_32:
1263     inventory: '*chasm'
1264     longs:
1265     - 'A rickety wooden bridge extends across the chasm, vanishing into the\nmist.  A notice posted on the bridge reads, "Stop! Pay troll!"'
1266     - 'The wreckage of a bridge (and a dead bear) can be seen at the bottom\nof the chasm.'
1267 - OBJ_33:
1268     inventory: '*troll'
1269     longs:
1270     - 'A burly troll stands by the bridge and insists you throw him a\ntreasure before you may cross.'
1271     - 'The troll steps out from beneath the bridge and blocks your way.'
1272     - '' # chased away
1273     - 'The troll sounds quite adamant in his demand for a treasure.'
1274 - OBJ_34:
1275     inventory: '*phony troll'
1276     longs:
1277     - 'The troll is nowhere to be seen.'
1278 - OBJ_35:
1279     inventory: !!null # bear uses rtext 141
1280     longs:
1281     - 'There is a ferocious cave bear eying you from the far end of the room!'
1282     - 'There is a gentle cave bear sitting placidly in one corner.'
1283     - 'There is a contented-looking bear wandering about nearby.'
1284     - '' # dead
1285 - OBJ_36:
1286     inventory: '*message in second maze'
1287     longs:
1288     - '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."'
1289     - '"This is not the maze where the pirate leaves his treasure chest."'
1290 - OBJ_37:
1291     inventory: '*volcano and/or geyser'
1292     longs: !!null
1293 - OBJ_38:
1294     inventory: '*vending machine'
1295     longs:
1296     - 'There is a massive and somewhat battered vending machine here.  The\ninstructions on it read: "Drop coins here to receive fresh batteries."'
1297     - '"Drop coins here to receive fresh batteries."'
1298     - 'As you strike the vending machine, it pivots backward along with a\nsection of wall, revealing a dark passage leading south.'
1299     - 'There is a massive vending machine here, swung back to reveal a\nsouthward passage.'
1300     - '"Drop coins here to receive fresh batteries."'
1301     - 'The vending machine swings back to block the passage.'
1302 - OBJ_39:
1303     inventory: 'Batteries'
1304     longs:
1305     - 'There are fresh batteries here.'
1306     - 'Some worn-out batteries have been discarded nearby.'
1307 - OBJ_40:
1308     inventory: '*carpet and/or moss and/or curtains'
1309     longs: !!null
1310 - OBJ_41:
1311     inventory: '*ogre'
1312     longs:
1313     - 'A formidable ogre bars the northern exit.'
1314     - 'The ogre is apparently the strong, silent type.'
1315 - OBJ_42:
1316     inventory: '*urn'
1317     longs:
1318     - 'A small urn is embedded in the rock.'
1319     - 'A small urn full of oil is embedded in the rock.'
1320     - 'A small oil flame extrudes from an urn embedded in the rock.'
1321 - OBJ_43:
1322     inventory: '*cavity'
1323     longs:
1324     - '' # something in it
1325     - 'There is a small urn-shaped cavity in the rock.'
1326 - OBJ_44:
1327     inventory: '*blood'
1328     longs:
1329     - '' # described with dragon
1330 - OBJ_45:
1331     inventory: '*reservoir'
1332     longs:
1333     - ''
1334     - 'The waters have parted to form a narrow path across the reservoir.'
1335     - 'The waters crash together again.'
1336 - OBJ_46:
1337     inventory: 'Leporine appendage'
1338     longs:
1339     - 'Your keen eye spots a severed leporine appendage lying on the ground.'
1340 - OBJ_47:
1341     inventory: '*mud'
1342     longs:
1343     - ''
1344     - '"MAGIC WORD XYZZY"'
1345 - OBJ_48:
1346     inventory: '*note'
1347     longs:
1348     - ''
1349     - '"You won''t get it up the steps"'
1350 - OBJ_49:
1351     inventory: '*sign'
1352     longs:
1353     - ''
1354     - 'Cave under construction beyond this point.\n           Proceed at own risk.\n       [Witt Construction Company]'
1355     - '"Treasure Vault.  Keys in main office."'
1356 - OBJ_50:
1357     inventory: 'Large gold nugget'
1358     longs:
1359     - 'There is a large sparkling nugget of gold here!'
1360 - OBJ_51:
1361     inventory: 'Several diamonds'
1362     longs:
1363     - 'There are diamonds here!'
1364 - OBJ_52:
1365     inventory: 'Bars of silver'
1366     longs:
1367     - 'There are bars of silver here!'
1368 - OBJ_53:
1369     inventory: 'Precious jewelry'
1370     longs:
1371     - 'There is precious jewelry here!'
1372 - OBJ_54:
1373     inventory: 'Rare coins'
1374     longs:
1375     - 'There are many coins here!'
1376 - OBJ_55:
1377     inventory: 'Treasure chest'
1378     longs:
1379     - 'The pirate''s treasure chest is here!'
1380 - OBJ_56:
1381     inventory: 'Golden eggs'
1382     longs:
1383     - 'There is a large nest here, full of golden eggs!'
1384     - 'The nest of golden eggs has vanished!'
1385     - 'Done!'
1386 - OBJ_57:
1387     inventory: 'Jeweled trident'
1388     longs:
1389     - 'There is a jewel-encrusted trident here!'
1390 - OBJ_58:
1391     inventory: 'Ming vase'
1392     longs:
1393     - 'There is a delicate, precious, ming vase here!'
1394     - 'The vase is now resting, delicately, on a velvet pillow.'
1395     - 'The floor is littered with worthless shards of pottery.'
1396     - 'The ming vase drops with a delicate crash.'
1397 - OBJ_59:
1398     inventory: 'Egg-sized emerald'
1399     longs:
1400     - 'There is an emerald here the size of a plover''s egg!'
1401     - 'There is an emerald resting in a small cavity in the rock!'
1402 - OBJ_60:
1403     inventory: 'Platinum pyramid'
1404     longs:
1405     - 'There is a platinum pyramid here, 8 inches on a side!'
1406 - OBJ_61:
1407     inventory: 'Glistening pearl'
1408     longs:
1409     - 'Off to one side lies a glistening pearl!'
1410 - OBJ_62:
1411     inventory: 'Persian rug'
1412     longs:
1413     - 'There is a persian rug spread out on the floor!'
1414     - 'The dragon is sprawled out on a persian rug!!'
1415     - 'There is a persian rug here, hovering in mid-air!'
1416 - OBJ_63:
1417     inventory: 'Rare spices'
1418     longs:
1419     - 'There are rare spices here!'
1420 - OBJ_64:
1421     inventory: 'Golden chain'
1422     longs:
1423     - 'There is a golden chain lying in a heap on the floor!'
1424     - 'The bear is locked to the wall with a golden chain!'
1425     - 'There is a golden chain locked to the wall!'
1426 - OBJ_65:
1427     inventory: 'Giant ruby'
1428     longs:
1429     - 'There is an enormous ruby here!'
1430     - 'There is a ruby resting in a small cavity in the rock!'
1431 - OBJ_66:
1432     inventory: 'Jade necklace'
1433     longs:
1434     - 'A precious jade necklace has been dropped here!'
1435 - OBJ_67:
1436     inventory: 'Amber gemstone'
1437     longs:
1438     - 'There is a rare amber gemstone here!'
1439     - 'There is an amber gemstone resting in a small cavity in the rock!'
1440 - OBJ_68:
1441     inventory: 'Star sapphire'
1442     longs:
1443     - 'A brilliant blue star sapphire is here!'
1444     - 'There is a star sapphire resting in a small cavity in the rock!'
1445 - OBJ_69:
1446     inventory: 'Ebony statuette'
1447     longs:
1448     - 'There is a richly-carved ebony statuette here!'
1449 - OBJ_70:
1450     inventory: !!null
1451     longs: !!null
1452 - OBJ_71:
1453     inventory: !!null
1454     longs: !!null
1455 - OBJ_72:
1456     inventory: !!null
1457     longs: !!null
1458 - OBJ_73:
1459     inventory: !!null
1460     longs: !!null
1461 - OBJ_74:
1462     inventory: !!null
1463     longs: !!null
1464 - OBJ_75:
1465     inventory: !!null
1466     longs: !!null
1467 - OBJ_76:
1468     inventory: !!null
1469     longs: !!null
1470 - OBJ_77:
1471     inventory: !!null
1472     longs: !!null
1473 - OBJ_78:
1474     inventory: !!null
1475     longs: !!null
1476 - OBJ_79:
1477     inventory: !!null
1478     longs: !!null
1479 - OBJ_80:
1480     inventory: !!null
1481     longs: !!null
1482 - OBJ_81:
1483     inventory: !!null
1484     longs: !!null
1485 - OBJ_82:
1486     inventory: !!null
1487     longs: !!null
1488 - OBJ_83:
1489     inventory: !!null
1490     longs: !!null
1491 - OBJ_84:
1492     inventory: !!null
1493     longs: !!null
1494 - OBJ_85:
1495     inventory: !!null
1496     longs: !!null
1497 - OBJ_86:
1498     inventory: !!null
1499     longs: !!null
1500 - OBJ_87:
1501     inventory: !!null
1502     longs: !!null
1503 - OBJ_88:
1504     inventory: !!null
1505     longs: !!null
1506 - OBJ_89:
1507     inventory: !!null
1508     longs: !!null
1509 - OBJ_90:
1510     inventory: !!null
1511     longs: !!null
1512 - OBJ_91:
1513     inventory: !!null
1514     longs: !!null
1515 - OBJ_92:
1516     inventory: !!null
1517     longs: !!null
1518 - OBJ_93:
1519     inventory: !!null
1520     longs: !!null
1521 - OBJ_94:
1522     inventory: !!null
1523     longs: !!null
1524 - OBJ_95:
1525     inventory: !!null
1526     longs: !!null
1527 - OBJ_96:
1528     inventory: !!null
1529     longs: !!null
1530 - OBJ_97:
1531     inventory: !!null
1532     longs: !!null
1533 - OBJ_98:
1534     inventory: !!null
1535     longs: !!null
1536 - OBJ_99:
1537     inventory: !!null
1538     longs: !!null
1539 - OBJ_100:
1540     inventory: !!null
1541     longs: !!null
1542
1543 obituaries:
1544   - 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?'
1545     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....'
1546   - 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?'
1547     yes_response: 'Okay, now where did I put my orange smoke?....  >POOF!<\nEverything disappears in a dense cloud of orange smoke.'
1548   - 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?'
1549     yes_response: 'Okay, if you''re so smart, do it yourself!  I''m leaving!'