1 |
90 |
ja_rd |
/* adv_baremetal.c -- functions needed to run adventure on bare metal system.
|
2 |
|
|
*
|
3 |
|
|
* Includes a fake 'adventure.txt' file made up of an array of literal C
|
4 |
|
|
* strings, so the program can be run with no file system, plus an automated
|
5 |
|
|
* walkthrough and a few other support routines.
|
6 |
|
|
*/
|
7 |
|
|
#include <stdint.h>
|
8 |
|
|
#include <stdio.h>
|
9 |
|
|
|
10 |
|
|
#include "adv_baremetal.h"
|
11 |
|
|
|
12 |
|
|
extern const char *adventure_text[];
|
13 |
|
|
extern const char *walkthrough[];
|
14 |
|
|
|
15 |
|
|
/*-- Global data -------------------------------------------------------------*/
|
16 |
|
|
|
17 |
|
|
/* Fake heap */
|
18 |
|
|
#define HEAP_SIZE (64*1024)
|
19 |
|
|
uint32_t allocatable_space[HEAP_SIZE];
|
20 |
|
|
uint32_t alloc_ptr = 0;
|
21 |
|
|
|
22 |
|
|
/* Fake file system */
|
23 |
|
|
#define NUM_FILES (1)
|
24 |
|
|
MFILE files[NUM_FILES];
|
25 |
|
|
|
26 |
|
|
/* Whether or not to use the auto-walk */
|
27 |
|
|
uint32_t use_walkthrough = 1;
|
28 |
|
|
|
29 |
|
|
|
30 |
|
|
|
31 |
|
|
/*-- Global functions --------------------------------------------------------*/
|
32 |
|
|
|
33 |
|
|
/* pseudo-alloc: when called, will return a big chunk of memory. */
|
34 |
|
|
/* we expect to be called just once, and there's no way to free the chunk. */
|
35 |
|
|
void *alloc_mem(uint32_t num, uint32_t size){
|
36 |
|
|
/* meant to be called only once */
|
37 |
|
|
if(alloc_ptr>0){
|
38 |
177 |
ja_rd |
printf("alloc_mem called more than once!\n");
|
39 |
90 |
ja_rd |
}
|
40 |
|
|
if(size > (HEAP_SIZE/4)){
|
41 |
177 |
ja_rd |
printf("Allocation error!\n");
|
42 |
90 |
ja_rd |
}
|
43 |
|
|
alloc_ptr++;
|
44 |
|
|
return (void *)allocatable_space;
|
45 |
|
|
}
|
46 |
|
|
|
47 |
|
|
void exit(uint32_t n){
|
48 |
|
|
/*
|
49 |
177 |
ja_rd |
printf("Exit code %d\n", n);
|
50 |
90 |
ja_rd |
*/
|
51 |
|
|
while(1);
|
52 |
|
|
}
|
53 |
|
|
|
54 |
|
|
/* fake file open for adventure.txt */
|
55 |
|
|
MFILE * mopen(const char * filename, const char * mode){
|
56 |
|
|
uint32_t i;
|
57 |
|
|
|
58 |
|
|
/* We expect to be called in 'r' mode only */
|
59 |
|
|
|
60 |
|
|
/* FIXME should print error message if called with unexpected params */
|
61 |
|
|
if(mode==NULL){
|
62 |
|
|
return NULL;
|
63 |
|
|
}
|
64 |
|
|
|
65 |
|
|
if(mode[0]!='r'){
|
66 |
|
|
return NULL;
|
67 |
|
|
}
|
68 |
|
|
|
69 |
|
|
/* Get first free file structure and 'open' it */
|
70 |
|
|
for(i=0;i<NUM_FILES;i++){
|
71 |
|
|
if(!files[i].open){
|
72 |
|
|
files[i].open = 1;
|
73 |
|
|
files[i].line_ptr = 0;
|
74 |
|
|
|
75 |
|
|
return &(files[i]);
|
76 |
|
|
}
|
77 |
|
|
}
|
78 |
|
|
/* No free file structures remain (i.e. BUG!) */
|
79 |
|
|
return NULL;
|
80 |
|
|
}
|
81 |
|
|
|
82 |
|
|
/* fake gets, adapted for use with string array */
|
83 |
|
|
void mgets (char *str, int size, MFILE *stream){
|
84 |
|
|
uint32_t i=0;
|
85 |
|
|
char c;
|
86 |
|
|
|
87 |
|
|
while(i<size){
|
88 |
|
|
c = adventure_text[stream->line_ptr][i];
|
89 |
|
|
if(c=='\0'){
|
90 |
|
|
break;
|
91 |
|
|
}
|
92 |
|
|
else if(c=='\n'){
|
93 |
|
|
str[i] = adventure_text[stream->line_ptr][i];
|
94 |
|
|
i++;
|
95 |
|
|
break;
|
96 |
|
|
}
|
97 |
|
|
else{
|
98 |
|
|
str[i] = adventure_text[stream->line_ptr][i];
|
99 |
|
|
i++;
|
100 |
|
|
}
|
101 |
|
|
}
|
102 |
|
|
str[i] = '\0';
|
103 |
|
|
stream->line_ptr++;
|
104 |
|
|
}
|
105 |
|
|
|
106 |
|
|
/* Initialize all the fake file data structures */
|
107 |
|
|
void startup(void){
|
108 |
|
|
uint32_t i;
|
109 |
|
|
|
110 |
|
|
/* Initialize pseudo-file structures */
|
111 |
|
|
for(i=0;i<NUM_FILES;i++){
|
112 |
|
|
files[i].line_ptr = 0;
|
113 |
|
|
files[i].open = 0;
|
114 |
|
|
}
|
115 |
|
|
}
|
116 |
|
|
|
117 |
|
|
/* Ask user if (s)he wants to use the auto-walk */
|
118 |
|
|
void prompt_use_walkthrough(void){
|
119 |
|
|
char buffer[32];
|
120 |
177 |
ja_rd |
printf("Do you want to use the auto-walkthrough?\n");
|
121 |
90 |
ja_rd |
|
122 |
|
|
buffer[0] = '\0';
|
123 |
|
|
while(1){
|
124 |
|
|
gets(buffer);
|
125 |
|
|
if(buffer[0]=='n' || buffer[0]=='N'){
|
126 |
|
|
use_walkthrough = 0;
|
127 |
|
|
break;
|
128 |
|
|
}
|
129 |
|
|
else if(buffer[0]=='y' || buffer[0]=='Y'){
|
130 |
|
|
use_walkthrough = 1;
|
131 |
|
|
break;
|
132 |
|
|
}
|
133 |
|
|
else{
|
134 |
177 |
ja_rd |
printf("Please answer Y or N\n");
|
135 |
90 |
ja_rd |
}
|
136 |
|
|
}
|
137 |
|
|
|
138 |
|
|
|
139 |
|
|
}
|
140 |
|
|
|
141 |
|
|
/* Replacement for fDATETIME with no random element (or time) */
|
142 |
|
|
void fDATIME(long *X, long *Y){
|
143 |
|
|
/* This is only used as the seed of a random number generator. */
|
144 |
|
|
/* We will just return a fixed number thus removing randomness */
|
145 |
|
|
/* from the game. */
|
146 |
|
|
*X = 1024; /* Arbitrary numbers such that Y>X */
|
147 |
|
|
*Y = 1036;
|
148 |
|
|
}
|
149 |
|
|
|
150 |
|
|
/* get user command from stdio or from walkthrough file */
|
151 |
|
|
char *get_command(char *str){
|
152 |
|
|
static uint32_t step = 0;
|
153 |
|
|
uint32_t i;
|
154 |
|
|
|
155 |
|
|
if(use_walkthrough){
|
156 |
|
|
if(walkthrough[step][0] == '\0'){
|
157 |
177 |
ja_rd |
printf("<end of walkthrough, you're on your own>\n");
|
158 |
90 |
ja_rd |
use_walkthrough = 0;
|
159 |
|
|
}
|
160 |
|
|
for(i=0;walkthrough[step][i]!='\0';i++){
|
161 |
|
|
str[i] = walkthrough[step][i];
|
162 |
|
|
}
|
163 |
|
|
str[i] = '\0';
|
164 |
|
|
step++;
|
165 |
177 |
ja_rd |
printf(str);
|
166 |
|
|
printf("\n");
|
167 |
90 |
ja_rd |
return str;
|
168 |
|
|
}
|
169 |
|
|
else{
|
170 |
|
|
return gets(str);
|
171 |
|
|
}
|
172 |
|
|
}
|
173 |
|
|
|
174 |
|
|
/* Step-by-step walkthrough */
|
175 |
|
|
/* This was built by trial and error from a standard 350-point walkthrough,
|
176 |
|
|
with a few interpolations to account for some random elements: dwarves,
|
177 |
|
|
pirate and mazes.
|
178 |
|
|
Of course it relies on a fixed sequence of pseudorandom numbers so any
|
179 |
|
|
change to fDATETIME above will break this solution.
|
180 |
|
|
The solution is incomplete; it will take you to the gate house with just 259
|
181 |
|
|
points out of 430. */
|
182 |
|
|
const char *walkthrough[] = {
|
183 |
|
|
"N",
|
184 |
|
|
"E",
|
185 |
|
|
"GET BOTTLE",
|
186 |
|
|
"GET LAMP",
|
187 |
|
|
"GET FOOD",
|
188 |
|
|
"GET KEYS",
|
189 |
|
|
"W",
|
190 |
|
|
"S",
|
191 |
|
|
"S",
|
192 |
|
|
"S",
|
193 |
|
|
"UNLOCK GRATE",
|
194 |
|
|
"D",
|
195 |
|
|
"W",
|
196 |
|
|
"GET CAGE",
|
197 |
|
|
"W",
|
198 |
|
|
"LIGHT LAMP",
|
199 |
|
|
|
200 |
|
|
/* Now in Debris room / Xyzzy room.*/
|
201 |
|
|
/* Don't get rod now; it's trouble, and not needed yet/ever.*/
|
202 |
|
|
|
203 |
|
|
"W",
|
204 |
|
|
"W",
|
205 |
|
|
"GET BIRD",
|
206 |
|
|
"W",
|
207 |
|
|
"D",
|
208 |
|
|
|
209 |
|
|
/* In Hall of Mists.*/
|
210 |
|
|
/* Advent1.sav" */
|
211 |
|
|
|
212 |
|
|
"S",
|
213 |
|
|
"GET NUGGET",
|
214 |
|
|
"N",
|
215 |
|
|
"N",
|
216 |
|
|
|
217 |
|
|
/* Hall of Mountain King, where Snake starts.*/
|
218 |
|
|
"DROP BIRD",
|
219 |
|
|
"GET BIRD",
|
220 |
|
|
"N",
|
221 |
|
|
|
222 |
|
|
/* We'll leave keys in Low N/S Passage */
|
223 |
|
|
"DROP KEYS",
|
224 |
|
|
"GET SILVER",
|
225 |
|
|
"N",
|
226 |
|
|
|
227 |
|
|
/* Now at "Y2".*/
|
228 |
|
|
"PLUGH",
|
229 |
|
|
|
230 |
|
|
|
231 |
|
|
/* Drop. Cage & Food give no points, and we'll need the food later,*/
|
232 |
|
|
/* but right now we need space to carry stuff. */
|
233 |
|
|
/* We'll bring bottle to feed plant */
|
234 |
|
|
"DROP SILVER",
|
235 |
|
|
"DROP NUGGET",
|
236 |
|
|
"DROP CAGE",
|
237 |
|
|
"DROP FOOD",
|
238 |
|
|
"PLUGH",
|
239 |
|
|
|
240 |
|
|
/* Advent2.sav" */
|
241 |
|
|
/* Get rug from dragon, ming vase, and its required pillow.*/
|
242 |
|
|
"S",
|
243 |
|
|
"S",
|
244 |
|
|
|
245 |
|
|
/* At Hall of Mountain King; now go to secret area with dragon.*/
|
246 |
|
|
"SW",
|
247 |
|
|
"W",
|
248 |
|
|
"KILL DRAGON",
|
249 |
|
|
/* With bare hands?*/
|
250 |
|
|
"YES",
|
251 |
|
|
/* We did it!*/
|
252 |
|
|
"GET RUG",
|
253 |
|
|
"E",
|
254 |
|
|
"D",
|
255 |
|
|
"N",
|
256 |
|
|
"N",
|
257 |
|
|
|
258 |
|
|
/* Swiss Cheese room. Let's start watering the plant.*/
|
259 |
|
|
"W",
|
260 |
|
|
"W",
|
261 |
|
|
"D",
|
262 |
|
|
|
263 |
|
|
/* Advent3" */
|
264 |
|
|
"POUR WATER",
|
265 |
|
|
/* We'll need to get more water, but there's some in the wellhouse.*/
|
266 |
|
|
"U",
|
267 |
|
|
"E",
|
268 |
|
|
"E",
|
269 |
|
|
|
270 |
|
|
/* Back to Swiss Cheese room.*/
|
271 |
|
|
/* May need to go NW more than once to enter Oriental Room:*/
|
272 |
|
|
"NW",
|
273 |
|
|
|
274 |
|
|
/* In Oriental room. Don't get vase yet; we need to view the Plover room.*/
|
275 |
|
|
"N",
|
276 |
|
|
"W",
|
277 |
|
|
|
278 |
|
|
/* Now in Alcove.*/
|
279 |
|
|
|
280 |
|
|
"DROP LANTERN",
|
281 |
|
|
"DROP BOTTLE",
|
282 |
|
|
"DROP RUG",
|
283 |
|
|
"E",
|
284 |
|
|
"GET EMERALD",
|
285 |
|
|
"W",
|
286 |
|
|
"GET LANTERN",
|
287 |
|
|
"GET RUG",
|
288 |
|
|
"GET BOTTLE",
|
289 |
|
|
"NW",
|
290 |
|
|
"S",
|
291 |
|
|
|
292 |
|
|
/* Back in Oriental room; now get vase.*/
|
293 |
|
|
"GET VASE",
|
294 |
|
|
"SE",
|
295 |
|
|
|
296 |
|
|
/* Now get pillow, else we can't drop vase.*/
|
297 |
|
|
"E",
|
298 |
|
|
"GET PILLOW",
|
299 |
|
|
"W",
|
300 |
|
|
"GET AXE",
|
301 |
|
|
"NE",
|
302 |
|
|
"THROW AXE",
|
303 |
|
|
"GET AXE",
|
304 |
|
|
"THROW AXE",
|
305 |
|
|
"GET AXE",
|
306 |
|
|
|
307 |
|
|
|
308 |
|
|
/* Bedquilt.*/
|
309 |
|
|
"E",
|
310 |
|
|
"U",
|
311 |
|
|
"E",
|
312 |
|
|
|
313 |
|
|
/* Save here Advent4.*/
|
314 |
|
|
"U",
|
315 |
|
|
"N",
|
316 |
|
|
"PLUGH",
|
317 |
|
|
|
318 |
|
|
"DROP PILLOW",
|
319 |
|
|
"DROP RUG",
|
320 |
|
|
"DROP VASE",
|
321 |
|
|
"DROP EMERALD",
|
322 |
|
|
|
323 |
|
|
"FILL BOTTLE",
|
324 |
|
|
|
325 |
|
|
|
326 |
|
|
/* Get the pyramid.*/
|
327 |
|
|
"GET FOOD",
|
328 |
|
|
"PLUGH",
|
329 |
|
|
|
330 |
|
|
/* Advent5.*/
|
331 |
|
|
"PLOVER",
|
332 |
|
|
"NE",
|
333 |
|
|
"GET PYRAMID",
|
334 |
|
|
"S",
|
335 |
|
|
"PLOVER",
|
336 |
|
|
"PLUGH",
|
337 |
|
|
"DROP PYRAMID",
|
338 |
|
|
"PLUGH",
|
339 |
|
|
|
340 |
|
|
/* Deal with troll/bear */
|
341 |
|
|
"S",
|
342 |
|
|
"GET KEYS",
|
343 |
|
|
"D",
|
344 |
|
|
"W",
|
345 |
|
|
"D",
|
346 |
|
|
"W",
|
347 |
|
|
|
348 |
|
|
/* Now at Bedquilt */
|
349 |
|
|
"W",
|
350 |
|
|
"W",
|
351 |
|
|
"W",
|
352 |
|
|
"D",
|
353 |
|
|
"POUR WATER",
|
354 |
|
|
/* Get ready for door, later.*/
|
355 |
|
|
"U",
|
356 |
|
|
"E",
|
357 |
|
|
"D",
|
358 |
|
|
/* This fills the bottle with the oil here, which we need for the door.*/
|
359 |
|
|
"FILL BOTTLE",
|
360 |
|
|
"U",
|
361 |
|
|
"W",
|
362 |
|
|
"D",
|
363 |
|
|
/* We're back..*/
|
364 |
|
|
"CLIMB BEANSTALK",
|
365 |
|
|
"W",
|
366 |
|
|
"GET EGGS",
|
367 |
|
|
"N",
|
368 |
|
|
"OIL DOOR",
|
369 |
|
|
"N",
|
370 |
|
|
/* Advent6 */
|
371 |
|
|
"GET TRIDENT",
|
372 |
|
|
"W",
|
373 |
|
|
"D",
|
374 |
|
|
/* Large Low room - temporarily drop this.*/
|
375 |
|
|
"DROP TRIDENT",
|
376 |
|
|
"SW",
|
377 |
|
|
"U",
|
378 |
|
|
"NE",
|
379 |
|
|
/* Advent7" */
|
380 |
|
|
/* We give eggs to troll, because we can make them magically reappear later.*/
|
381 |
|
|
"THROW EGGS",
|
382 |
|
|
"NE",
|
383 |
|
|
"NE",
|
384 |
|
|
"E",
|
385 |
|
|
"D",
|
386 |
|
|
"S",
|
387 |
|
|
"E",
|
388 |
|
|
/* In Barren Room - get it?*/
|
389 |
|
|
"THROW FOOD",
|
390 |
|
|
"UNLOCK CHAIN",
|
391 |
|
|
"GET BEAR",
|
392 |
|
|
"GET CHAIN",
|
393 |
|
|
/* Now bring out */
|
394 |
|
|
"W",
|
395 |
|
|
"W",
|
396 |
|
|
"N",
|
397 |
|
|
"NE",
|
398 |
|
|
"E",
|
399 |
|
|
"GET SPICES",
|
400 |
|
|
"W",
|
401 |
|
|
"S",
|
402 |
|
|
"W",
|
403 |
|
|
"W",
|
404 |
|
|
/* On NE Side of Chasm */
|
405 |
|
|
"SW",
|
406 |
|
|
"DROP BEAR",
|
407 |
|
|
"SW",
|
408 |
|
|
"SW",
|
409 |
|
|
"D",
|
410 |
|
|
"GET TRIDENT",
|
411 |
|
|
"SE",
|
412 |
|
|
/* Now at Oriental Room */
|
413 |
|
|
"SE",
|
414 |
|
|
"NE",
|
415 |
|
|
"E",
|
416 |
|
|
/* At complex junction. Drop keys, no longer needed */
|
417 |
|
|
"DROP KEYS",
|
418 |
|
|
#if 0 /* SKIP magazine and pearl, I was unable to get out of the maze... */
|
419 |
|
|
|
420 |
|
|
/* Get the magazine for that last extra point */
|
421 |
|
|
"E",
|
422 |
|
|
"GET MAGAZINE",
|
423 |
|
|
"E",
|
424 |
|
|
"DROP MAGAZINE",
|
425 |
|
|
/* Now we roam aimlessly until we get out of Witt's End */
|
426 |
|
|
"N",
|
427 |
|
|
"N",
|
428 |
|
|
"N",
|
429 |
|
|
"N",
|
430 |
|
|
"N",
|
431 |
|
|
"N",
|
432 |
|
|
"N",
|
433 |
|
|
/* Back to Anteroom */
|
434 |
|
|
/* ...part of walkthrough missing, I got lost in the maze... */
|
435 |
|
|
#endif
|
436 |
|
|
|
437 |
|
|
/* Back at Complex Junction again! **/
|
438 |
|
|
"U",
|
439 |
|
|
"E",
|
440 |
|
|
"U",
|
441 |
|
|
"N",
|
442 |
|
|
"PLUGH",
|
443 |
|
|
"DROP TRIDENT",
|
444 |
|
|
"DROP CHAIN",
|
445 |
|
|
"DROP SPICES",
|
446 |
|
|
/*"DROP PEARL", */
|
447 |
|
|
/* Back for the eggs. */
|
448 |
|
|
"PLUGH",
|
449 |
|
|
"S",
|
450 |
|
|
"D",
|
451 |
|
|
"W",
|
452 |
|
|
"D",
|
453 |
|
|
"W",
|
454 |
|
|
"W",
|
455 |
|
|
/* Swiss cheese room */
|
456 |
|
|
"W",
|
457 |
|
|
"W",
|
458 |
|
|
"D",
|
459 |
|
|
"CLIMB",
|
460 |
|
|
"W",
|
461 |
|
|
"FEE",
|
462 |
|
|
"FIE",
|
463 |
|
|
"FOE",
|
464 |
|
|
"FOO",
|
465 |
|
|
"GET EGGS",
|
466 |
|
|
"S",
|
467 |
|
|
"E",
|
468 |
|
|
"U",
|
469 |
|
|
"E",
|
470 |
|
|
"E",
|
471 |
|
|
/* Swiss cheese room */
|
472 |
|
|
"NE",
|
473 |
|
|
/* Bedquilt */
|
474 |
|
|
"E",
|
475 |
|
|
"U",
|
476 |
|
|
"E",
|
477 |
|
|
"U",
|
478 |
|
|
"N",
|
479 |
|
|
"PLUGH",
|
480 |
|
|
"DROP EGGS",
|
481 |
|
|
/* Get Jewelry, coins, diamond */
|
482 |
|
|
"PLUGH",
|
483 |
|
|
"S",
|
484 |
|
|
"S",
|
485 |
|
|
"S",
|
486 |
|
|
"GET JEWELRY",
|
487 |
|
|
"N",
|
488 |
|
|
"W",
|
489 |
|
|
"GET COINS",
|
490 |
|
|
"W",
|
491 |
|
|
"W",
|
492 |
|
|
"E",
|
493 |
|
|
"E",
|
494 |
|
|
"GET DIAMONDS",
|
495 |
|
|
"N",
|
496 |
|
|
"W",
|
497 |
|
|
"N",
|
498 |
|
|
"E",
|
499 |
|
|
/* West Side Chamber */
|
500 |
|
|
"E",
|
501 |
|
|
"N",
|
502 |
|
|
"N",
|
503 |
|
|
/* At this point the pirate will attack and steal all our treasure. */
|
504 |
|
|
/* We need to go after him. */
|
505 |
|
|
"S",
|
506 |
|
|
"S",
|
507 |
|
|
"W",
|
508 |
|
|
"W",
|
509 |
|
|
"W",
|
510 |
|
|
"E",
|
511 |
|
|
/* West End of Hall of Mists, about to enter maze "all alike": */
|
512 |
|
|
"S",
|
513 |
|
|
"E",
|
514 |
|
|
/* We'll have to kill a few dwarves along the way */
|
515 |
|
|
"S",
|
516 |
|
|
"THROW AXE",
|
517 |
|
|
"GET AXE",
|
518 |
|
|
/*"S",*/
|
519 |
|
|
"THROW AXE",
|
520 |
|
|
"GET AXE",
|
521 |
|
|
"S",
|
522 |
|
|
"S",
|
523 |
|
|
"N",
|
524 |
|
|
"E",
|
525 |
|
|
"E",
|
526 |
|
|
"THROW AXE",
|
527 |
|
|
"GET AXE",
|
528 |
|
|
"NW",
|
529 |
|
|
"GET DIAMONDS",
|
530 |
|
|
"GET COINS",
|
531 |
|
|
"GET JEWELRY",
|
532 |
|
|
"GET CHEST",
|
533 |
|
|
"THROW AXE",
|
534 |
|
|
"GET AXE",
|
535 |
|
|
"SE",
|
536 |
|
|
"N",
|
537 |
|
|
"D",
|
538 |
|
|
/* In bird chamber. */
|
539 |
|
|
"E",
|
540 |
|
|
"E",
|
541 |
|
|
"XYZZY",
|
542 |
|
|
"DROP DIAMONDS",
|
543 |
|
|
"DROP COINS",
|
544 |
|
|
"DROP JEWELRY",
|
545 |
|
|
"DROP CHEST",
|
546 |
|
|
"SCORE",
|
547 |
|
|
|
548 |
|
|
|
549 |
|
|
""
|
550 |
|
|
};
|
551 |
|
|
|
552 |
|
|
/* The whole adventure text file, turned into a C constant table */
|
553 |
|
|
const char *adventure_text[] = {
|
554 |
|
|
"1",
|
555 |
|
|
"1 You are standing at the end of a road before a small brick building.",
|
556 |
|
|
"1 Around you is a forest. A small stream flows out of the building and",
|
557 |
|
|
"1 down a gully.",
|
558 |
|
|
"2 You have walked up a hill, still in the forest. The road slopes back",
|
559 |
|
|
"2 down the other side of the hill. There is a building in the distance.",
|
560 |
|
|
"3 You are inside a building, a well house for a large spring.",
|
561 |
|
|
"4 You are in a valley in the forest beside a stream tumbling along a",
|
562 |
|
|
"4 rocky bed.",
|
563 |
|
|
"5 The road, which approaches from the east, ends here amid the trees.",
|
564 |
|
|
"6 The forest thins out here to reveal a steep cliff. There is no way",
|
565 |
|
|
"6 down, but a small ledge can be seen to the west across the chasm.",
|
566 |
|
|
"7 At your feet all the water of the stream splashes into a 2-inch slit",
|
567 |
|
|
"7 in the rock. Downstream the streambed is bare rock.",
|
568 |
|
|
"8 You are in a 20-foot depression floored with bare dirt. Set into the",
|
569 |
|
|
"8 dirt is a strong steel grate mounted in concrete. A dry streambed",
|
570 |
|
|
"8 leads into the depression.",
|
571 |
|
|
"9 You are in a small chamber beneath a 3x3 steel grate to the surface.",
|
572 |
|
|
"9 A low crawl over cobbles leads inward to the west.",
|
573 |
|
|
"10 You are crawling over cobbles in a low passage. There is a dim light",
|
574 |
|
|
"10 at the east end of the passage.",
|
575 |
|
|
"11 You are in a debris room filled with stuff washed in from the surface.",
|
576 |
|
|
"11 A low wide passage with cobbles becomes plugged with mud and debris",
|
577 |
|
|
"11 here, but an awkward canyon leads upward and west. In the mud someone",
|
578 |
|
|
"11 has scrawled, 'MAGIC WORD XYZZY'.",
|
579 |
|
|
"12 You are in an awkward sloping east/west canyon.",
|
580 |
|
|
"13 You are in a splendid chamber thirty feet high. The walls are frozen",
|
581 |
|
|
"13 rivers of orange stone. An awkward canyon and a good passage exit",
|
582 |
|
|
"13 from east and west sides of the chamber.",
|
583 |
|
|
"14 At your feet is a small pit breathing traces of white mist. An east",
|
584 |
|
|
"14 passage ends here except for a small crack leading on.",
|
585 |
|
|
"15 You are at one end of a vast hall stretching forward out of sight to",
|
586 |
|
|
"15 the west. There are openings to either side. Nearby, a wide stone",
|
587 |
|
|
"15 staircase leads downward. The hall is filled with wisps of white mist",
|
588 |
|
|
"15 swaying to and fro almost as if alive. A cold wind blows up the",
|
589 |
|
|
"15 staircase. There is a passage at the top of a dome behind you.",
|
590 |
|
|
"16 The crack is far too small for you to follow. At its widest it is",
|
591 |
|
|
"16 barely wide enough to admit your foot.",
|
592 |
|
|
"17 You are on the east bank of a fissure slicing clear across the hall.",
|
593 |
|
|
"17 The mist is quite thick here, and the fissure is too wide to jump.",
|
594 |
|
|
"18 This is a low room with a crude note on the wall. The note says,",
|
595 |
|
|
"18 'You won't get it up the steps'.",
|
596 |
|
|
"19 You are in the Hall of the Mountain King, with passages off in all",
|
597 |
|
|
"19 directions.",
|
598 |
|
|
"20 You are at the bottom of the pit with a broken neck.",
|
599 |
|
|
"21 You didn't make it.",
|
600 |
|
|
"22 The dome is unclimbable.",
|
601 |
|
|
"23 You are at the west end of the Twopit Room. There is a large hole in",
|
602 |
|
|
"23 the wall above the pit at this end of the room.",
|
603 |
|
|
"24 You are at the bottom of the eastern pit in the Twopit Room. There is",
|
604 |
|
|
"24 a small pool of oil in one corner of the pit.",
|
605 |
|
|
"25 You are at the bottom of the western pit in the Twopit Room. There is",
|
606 |
|
|
"25 a large hole in the wall about 25 feet above you.",
|
607 |
|
|
"26 You clamber up the plant and scurry through the hole at the top.",
|
608 |
|
|
"27 You are on the west side of the fissure in the Hall of Mists.",
|
609 |
|
|
"28 You are in a low n/s passage at a hole in the floor. The hole goes",
|
610 |
|
|
"28 down to an e/w passage.",
|
611 |
|
|
"29 You are in the south side chamber.",
|
612 |
|
|
"30 You are in the west side chamber of the Hall of the Mountain King.",
|
613 |
|
|
"30 A passage continues west and up here.",
|
614 |
|
|
"31 %!",
|
615 |
|
|
"32 You can't get by the snake.",
|
616 |
|
|
"33 You are in a large room, with a passage to the south, a passage to the",
|
617 |
|
|
"33 west, and a wall of broken rock to the east. There is a large 'Y2' on",
|
618 |
|
|
"33 a rock in the room's center.",
|
619 |
|
|
"34 You are in a jumble of rock, with cracks everywhere.",
|
620 |
|
|
"35 You're at a low window overlooking a huge pit, which extends up out of",
|
621 |
|
|
"35 sight. A floor is indistinctly visible over 50 feet below. Traces of",
|
622 |
|
|
"35 white mist cover the floor of the pit, becoming thicker to the right.",
|
623 |
|
|
"35 Marks in the dust around the window would seem to indicate that",
|
624 |
|
|
"35 someone has been here recently. Directly across the pit from you and",
|
625 |
|
|
"35 25 feet away there is a similar window looking into a lighted room. A",
|
626 |
|
|
"35 shadowy figure can be seen there peering back at you.",
|
627 |
|
|
"36 You are in a dirty broken passage. To the east is a crawl. To the",
|
628 |
|
|
"36 west is a large passage. Above you is a hole to another passage.",
|
629 |
|
|
"37 You are on the brink of a small clean climbable pit. A crawl leads",
|
630 |
|
|
"37 west.",
|
631 |
|
|
"38 You are in the bottom of a small pit with a little stream, which",
|
632 |
|
|
"38 enters and exits through tiny slits.",
|
633 |
|
|
"39 You are in a large room full of dusty rocks. There is a big hole in",
|
634 |
|
|
"39 the floor. There are cracks everywhere, and a passage leading east.",
|
635 |
|
|
"40 You have crawled through a very low wide passage parallel to and north",
|
636 |
|
|
"40 of the Hall of Mists.",
|
637 |
|
|
"41 You are at the west end of the Hall of Mists. A low wide crawl",
|
638 |
|
|
"41 continues west and another goes north. To the south is a little",
|
639 |
|
|
"41 passage 6 feet off the floor.",
|
640 |
|
|
"42 You are in a maze of twisty little passages, all alike.",
|
641 |
|
|
"43 You are in a maze of twisty little passages, all alike.",
|
642 |
|
|
"44 You are in a maze of twisty little passages, all alike.",
|
643 |
|
|
"45 You are in a maze of twisty little passages, all alike.",
|
644 |
|
|
"46 Dead end",
|
645 |
|
|
"47 Dead end",
|
646 |
|
|
"48 Dead end",
|
647 |
|
|
"49 You are in a maze of twisty little passages, all alike.",
|
648 |
|
|
"50 You are in a maze of twisty little passages, all alike.",
|
649 |
|
|
"51 You are in a maze of twisty little passages, all alike.",
|
650 |
|
|
"52 You are in a maze of twisty little passages, all alike.",
|
651 |
|
|
"53 You are in a maze of twisty little passages, all alike.",
|
652 |
|
|
"54 Dead end",
|
653 |
|
|
"55 You are in a maze of twisty little passages, all alike.",
|
654 |
|
|
"56 Dead end",
|
655 |
|
|
"57 You are on the brink of a thirty foot pit with a massive orange column",
|
656 |
|
|
"57 down one wall. You could climb down here but you could not get back",
|
657 |
|
|
"57 up. The maze continues at this level.",
|
658 |
|
|
"58 Dead end",
|
659 |
|
|
"59 You have crawled through a very low wide passage parallel to and north",
|
660 |
|
|
"59 of the Hall of Mists.",
|
661 |
|
|
"60 You are at the east end of a very long hall apparently without side",
|
662 |
|
|
"60 chambers. To the east a low wide crawl slants up. To the north a",
|
663 |
|
|
"60 round two foot hole slants down.",
|
664 |
|
|
"61 You are at the west end of a very long featureless hall. The hall",
|
665 |
|
|
"61 joins up with a narrow north/south passage.",
|
666 |
|
|
"62 You are at a crossover of a high n/s passage and a low e/w one.",
|
667 |
|
|
"63 Dead end",
|
668 |
|
|
"64 You are at a complex junction. A low hands and knees passage from the",
|
669 |
|
|
"64 north joins a higher crawl from the east to make a walking passage",
|
670 |
|
|
"64 going west. There is also a large room above. The air is damp here.",
|
671 |
|
|
"65 You are in Bedquilt, a long east/west passage with holes everywhere.",
|
672 |
|
|
"65 To explore at random select north, south, up, or down.",
|
673 |
|
|
"66 You are in a room whose walls resemble swiss cheese. Obvious passages",
|
674 |
|
|
"66 go west, east, ne, and nw. Part of the room is occupied by a large",
|
675 |
|
|
"66 bedrock block.",
|
676 |
|
|
"67 You are at the east end of the Twopit Room. The floor here is",
|
677 |
|
|
"67 littered with thin rock slabs, which make it easy to descend the pits.",
|
678 |
|
|
"67 There is a path here bypassing the pits to connect passages from east",
|
679 |
|
|
"67 and west. There are holes all over, but the only big one is on the",
|
680 |
|
|
"67 wall directly over the west pit where you can't get to it.",
|
681 |
|
|
"68 You are in a large low circular chamber whose floor is an immense slab",
|
682 |
|
|
"68 fallen from the ceiling (Slab Room). East and west there once were",
|
683 |
|
|
"68 large passages, but they are now filled with boulders. Low small",
|
684 |
|
|
"68 passages go north and south, and the south one quickly bends west",
|
685 |
|
|
"68 around the boulders.",
|
686 |
|
|
"69 You are in a secret n/s canyon above a large room.",
|
687 |
|
|
"70 You are in a secret n/s canyon above a sizable passage.",
|
688 |
|
|
"71 You are in a secret canyon at a junction of three canyons, bearing",
|
689 |
|
|
"71 north, south, and se. The north one is as tall as the other two",
|
690 |
|
|
"71 combined.",
|
691 |
|
|
"72 You are in a large low room. Crawls lead north, se, and sw.",
|
692 |
|
|
"73 Dead end crawl.",
|
693 |
|
|
"74 You are in a secret canyon which here runs e/w. It crosses over a",
|
694 |
|
|
"74 very tight canyon 15 feet below. If you go down you may not be able",
|
695 |
|
|
"74 to get back up.",
|
696 |
|
|
"75 You are at a wide place in a very tight n/s canyon.",
|
697 |
|
|
"76 The canyon here becomes too tight to go further south.",
|
698 |
|
|
"77 You are in a tall e/w canyon. A low tight crawl goes 3 feet north and",
|
699 |
|
|
"77 seems to open up.",
|
700 |
|
|
"78 The canyon runs into a mass of boulders -- dead end.",
|
701 |
|
|
"79 The stream flows out through a pair of 1 foot diameter sewer pipes.",
|
702 |
|
|
"79 It would be advisable to use the exit.",
|
703 |
|
|
"80 You are in a maze of twisty little passages, all alike.",
|
704 |
|
|
"81 Dead end",
|
705 |
|
|
"82 Dead end",
|
706 |
|
|
"83 You are in a maze of twisty little passages, all alike.",
|
707 |
|
|
"84 You are in a maze of twisty little passages, all alike.",
|
708 |
|
|
"85 Dead end",
|
709 |
|
|
"86 Dead end",
|
710 |
|
|
"87 You are in a maze of twisty little passages, all alike.",
|
711 |
|
|
"88 You are in a long, narrow corridor stretching out of sight to the",
|
712 |
|
|
"88 west. At the eastern end is a hole through which you can see a",
|
713 |
|
|
"88 profusion of leaves.",
|
714 |
|
|
"89 There is nothing here to climb. Use 'up' or 'out' to leave the pit.",
|
715 |
|
|
"90 You have climbed up the plant and out of the pit.",
|
716 |
|
|
"91 You are at the top of a steep incline above a large room. You could",
|
717 |
|
|
"91 climb down here, but you would not be able to climb up. There is a",
|
718 |
|
|
"91 passage leading back to the north.",
|
719 |
|
|
"92 You are in the Giant Room. The ceiling here is too high up for your",
|
720 |
|
|
"92 lamp to show it. Cavernous passages lead east, north, and south. On",
|
721 |
|
|
"92 the west wall is scrawled the inscription, 'FEE FIE FOE FOO' [sic].",
|
722 |
|
|
"93 The passage here is blocked by a recent cave-in.",
|
723 |
|
|
"94 You are at one end of an immense north/south passage.",
|
724 |
|
|
"95 You are in a magnificent cavern with a rushing stream, which cascades",
|
725 |
|
|
"95 over a sparkling waterfall into a roaring whirlpool which disappears",
|
726 |
|
|
"95 through a hole in the floor. Passages exit to the south and west.",
|
727 |
|
|
"96 You are in the Soft Room. The walls are covered with heavy curtains,",
|
728 |
|
|
"96 the floor with a thick pile carpet. Moss covers the ceiling.",
|
729 |
|
|
"97 This is the Oriental Room. Ancient oriental cave drawings cover the",
|
730 |
|
|
"97 walls. A gently sloping passage leads upward to the north, another",
|
731 |
|
|
"97 passage leads se, and a hands and knees crawl leads west.",
|
732 |
|
|
"98 You are following a wide path around the outer edge of a large cavern.",
|
733 |
|
|
"98 Far below, through a heavy white mist, strange splashing noises can be",
|
734 |
|
|
"98 heard. The mist rises up through a fissure in the ceiling. The path",
|
735 |
|
|
"98 exits to the south and west.",
|
736 |
|
|
"99 You are in an alcove. A small nw path seems to widen after a short",
|
737 |
|
|
"99 distance. An extremely tight tunnel leads east. It looks like a very",
|
738 |
|
|
"99 tight squeeze. An eerie light can be seen at the other end.",
|
739 |
|
|
"100 You're in a small chamber lit by an eerie green light. An extremely",
|
740 |
|
|
"100 narrow tunnel exits to the west. A dark corridor leads ne.",
|
741 |
|
|
"101 You're in the dark-room. A corridor leading south is the only exit.",
|
742 |
|
|
"102 You are in an arched hall. A coral passage once continued up and east",
|
743 |
|
|
"102 from here, but is now blocked by debris. The air smells of sea water.",
|
744 |
|
|
"103 You're in a large room carved out of sedimentary rock. The floor and",
|
745 |
|
|
"103 walls are littered with bits of shells imbedded in the stone. A",
|
746 |
|
|
"103 shallow passage proceeds downward, and a somewhat steeper one leads",
|
747 |
|
|
"103 up. A low hands and knees passage enters from the south.",
|
748 |
|
|
"104 You are in a long sloping corridor with ragged sharp walls.",
|
749 |
|
|
"105 You are in a cul-de-sac about eight feet across.",
|
750 |
|
|
"106 You are in an anteroom leading to a large passage to the east. Small",
|
751 |
|
|
"106 passages go west and up. The remnants of recent digging are evident.",
|
752 |
|
|
"106 A sign in midair here says 'Cave under construction beyond this point.",
|
753 |
|
|
"106 Proceed at own risk. [Witt Construction Company]'",
|
754 |
|
|
"107 You are in a maze of twisty little passages, all different.",
|
755 |
|
|
"108 You are at Witt's End. Passages lead off in *ALL* directions.",
|
756 |
|
|
"109 You are in a north/south canyon about 25 feet across. The floor is",
|
757 |
|
|
"109 covered by white mist seeping in from the north. The walls extend",
|
758 |
|
|
"109 upward for well over 100 feet. Suspended from some unseen point far",
|
759 |
|
|
"109 above you, an enormous two-sided mirror is hanging parallel to and",
|
760 |
|
|
"109 midway between the canyon walls. (The mirror is obviously provided",
|
761 |
|
|
"109 for the use of the dwarves who, as you know, are extremely vain.) A",
|
762 |
|
|
"109 small window can be seen in either wall, some fifty feet up.",
|
763 |
|
|
"110 You're at a low window overlooking a huge pit, which extends up out of",
|
764 |
|
|
"110 sight. A floor is indistinctly visible over 50 feet below. Traces of",
|
765 |
|
|
"110 white mist cover the floor of the pit, becoming thicker to the left.",
|
766 |
|
|
"110 Marks in the dust around the window would seem to indicate that",
|
767 |
|
|
"110 someone has been here recently. Directly across the pit from you and",
|
768 |
|
|
"110 25 feet away there is a similar window looking into a lighted room. A",
|
769 |
|
|
"110 shadowy figure can be seen there peering back at you.",
|
770 |
|
|
"111 A large stalactite extends from the roof and almost reaches the floor",
|
771 |
|
|
"111 below. You could climb down it, and jump from it to the floor, but",
|
772 |
|
|
"111 having done so you would be unable to reach it to climb back up.",
|
773 |
|
|
"112 You are in a little maze of twisting passages, all different.",
|
774 |
|
|
"113 You are at the edge of a large underground reservoir. An opaque cloud",
|
775 |
|
|
"113 of white mist fills the room and rises rapidly upward. The lake is",
|
776 |
|
|
"113 fed by a stream, which tumbles out of a hole in the wall about 10 feet",
|
777 |
|
|
"113 overhead and splashes noisily into the water somewhere within the",
|
778 |
|
|
"113 mist. There is a passage going back toward the south.",
|
779 |
|
|
"114 Dead end",
|
780 |
|
|
"115 You are at the northeast end of an immense room, even larger than the",
|
781 |
|
|
"115 Giant Room. It appears to be a repository for the 'Adventure'",
|
782 |
|
|
"115 program. Massive torches far overhead bathe the room with smoky",
|
783 |
|
|
"115 yellow light. Scattered about you can be seen a pile of bottles (all",
|
784 |
|
|
"115 of them empty), a nursery of young beanstalks murmuring quietly, a bed",
|
785 |
|
|
"115 of oysters, a bundle of black rods with rusty stars on their ends, and",
|
786 |
|
|
"115 a collection of brass lanterns. Off to one side a great many dwarves",
|
787 |
|
|
"115 are sleeping on the floor, snoring loudly. A notice nearby reads: 'Do",
|
788 |
|
|
"115 not disturb the dwarves!' An immense mirror is hanging against one",
|
789 |
|
|
"115 wall, and stretches to the other end of the room, where various other",
|
790 |
|
|
"115 sundry objects can be glimpsed dimly in the distance.",
|
791 |
|
|
"116 You are at the southwest end of the repository. To one side is a pit",
|
792 |
|
|
"116 full of fierce green snakes. On the other side is a row of small",
|
793 |
|
|
"116 wicker cages, each of which contains a little sulking bird. In one",
|
794 |
|
|
"116 corner is a bundle of black rods with rusty marks on their ends. A",
|
795 |
|
|
"116 large number of velvet pillows are scattered about on the floor. A",
|
796 |
|
|
"116 vast mirror stretches off to the northeast. At your feet is a large",
|
797 |
|
|
"116 steel grate, next to which is a sign that reads, 'Treasure Vault.",
|
798 |
|
|
"116 Keys in main office.'",
|
799 |
|
|
"117 You are on one side of a large, deep chasm. A heavy white mist rising",
|
800 |
|
|
"117 up from below obscures all view of the far side. A sw path leads away",
|
801 |
|
|
"117 from the chasm into a winding corridor.",
|
802 |
|
|
"118 You are in a long winding corridor sloping out of sight in both",
|
803 |
|
|
"118 directions.",
|
804 |
|
|
"119 You are in a secret canyon which exits to the north and east.",
|
805 |
|
|
"120 You are in a secret canyon which exits to the north and east.",
|
806 |
|
|
"121 You are in a secret canyon which exits to the north and east.",
|
807 |
|
|
"122 You are on the far side of the chasm. A ne path leads away from the",
|
808 |
|
|
"122 chasm on this side.",
|
809 |
|
|
"123 You're in a long east/west corridor. A faint rumbling noise can be",
|
810 |
|
|
"123 heard in the distance.",
|
811 |
|
|
"124 The path forks here. The left fork leads northeast. A dull rumbling",
|
812 |
|
|
"124 seems to get louder in that direction. The right fork leads southeast",
|
813 |
|
|
"124 down a gentle slope. The main corridor enters from the west.",
|
814 |
|
|
"125 The walls are quite warm here. From the north can be heard a steady",
|
815 |
|
|
"125 roar, so loud that the entire cave seems to be trembling. Another",
|
816 |
|
|
"125 passage leads south, and a low crawl goes east.",
|
817 |
|
|
"126 You are on the edge of a breath-taking view. Far below you is an",
|
818 |
|
|
"126 active volcano, from which great gouts of molten lava come surging",
|
819 |
|
|
"126 out, cascading back down into the depths. The glowing rock fills the",
|
820 |
|
|
"126 farthest reaches of the cavern with a blood-red glare, giving every-",
|
821 |
|
|
"126 thing an eerie, macabre appearance. The air is filled with flickering",
|
822 |
|
|
"126 sparks of ash and a heavy smell of brimstone. The walls are hot to",
|
823 |
|
|
"126 the touch, and the thundering of the volcano drowns out all other",
|
824 |
|
|
"126 sounds. Embedded in the jagged roof far overhead are myriad twisted",
|
825 |
|
|
"126 formations composed of pure white alabaster, which scatter the murky",
|
826 |
|
|
"126 light into sinister apparitions upon the walls. To one side is a deep",
|
827 |
|
|
"126 gorge, filled with a bizarre chaos of tortured rock which seems to",
|
828 |
|
|
"126 have been crafted by the devil himself. An immense river of fire",
|
829 |
|
|
"126 crashes out from the depths of the volcano, burns its way through the",
|
830 |
|
|
"126 gorge, and plummets into a bottomless pit far off to your left. To",
|
831 |
|
|
"126 the right, an immense geyser of blistering steam erupts continuously",
|
832 |
|
|
"126 from a barren island in the center of a sulfurous lake, which bubbles",
|
833 |
|
|
"126 ominously. The far right wall is aflame with an incandescence of its",
|
834 |
|
|
"126 own, which lends an additional infernal splendor to the already",
|
835 |
|
|
"126 hellish scene. A dark, foreboding passage exits to the south.",
|
836 |
|
|
"127 You are in a small chamber filled with large boulders. The walls are",
|
837 |
|
|
"127 very warm, causing the air in the room to be almost stifling from the",
|
838 |
|
|
"127 heat. The only exit is a crawl heading west, through which is coming",
|
839 |
|
|
"127 a low rumbling.",
|
840 |
|
|
"128 You are walking along a gently sloping north/south passage lined with",
|
841 |
|
|
"128 oddly shaped limestone formations.",
|
842 |
|
|
"129 You are standing at the entrance to a large, barren room. A notice",
|
843 |
|
|
"129 above the entrance reads: 'Caution! Bear in room!'",
|
844 |
|
|
"130 You are inside a barren room. The center of the room is completely",
|
845 |
|
|
"130 empty except for some dust. Marks in the dust lead away toward the",
|
846 |
|
|
"130 far end of the room. The only exit is the way you came in.",
|
847 |
|
|
"131 You are in a maze of twisting little passages, all different.",
|
848 |
|
|
"132 You are in a little maze of twisty passages, all different.",
|
849 |
|
|
"133 You are in a twisting maze of little passages, all different.",
|
850 |
|
|
"134 You are in a twisting little maze of passages, all different.",
|
851 |
|
|
"135 You are in a twisty little maze of passages, all different.",
|
852 |
|
|
"136 You are in a twisty maze of little passages, all different.",
|
853 |
|
|
"137 You are in a little twisty maze of passages, all different.",
|
854 |
|
|
"138 You are in a maze of little twisting passages, all different.",
|
855 |
|
|
"139 You are in a maze of little twisty passages, all different.",
|
856 |
|
|
"140 Dead end",
|
857 |
|
|
"141 You are in a long, rough-hewn, north/south corridor.",
|
858 |
|
|
"142 There is no way to go that direction.",
|
859 |
|
|
"143 You are in a large chamber with passages to the west and north.",
|
860 |
|
|
"144 You are in the ogre's storeroom. The only exit is to the south.",
|
861 |
|
|
"145 You are wandering aimlessly through the forest.",
|
862 |
|
|
"146 You are wandering aimlessly through the forest.",
|
863 |
|
|
"147 You are wandering aimlessly through the forest.",
|
864 |
|
|
"148 You are wandering aimlessly through the forest.",
|
865 |
|
|
"149 You are wandering aimlessly through the forest.",
|
866 |
|
|
"150 You are wandering aimlessly through the forest.",
|
867 |
|
|
"151 You are wandering aimlessly through the forest.",
|
868 |
|
|
"152 You are wandering aimlessly through the forest.",
|
869 |
|
|
"153 You are wandering aimlessly through the forest.",
|
870 |
|
|
"154 You are wandering aimlessly through the forest.",
|
871 |
|
|
"155 You are wandering aimlessly through the forest.",
|
872 |
|
|
"156 You are wandering aimlessly through the forest.",
|
873 |
|
|
"157 You are wandering aimlessly through the forest.",
|
874 |
|
|
"158 You are wandering aimlessly through the forest.",
|
875 |
|
|
"159 You are wandering aimlessly through the forest.",
|
876 |
|
|
"160 You are wandering aimlessly through the forest.",
|
877 |
|
|
"161 You are wandering aimlessly through the forest.",
|
878 |
|
|
"162 You are wandering aimlessly through the forest.",
|
879 |
|
|
"163 You are wandering aimlessly through the forest.",
|
880 |
|
|
"164 You are wandering aimlessly through the forest.",
|
881 |
|
|
"165 You are wandering aimlessly through the forest.",
|
882 |
|
|
"166 You are wandering aimlessly through the forest.",
|
883 |
|
|
"167 You are on a small ledge on one face of a sheer cliff. There are no",
|
884 |
|
|
"167 paths away from the ledge. Across the chasm is a small clearing",
|
885 |
|
|
"167 surrounded by forest.",
|
886 |
|
|
"168 You are walking across the bottom of the reservoir. Walls of water",
|
887 |
|
|
"168 rear up on either side. The roar of the water cascading past is",
|
888 |
|
|
"168 nearly deafening, and the mist is so thick you can barely see.",
|
889 |
|
|
"169 You are at the northern edge of the reservoir. A northwest passage",
|
890 |
|
|
"169 leads sharply up from here.",
|
891 |
|
|
"170 You are scrambling along a treacherously steep, rocky passage.",
|
892 |
|
|
"171 You are on a very steep incline, which widens at it goes upward.",
|
893 |
|
|
"172 You are at the base of a nearly vertical cliff. There are some",
|
894 |
|
|
"172 slim footholds which would enable you to climb up, but it looks",
|
895 |
|
|
"172 extremely dangerous. Here at the base of the cliff lie the remains",
|
896 |
|
|
"172 of several earlier adventurers who apparently failed to make it.",
|
897 |
|
|
"173 You are climbing along a nearly vertical cliff.",
|
898 |
|
|
"174 Just as you reach the top, your foot slips on a loose rock and you",
|
899 |
|
|
"174 tumble several hundred feet to join the other unlucky adventurers.",
|
900 |
|
|
"175 Just as you reach the top, your foot slips on a loose rock and you",
|
901 |
|
|
"175 make one last desperate grab. Your luck holds, as does your grip.",
|
902 |
|
|
"175 With an enormous heave, you lift yourself to the ledge above.",
|
903 |
|
|
"176 You are on a small ledge at the top of a nearly vertical cliff.",
|
904 |
|
|
"176 There is a low crawl leading off to the northeast.",
|
905 |
|
|
"177 You have reached a dead end.",
|
906 |
|
|
"178 There is now one more gruesome aspect to the spectacular vista.",
|
907 |
|
|
"179 >>Foof!<<",
|
908 |
|
|
"180 >>Foof!<<",
|
909 |
|
|
"181 >>Foof!<<",
|
910 |
|
|
"182 >>Foof!<<",
|
911 |
|
|
"183 >>Foof!<<",
|
912 |
|
|
"184 >>Foof!<<",
|
913 |
|
|
"-1",
|
914 |
|
|
"2",
|
915 |
|
|
"1 You're in front of building.",
|
916 |
|
|
"2 You're at hill in road.",
|
917 |
|
|
"3 You're inside building.",
|
918 |
|
|
"4 You're in valley.",
|
919 |
|
|
"5 You're at end of road.",
|
920 |
|
|
"6 You're at cliff.",
|
921 |
|
|
"7 You're at slit in streambed.",
|
922 |
|
|
"8 You're outside grate.",
|
923 |
|
|
"9 You're below the grate.",
|
924 |
|
|
"10 You're in cobble crawl.",
|
925 |
|
|
"11 You're in debris room.",
|
926 |
|
|
"13 You're in bird chamber.",
|
927 |
|
|
"14 You're at top of small pit.",
|
928 |
|
|
"15 You're in Hall of Mists.",
|
929 |
|
|
"17 You're on east bank of fissure.",
|
930 |
|
|
"18 You're in nugget-of-gold room.",
|
931 |
|
|
"19 You're in Hall of Mt King.",
|
932 |
|
|
"23 You're at west end of Twopit Room.",
|
933 |
|
|
"24 You're in east pit.",
|
934 |
|
|
"25 You're in west pit.",
|
935 |
|
|
"27 You're on west bank of fissure.",
|
936 |
|
|
"28 You're in n/s passage above e/w passage.",
|
937 |
|
|
"30 You're in the west side chamber.",
|
938 |
|
|
"33 You're at 'Y2'.",
|
939 |
|
|
"35 You're at window on pit.",
|
940 |
|
|
"36 You're in dirty passage.",
|
941 |
|
|
"37 You're at brink of small pit.",
|
942 |
|
|
"38 You're at bottom of pit with stream.",
|
943 |
|
|
"39 You're in dusty rock room.",
|
944 |
|
|
"41 You're at west end of Hall of Mists.",
|
945 |
|
|
"57 You're at brink of pit.",
|
946 |
|
|
"60 You're at east end of long hall.",
|
947 |
|
|
"61 You're at west end of long hall.",
|
948 |
|
|
"64 You're at complex junction.",
|
949 |
|
|
"65 You're in Bedquilt.",
|
950 |
|
|
"66 You're in Swiss Cheese Room.",
|
951 |
|
|
"67 You're at east end of Twopit Room.",
|
952 |
|
|
"68 You're in Slab Room.",
|
953 |
|
|
"71 You're at junction of three secret canyons.",
|
954 |
|
|
"72 You're in large low room.",
|
955 |
|
|
"74 You're in secret e/w canyon above tight canyon.",
|
956 |
|
|
"88 You're in narrow corridor.",
|
957 |
|
|
"91 You're at steep incline above large room.",
|
958 |
|
|
"92 You're in Giant Room.",
|
959 |
|
|
"95 You're in cavern with waterfall.",
|
960 |
|
|
"96 You're in Soft Room.",
|
961 |
|
|
"97 You're in Oriental Room.",
|
962 |
|
|
"98 You're in misty cavern.",
|
963 |
|
|
"99 You're in alcove.",
|
964 |
|
|
"100 You're in Plover Room.",
|
965 |
|
|
"101 You're in dark-room.",
|
966 |
|
|
"102 You're in arched hall.",
|
967 |
|
|
"103 You're in Shell Room.",
|
968 |
|
|
"106 You're in anteroom.",
|
969 |
|
|
"108 You're at Witt's End.",
|
970 |
|
|
"109 You're in Mirror Canyon.",
|
971 |
|
|
"110 You're at window on pit.",
|
972 |
|
|
"111 You're at top of stalactite.",
|
973 |
|
|
"113 You're at reservoir.",
|
974 |
|
|
"115 You're at ne end.",
|
975 |
|
|
"116 You're at sw end.",
|
976 |
|
|
"117 You're on sw side of chasm.",
|
977 |
|
|
"118 You're in sloping corridor.",
|
978 |
|
|
"122 You're on ne side of chasm.",
|
979 |
|
|
"123 You're in corridor.",
|
980 |
|
|
"124 You're at fork in path.",
|
981 |
|
|
"125 You're at junction with warm walls.",
|
982 |
|
|
"126 You're at breath-taking view.",
|
983 |
|
|
"127 You're in Chamber of Boulders.",
|
984 |
|
|
"128 You're in limestone passage.",
|
985 |
|
|
"129 You're in front of Barren Room.",
|
986 |
|
|
"130 You're in Barren Room.",
|
987 |
|
|
"167 You're on ledge.",
|
988 |
|
|
"168 You're at bottom of reservoir.",
|
989 |
|
|
"169 You're north of reservoir.",
|
990 |
|
|
"172 You're at base of cliff.",
|
991 |
|
|
"176 You're at top of cliff.",
|
992 |
|
|
"-1",
|
993 |
|
|
"3",
|
994 |
|
|
"1 2 2 44 29",
|
995 |
|
|
"1 3 3 12 19 43",
|
996 |
|
|
"1 4 5 13 14 46 30",
|
997 |
|
|
"1 145 6 45",
|
998 |
|
|
"1 8 63",
|
999 |
|
|
"2 1 12 43",
|
1000 |
|
|
"2 5 44",
|
1001 |
|
|
"2 164 45",
|
1002 |
|
|
"2 157 46 6",
|
1003 |
|
|
"2 580 30",
|
1004 |
|
|
"3 1 11 32 44",
|
1005 |
|
|
"3 179 62",
|
1006 |
|
|
"3 181 65",
|
1007 |
|
|
"3 79 5 14",
|
1008 |
|
|
"4 1 4 12 45",
|
1009 |
|
|
"4 150 43 6",
|
1010 |
|
|
"4 156 44",
|
1011 |
|
|
"4 7 5 46 30",
|
1012 |
|
|
"4 8 63",
|
1013 |
|
|
"4 745 14",
|
1014 |
|
|
"5 2 2 43 29",
|
1015 |
|
|
"5 1 12",
|
1016 |
|
|
"5 158 46 6",
|
1017 |
|
|
"5 159 44",
|
1018 |
|
|
"5 165 45",
|
1019 |
|
|
"6 161 46 6",
|
1020 |
|
|
"6 163 43",
|
1021 |
|
|
"6 21 39",
|
1022 |
|
|
"7 1 12",
|
1023 |
|
|
"7 4 4 45",
|
1024 |
|
|
"7 150 43 6",
|
1025 |
|
|
"7 154 44",
|
1026 |
|
|
"7 8 5 16 46 63",
|
1027 |
|
|
"7 595 60 14 30 19 3",
|
1028 |
|
|
"8 151 43 6",
|
1029 |
|
|
"8 154 46",
|
1030 |
|
|
"8 153 44",
|
1031 |
|
|
"8 1 12",
|
1032 |
|
|
"8 7 4 13 45",
|
1033 |
|
|
"8 303009 3 19 30",
|
1034 |
|
|
"8 593 3",
|
1035 |
|
|
"9 303008 11 29",
|
1036 |
|
|
"9 593 11",
|
1037 |
|
|
"9 10 17 18 19 44",
|
1038 |
|
|
"9 14 31",
|
1039 |
|
|
"9 11 51",
|
1040 |
|
|
"10 9 11 20 21 43",
|
1041 |
|
|
"10 11 19 22 44 51",
|
1042 |
|
|
"10 14 31",
|
1043 |
|
|
"11 303008 63",
|
1044 |
|
|
"11 9 64",
|
1045 |
|
|
"11 10 17 18 23 24 43",
|
1046 |
|
|
"11 12 25 19 29 44",
|
1047 |
|
|
"11 180 62",
|
1048 |
|
|
"11 14 31",
|
1049 |
|
|
"12 303008 63",
|
1050 |
|
|
"12 9 64",
|
1051 |
|
|
"12 11 30 43 51",
|
1052 |
|
|
"12 13 19 29 44",
|
1053 |
|
|
"12 14 31",
|
1054 |
|
|
"13 303008 63",
|
1055 |
|
|
"13 9 64",
|
1056 |
|
|
"13 11 51",
|
1057 |
|
|
"13 12 25 43",
|
1058 |
|
|
"13 14 23 31 44",
|
1059 |
|
|
"14 303008 63",
|
1060 |
|
|
"14 9 64",
|
1061 |
|
|
"14 11 51",
|
1062 |
|
|
"14 13 23 43",
|
1063 |
|
|
"14 150020 30 31 34",
|
1064 |
|
|
"14 15 30",
|
1065 |
|
|
"14 16 33 44",
|
1066 |
|
|
"15 18 36 46",
|
1067 |
|
|
"15 17 7 38 44",
|
1068 |
|
|
"15 19 10 30 45",
|
1069 |
|
|
"15 150022 29 31 34 35 23 43",
|
1070 |
|
|
"15 14 29",
|
1071 |
|
|
"15 34 55",
|
1072 |
|
|
"16 14 1",
|
1073 |
|
|
"17 15 38 43",
|
1074 |
|
|
"17 312596 39",
|
1075 |
|
|
"17 412021 7",
|
1076 |
|
|
"17 412597 41 42 44 69",
|
1077 |
|
|
"17 27 41",
|
1078 |
|
|
"18 15 38 11 45",
|
1079 |
|
|
"19 15 10 29 43",
|
1080 |
|
|
"19 311028 45 37",
|
1081 |
|
|
"19 311029 46 36",
|
1082 |
|
|
"19 311030 44 7",
|
1083 |
|
|
"19 32 45",
|
1084 |
|
|
"19 35074 49",
|
1085 |
|
|
"19 211032 49",
|
1086 |
|
|
"19 74 66",
|
1087 |
|
|
"20 0 1",
|
1088 |
|
|
"21 0 1",
|
1089 |
|
|
"22 15 1",
|
1090 |
|
|
"23 67 43 42",
|
1091 |
|
|
"23 68 44 61",
|
1092 |
|
|
"23 25 30 31",
|
1093 |
|
|
"23 648 52",
|
1094 |
|
|
"24 67 29 11",
|
1095 |
|
|
"25 23 29 11",
|
1096 |
|
|
"25 524031 56",
|
1097 |
|
|
"25 26 56",
|
1098 |
|
|
"26 88 1",
|
1099 |
|
|
"27 312596 39",
|
1100 |
|
|
"27 412021 7",
|
1101 |
|
|
"27 412597 41 42 43 69",
|
1102 |
|
|
"27 17 41",
|
1103 |
|
|
"27 40 45",
|
1104 |
|
|
"27 41 44",
|
1105 |
|
|
"28 19 38 11 46",
|
1106 |
|
|
"28 33 45 55",
|
1107 |
|
|
"28 36 30 52",
|
1108 |
|
|
"29 19 38 11 45",
|
1109 |
|
|
"30 19 38 11 43",
|
1110 |
|
|
"30 62 44 29",
|
1111 |
|
|
"31 424089 1",
|
1112 |
|
|
"31 90 1",
|
1113 |
|
|
"32 19 1",
|
1114 |
|
|
"33 182 65",
|
1115 |
|
|
"33 28 46",
|
1116 |
|
|
"33 34 43 53 54",
|
1117 |
|
|
"33 35 44",
|
1118 |
|
|
"33 159302 71",
|
1119 |
|
|
"33 183 71",
|
1120 |
|
|
"34 33 30 55",
|
1121 |
|
|
"34 15 29",
|
1122 |
|
|
"35 33 43 55",
|
1123 |
|
|
"35 20 39",
|
1124 |
|
|
"36 37 43 17",
|
1125 |
|
|
"36 28 29 52",
|
1126 |
|
|
"36 39 44",
|
1127 |
|
|
"36 65 70",
|
1128 |
|
|
"37 36 44 17",
|
1129 |
|
|
"37 38 30 31 56",
|
1130 |
|
|
"38 37 56 29 11",
|
1131 |
|
|
"38 595 60 14 30 4 5 3 19",
|
1132 |
|
|
"39 36 43 23",
|
1133 |
|
|
"39 64 30 52 58",
|
1134 |
|
|
"39 65 70",
|
1135 |
|
|
"40 41 1",
|
1136 |
|
|
"41 42 46 29 23 56",
|
1137 |
|
|
"41 27 43",
|
1138 |
|
|
"41 59 45",
|
1139 |
|
|
"41 60 44 17",
|
1140 |
|
|
"42 41 29",
|
1141 |
|
|
"42 42 45",
|
1142 |
|
|
"42 43 43",
|
1143 |
|
|
"42 45 46",
|
1144 |
|
|
"42 80 44",
|
1145 |
|
|
"43 42 44",
|
1146 |
|
|
"43 44 46",
|
1147 |
|
|
"43 45 43",
|
1148 |
|
|
"44 43 43",
|
1149 |
|
|
"44 48 30",
|
1150 |
|
|
"44 50 46",
|
1151 |
|
|
"44 82 45",
|
1152 |
|
|
"45 42 44",
|
1153 |
|
|
"45 43 45",
|
1154 |
|
|
"45 46 43",
|
1155 |
|
|
"45 47 46",
|
1156 |
|
|
"45 87 29 30",
|
1157 |
|
|
"46 45 44 11",
|
1158 |
|
|
"47 45 43 11",
|
1159 |
|
|
"48 44 29 11",
|
1160 |
|
|
"49 50 43",
|
1161 |
|
|
"49 51 44",
|
1162 |
|
|
"50 44 43",
|
1163 |
|
|
"50 49 44",
|
1164 |
|
|
"50 51 30",
|
1165 |
|
|
"50 52 46",
|
1166 |
|
|
"51 49 44",
|
1167 |
|
|
"51 50 29",
|
1168 |
|
|
"51 52 43",
|
1169 |
|
|
"51 53 46",
|
1170 |
|
|
"52 50 44",
|
1171 |
|
|
"52 51 43",
|
1172 |
|
|
"52 52 46",
|
1173 |
|
|
"52 53 29",
|
1174 |
|
|
"52 55 45",
|
1175 |
|
|
"52 86 30",
|
1176 |
|
|
"53 51 44",
|
1177 |
|
|
"53 52 45",
|
1178 |
|
|
"53 54 46",
|
1179 |
|
|
"54 53 44 11",
|
1180 |
|
|
"55 52 44",
|
1181 |
|
|
"55 55 45",
|
1182 |
|
|
"55 56 30",
|
1183 |
|
|
"55 57 43",
|
1184 |
|
|
"56 55 29 11",
|
1185 |
|
|
"57 13 30 56",
|
1186 |
|
|
"57 55 44",
|
1187 |
|
|
"57 58 46",
|
1188 |
|
|
"57 83 45",
|
1189 |
|
|
"57 84 43",
|
1190 |
|
|
"58 57 43 11",
|
1191 |
|
|
"59 27 1",
|
1192 |
|
|
"60 41 43 29 17",
|
1193 |
|
|
"60 61 44",
|
1194 |
|
|
"60 62 45 30 52",
|
1195 |
|
|
"61 60 43",
|
1196 |
|
|
"61 62 45",
|
1197 |
|
|
"61 100107 46",
|
1198 |
|
|
"62 60 44",
|
1199 |
|
|
"62 63 45",
|
1200 |
|
|
"62 30 43",
|
1201 |
|
|
"62 61 46",
|
1202 |
|
|
"63 62 46 11",
|
1203 |
|
|
"64 39 29 56 59",
|
1204 |
|
|
"64 65 44 70",
|
1205 |
|
|
"64 103 45 74",
|
1206 |
|
|
"64 106 43",
|
1207 |
|
|
"65 64 43",
|
1208 |
|
|
"65 66 44",
|
1209 |
|
|
"65 65556 46",
|
1210 |
|
|
"65 68 61",
|
1211 |
|
|
"65 60556 29",
|
1212 |
|
|
"65 70070 29",
|
1213 |
|
|
"65 39 29",
|
1214 |
|
|
"65 50556 45",
|
1215 |
|
|
"65 75072 45",
|
1216 |
|
|
"65 71 45",
|
1217 |
|
|
"65 65556 30",
|
1218 |
|
|
"65 106 30",
|
1219 |
|
|
"66 65 47",
|
1220 |
|
|
"66 67 44",
|
1221 |
|
|
"66 80556 46",
|
1222 |
|
|
"66 77 25",
|
1223 |
|
|
"66 96 43",
|
1224 |
|
|
"66 50556 50",
|
1225 |
|
|
"66 97 72",
|
1226 |
|
|
"67 66 43",
|
1227 |
|
|
"67 23 44 42",
|
1228 |
|
|
"67 24 30 31",
|
1229 |
|
|
"68 23 46",
|
1230 |
|
|
"68 69 29 56",
|
1231 |
|
|
"68 65 45",
|
1232 |
|
|
"69 68 30 61",
|
1233 |
|
|
"69 331120 46",
|
1234 |
|
|
"69 119 46",
|
1235 |
|
|
"69 109 45",
|
1236 |
|
|
"69 113 75",
|
1237 |
|
|
"70 71 45",
|
1238 |
|
|
"70 65 30 23",
|
1239 |
|
|
"70 111 46",
|
1240 |
|
|
"71 65 48",
|
1241 |
|
|
"71 70 46",
|
1242 |
|
|
"71 110 45",
|
1243 |
|
|
"72 65 70",
|
1244 |
|
|
"72 118 49",
|
1245 |
|
|
"72 73 45",
|
1246 |
|
|
"72 97 48 72",
|
1247 |
|
|
"73 72 46 17 11",
|
1248 |
|
|
"74 19 43",
|
1249 |
|
|
"74 331120 44",
|
1250 |
|
|
"74 121 44",
|
1251 |
|
|
"74 75 30",
|
1252 |
|
|
"75 76 46",
|
1253 |
|
|
"75 77 45",
|
1254 |
|
|
"76 75 45",
|
1255 |
|
|
"77 75 43",
|
1256 |
|
|
"77 78 44",
|
1257 |
|
|
"77 66 45 17",
|
1258 |
|
|
"78 77 46",
|
1259 |
|
|
"79 3 1",
|
1260 |
|
|
"80 42 45",
|
1261 |
|
|
"80 80 44",
|
1262 |
|
|
"80 80 46",
|
1263 |
|
|
"80 81 43",
|
1264 |
|
|
"81 80 44 11",
|
1265 |
|
|
"82 44 46 11",
|
1266 |
|
|
"83 57 46",
|
1267 |
|
|
"83 84 43",
|
1268 |
|
|
"83 85 44",
|
1269 |
|
|
"84 57 45",
|
1270 |
|
|
"84 83 44",
|
1271 |
|
|
"84 114 50",
|
1272 |
|
|
"85 83 43 11",
|
1273 |
|
|
"86 52 29 11",
|
1274 |
|
|
"87 45 29 30",
|
1275 |
|
|
"88 25 30 56 43",
|
1276 |
|
|
"88 20 39",
|
1277 |
|
|
"88 92 44 27",
|
1278 |
|
|
"89 25 1",
|
1279 |
|
|
"90 23 1",
|
1280 |
|
|
"91 95 45 73 23",
|
1281 |
|
|
"91 72 30 56",
|
1282 |
|
|
"92 88 46",
|
1283 |
|
|
"92 93 43",
|
1284 |
|
|
"92 94 45",
|
1285 |
|
|
"93 92 46 27 11",
|
1286 |
|
|
"94 92 46 27 23",
|
1287 |
|
|
"94 309095 45 3 73",
|
1288 |
|
|
"94 611 45",
|
1289 |
|
|
"95 94 46 11",
|
1290 |
|
|
"95 92 27",
|
1291 |
|
|
"95 91 44",
|
1292 |
|
|
"96 66 44 11",
|
1293 |
|
|
"97 66 48",
|
1294 |
|
|
"97 72 44 17",
|
1295 |
|
|
"97 98 29 45 73",
|
1296 |
|
|
"98 97 46 72",
|
1297 |
|
|
"98 99 44",
|
1298 |
|
|
"99 98 50 73",
|
1299 |
|
|
"99 301 43 23",
|
1300 |
|
|
"99 100 43",
|
1301 |
|
|
"100 301 44 23 11",
|
1302 |
|
|
"100 99 44",
|
1303 |
|
|
"100 159302 71",
|
1304 |
|
|
"100 184 71",
|
1305 |
|
|
"100 101 47 22",
|
1306 |
|
|
"101 100 46 71 11",
|
1307 |
|
|
"102 103 30 74 11",
|
1308 |
|
|
"103 102 29 38",
|
1309 |
|
|
"103 104 30",
|
1310 |
|
|
"103 114618 46",
|
1311 |
|
|
"103 115619 46",
|
1312 |
|
|
"103 64 46",
|
1313 |
|
|
"104 103 29 74",
|
1314 |
|
|
"104 105 30",
|
1315 |
|
|
"105 104 29 11",
|
1316 |
|
|
"105 103 74",
|
1317 |
|
|
"106 64 29",
|
1318 |
|
|
"106 65 44",
|
1319 |
|
|
"106 108 43",
|
1320 |
|
|
"107 131 46",
|
1321 |
|
|
"107 132 49",
|
1322 |
|
|
"107 133 47",
|
1323 |
|
|
"107 134 48",
|
1324 |
|
|
"107 135 29",
|
1325 |
|
|
"107 136 50",
|
1326 |
|
|
"107 137 43",
|
1327 |
|
|
"107 138 44",
|
1328 |
|
|
"107 139 45",
|
1329 |
|
|
"107 61 30",
|
1330 |
|
|
"108 95556 43 45 46 47 48 49 50 29 30",
|
1331 |
|
|
"108 106 43",
|
1332 |
|
|
"108 626 44",
|
1333 |
|
|
"109 69 46",
|
1334 |
|
|
"109 113 45 75",
|
1335 |
|
|
"110 71 44",
|
1336 |
|
|
"110 20 39",
|
1337 |
|
|
"111 70 45",
|
1338 |
|
|
"111 40050 30 39 56",
|
1339 |
|
|
"111 50053 30",
|
1340 |
|
|
"111 45 30",
|
1341 |
|
|
"112 131 49",
|
1342 |
|
|
"112 132 45",
|
1343 |
|
|
"112 133 43",
|
1344 |
|
|
"112 134 50",
|
1345 |
|
|
"112 135 48",
|
1346 |
|
|
"112 136 47",
|
1347 |
|
|
"112 137 44",
|
1348 |
|
|
"112 138 30",
|
1349 |
|
|
"112 139 29",
|
1350 |
|
|
"112 140 46",
|
1351 |
|
|
"113 109 46 11",
|
1352 |
|
|
"113 445552 45 42 69",
|
1353 |
|
|
"113 168 45",
|
1354 |
|
|
"114 84 48",
|
1355 |
|
|
"115 116 49",
|
1356 |
|
|
"116 115 47",
|
1357 |
|
|
"116 593 30",
|
1358 |
|
|
"117 118 49",
|
1359 |
|
|
"117 233660 41 42 69 47",
|
1360 |
|
|
"117 332661 41",
|
1361 |
|
|
"117 303 41",
|
1362 |
|
|
"117 332021 39",
|
1363 |
|
|
"117 596 39",
|
1364 |
|
|
"118 72 30",
|
1365 |
|
|
"118 117 29",
|
1366 |
|
|
"119 69 45 11",
|
1367 |
|
|
"119 653 43 7",
|
1368 |
|
|
"120 69 45",
|
1369 |
|
|
"120 74 43",
|
1370 |
|
|
"121 74 43 11",
|
1371 |
|
|
"121 653 45 7",
|
1372 |
|
|
"122 123 47",
|
1373 |
|
|
"122 233660 41 42 69 49",
|
1374 |
|
|
"122 303 41",
|
1375 |
|
|
"122 596 39",
|
1376 |
|
|
"122 124 15",
|
1377 |
|
|
"122 126 28",
|
1378 |
|
|
"122 129 40",
|
1379 |
|
|
"123 122 44",
|
1380 |
|
|
"123 124 43 15",
|
1381 |
|
|
"123 126 28",
|
1382 |
|
|
"123 129 40",
|
1383 |
|
|
"124 123 44",
|
1384 |
|
|
"124 125 47 36",
|
1385 |
|
|
"124 128 48 37 30",
|
1386 |
|
|
"124 126 28",
|
1387 |
|
|
"124 129 40",
|
1388 |
|
|
"125 124 46 15",
|
1389 |
|
|
"125 126 45 28",
|
1390 |
|
|
"125 127 43 17",
|
1391 |
|
|
"126 125 46 23 11",
|
1392 |
|
|
"126 124 15",
|
1393 |
|
|
"126 610 30",
|
1394 |
|
|
"126 178 39",
|
1395 |
|
|
"127 125 44 11 17",
|
1396 |
|
|
"127 124 15",
|
1397 |
|
|
"127 126 28",
|
1398 |
|
|
"128 124 45 29 15",
|
1399 |
|
|
"128 129 46 30 40",
|
1400 |
|
|
"128 126 28",
|
1401 |
|
|
"129 128 44 29",
|
1402 |
|
|
"129 124 15",
|
1403 |
|
|
"129 130 43 19 40 3",
|
1404 |
|
|
"129 126 28",
|
1405 |
|
|
"130 129 44 11",
|
1406 |
|
|
"130 124 15",
|
1407 |
|
|
"130 126 28",
|
1408 |
|
|
"131 107 44",
|
1409 |
|
|
"131 132 48",
|
1410 |
|
|
"131 133 50",
|
1411 |
|
|
"131 134 49",
|
1412 |
|
|
"131 135 47",
|
1413 |
|
|
"131 136 29",
|
1414 |
|
|
"131 137 30",
|
1415 |
|
|
"131 138 45",
|
1416 |
|
|
"131 139 46",
|
1417 |
|
|
"131 112 43",
|
1418 |
|
|
"132 107 50",
|
1419 |
|
|
"132 131 29",
|
1420 |
|
|
"132 133 45",
|
1421 |
|
|
"132 134 46",
|
1422 |
|
|
"132 135 44",
|
1423 |
|
|
"132 136 49",
|
1424 |
|
|
"132 137 47",
|
1425 |
|
|
"132 138 43",
|
1426 |
|
|
"132 139 30",
|
1427 |
|
|
"132 112 48",
|
1428 |
|
|
"133 107 29",
|
1429 |
|
|
"133 131 30",
|
1430 |
|
|
"133 132 44",
|
1431 |
|
|
"133 134 47",
|
1432 |
|
|
"133 135 49",
|
1433 |
|
|
"133 136 43",
|
1434 |
|
|
"133 137 45",
|
1435 |
|
|
"133 138 50",
|
1436 |
|
|
"133 139 48",
|
1437 |
|
|
"133 112 46",
|
1438 |
|
|
"134 107 47",
|
1439 |
|
|
"134 131 45",
|
1440 |
|
|
"134 132 50",
|
1441 |
|
|
"134 133 48",
|
1442 |
|
|
"134 135 43",
|
1443 |
|
|
"134 136 30",
|
1444 |
|
|
"134 137 46",
|
1445 |
|
|
"134 138 29",
|
1446 |
|
|
"134 139 44",
|
1447 |
|
|
"134 112 49",
|
1448 |
|
|
"135 107 45",
|
1449 |
|
|
"135 131 48",
|
1450 |
|
|
"135 132 30",
|
1451 |
|
|
"135 133 46",
|
1452 |
|
|
"135 134 43",
|
1453 |
|
|
"135 136 44",
|
1454 |
|
|
"135 137 49",
|
1455 |
|
|
"135 138 47",
|
1456 |
|
|
"135 139 50",
|
1457 |
|
|
"135 112 29",
|
1458 |
|
|
"136 107 43",
|
1459 |
|
|
"136 131 44",
|
1460 |
|
|
"136 132 29",
|
1461 |
|
|
"136 133 49",
|
1462 |
|
|
"136 134 30",
|
1463 |
|
|
"136 135 46",
|
1464 |
|
|
"136 137 50",
|
1465 |
|
|
"136 138 48",
|
1466 |
|
|
"136 139 47",
|
1467 |
|
|
"136 112 45",
|
1468 |
|
|
"137 107 48",
|
1469 |
|
|
"137 131 47",
|
1470 |
|
|
"137 132 46",
|
1471 |
|
|
"137 133 30",
|
1472 |
|
|
"137 134 29",
|
1473 |
|
|
"137 135 50",
|
1474 |
|
|
"137 136 45",
|
1475 |
|
|
"137 138 49",
|
1476 |
|
|
"137 139 43",
|
1477 |
|
|
"137 112 44",
|
1478 |
|
|
"138 107 30",
|
1479 |
|
|
"138 131 43",
|
1480 |
|
|
"138 132 47",
|
1481 |
|
|
"138 133 29",
|
1482 |
|
|
"138 134 44",
|
1483 |
|
|
"138 135 45",
|
1484 |
|
|
"138 136 46",
|
1485 |
|
|
"138 137 48",
|
1486 |
|
|
"138 139 49",
|
1487 |
|
|
"138 112 50",
|
1488 |
|
|
"139 107 49",
|
1489 |
|
|
"139 131 50",
|
1490 |
|
|
"139 132 43",
|
1491 |
|
|
"139 133 44",
|
1492 |
|
|
"139 134 45",
|
1493 |
|
|
"139 135 30",
|
1494 |
|
|
"139 136 48",
|
1495 |
|
|
"139 137 29",
|
1496 |
|
|
"139 138 46",
|
1497 |
|
|
"139 112 47",
|
1498 |
|
|
"140 112 45 11",
|
1499 |
|
|
"140 338141 46",
|
1500 |
|
|
"140 142 46",
|
1501 |
|
|
"141 140 45",
|
1502 |
|
|
"141 143 46",
|
1503 |
|
|
"142 140 1",
|
1504 |
|
|
"143 141 44",
|
1505 |
|
|
"143 241560 45",
|
1506 |
|
|
"143 144 45",
|
1507 |
|
|
"144 143 46 11",
|
1508 |
|
|
"145 1 43",
|
1509 |
|
|
"145 157 44",
|
1510 |
|
|
"145 146 45",
|
1511 |
|
|
"145 147 46",
|
1512 |
|
|
"146 145 43",
|
1513 |
|
|
"146 163 44",
|
1514 |
|
|
"146 147 45",
|
1515 |
|
|
"146 162 46",
|
1516 |
|
|
"147 148 43 44",
|
1517 |
|
|
"147 146 45",
|
1518 |
|
|
"147 145 46",
|
1519 |
|
|
"148 147 43 45",
|
1520 |
|
|
"148 149 44 46",
|
1521 |
|
|
"149 148 43 45",
|
1522 |
|
|
"149 151 44",
|
1523 |
|
|
"149 150 46",
|
1524 |
|
|
"150 149 43",
|
1525 |
|
|
"150 151 44",
|
1526 |
|
|
"150 4 45",
|
1527 |
|
|
"150 7 46",
|
1528 |
|
|
"151 149 43",
|
1529 |
|
|
"151 150 44",
|
1530 |
|
|
"151 8 45",
|
1531 |
|
|
"151 152 46",
|
1532 |
|
|
"152 153 43",
|
1533 |
|
|
"152 155 44",
|
1534 |
|
|
"152 166 45",
|
1535 |
|
|
"152 151 46",
|
1536 |
|
|
"153 155 43",
|
1537 |
|
|
"153 152 44",
|
1538 |
|
|
"153 154 45",
|
1539 |
|
|
"153 8 46",
|
1540 |
|
|
"154 7 43",
|
1541 |
|
|
"154 155 44",
|
1542 |
|
|
"154 153 45",
|
1543 |
|
|
"154 8 46",
|
1544 |
|
|
"155 154 43",
|
1545 |
|
|
"155 152 44",
|
1546 |
|
|
"155 166 45",
|
1547 |
|
|
"155 153 46",
|
1548 |
|
|
"156 157 43",
|
1549 |
|
|
"156 158 44",
|
1550 |
|
|
"156 166 45",
|
1551 |
|
|
"156 4 46",
|
1552 |
|
|
"157 145 43",
|
1553 |
|
|
"157 156 44",
|
1554 |
|
|
"157 164 45",
|
1555 |
|
|
"157 2 46",
|
1556 |
|
|
"158 5 43",
|
1557 |
|
|
"158 160 44",
|
1558 |
|
|
"158 159 45",
|
1559 |
|
|
"158 156 46",
|
1560 |
|
|
"159 160 43",
|
1561 |
|
|
"159 166 44",
|
1562 |
|
|
"159 5 45",
|
1563 |
|
|
"159 158 46",
|
1564 |
|
|
"160 161 43 45",
|
1565 |
|
|
"160 158 44",
|
1566 |
|
|
"160 159 46",
|
1567 |
|
|
"161 162 43",
|
1568 |
|
|
"161 160 44 46",
|
1569 |
|
|
"161 6 45",
|
1570 |
|
|
"162 163 43",
|
1571 |
|
|
"162 161 44",
|
1572 |
|
|
"162 146 45",
|
1573 |
|
|
"162 165 46",
|
1574 |
|
|
"163 146 43",
|
1575 |
|
|
"163 162 44",
|
1576 |
|
|
"163 6 45",
|
1577 |
|
|
"163 164 46",
|
1578 |
|
|
"164 2 43",
|
1579 |
|
|
"164 165 44",
|
1580 |
|
|
"164 163 45",
|
1581 |
|
|
"164 157 46",
|
1582 |
|
|
"165 164 43",
|
1583 |
|
|
"165 5 44",
|
1584 |
|
|
"165 162 45",
|
1585 |
|
|
"165 165 46",
|
1586 |
|
|
"166 152 43",
|
1587 |
|
|
"166 155 44",
|
1588 |
|
|
"166 159 45",
|
1589 |
|
|
"166 156 46",
|
1590 |
|
|
"167 21 39",
|
1591 |
|
|
"168 169 45",
|
1592 |
|
|
"168 113 46",
|
1593 |
|
|
"169 445552 46 42 69",
|
1594 |
|
|
"169 168 46",
|
1595 |
|
|
"169 170 50 29 11",
|
1596 |
|
|
"170 171 29 50",
|
1597 |
|
|
"170 169 30 48",
|
1598 |
|
|
"171 170 30 48",
|
1599 |
|
|
"171 172 29 50",
|
1600 |
|
|
"172 171 30 48",
|
1601 |
|
|
"172 173 29 56",
|
1602 |
|
|
"173 172 30",
|
1603 |
|
|
"173 146175 29",
|
1604 |
|
|
"173 174 29",
|
1605 |
|
|
"174 0 1",
|
1606 |
|
|
"175 176 1",
|
1607 |
|
|
"176 173 56 30",
|
1608 |
|
|
"176 177 47 17",
|
1609 |
|
|
"177 176 49 11 17",
|
1610 |
|
|
"178 0 1",
|
1611 |
|
|
"179 11 1",
|
1612 |
|
|
"180 3 1",
|
1613 |
|
|
"181 33 1",
|
1614 |
|
|
"182 3 1",
|
1615 |
|
|
"183 100 1",
|
1616 |
|
|
"184 33 1",
|
1617 |
|
|
"-1",
|
1618 |
|
|
"4",
|
1619 |
|
|
"2 ROAD",
|
1620 |
|
|
"2 HILL",
|
1621 |
|
|
"3 ENTER",
|
1622 |
|
|
"4 UPSTR",
|
1623 |
|
|
"5 DOWNS",
|
1624 |
|
|
"6 FORES",
|
1625 |
|
|
"7 FORWA",
|
1626 |
|
|
"7 CONTI",
|
1627 |
|
|
"7 ONWAR",
|
1628 |
|
|
"8 BACK",
|
1629 |
|
|
"8 RETUR",
|
1630 |
|
|
"8 RETRE",
|
1631 |
|
|
"9 VALLE",
|
1632 |
|
|
"10 STAIR",
|
1633 |
|
|
"11 OUT",
|
1634 |
|
|
"11 OUTSI",
|
1635 |
|
|
"11 EXIT",
|
1636 |
|
|
"11 LEAVE",
|
1637 |
|
|
"12 BUILD",
|
1638 |
|
|
"12 HOUSE",
|
1639 |
|
|
"13 GULLY",
|
1640 |
|
|
"14 STREA",
|
1641 |
|
|
"15 FORK",
|
1642 |
|
|
"16 BED",
|
1643 |
|
|
"17 CRAWL",
|
1644 |
|
|
"18 COBBL",
|
1645 |
|
|
"19 INWAR",
|
1646 |
|
|
"19 INSID",
|
1647 |
|
|
"19 IN",
|
1648 |
|
|
"20 SURFA",
|
1649 |
|
|
"21 NULL",
|
1650 |
|
|
"21 NOWHE",
|
1651 |
|
|
"22 DARK",
|
1652 |
|
|
"23 PASSA",
|
1653 |
|
|
"23 TUNNE",
|
1654 |
|
|
"24 LOW",
|
1655 |
|
|
"25 CANYO",
|
1656 |
|
|
"26 AWKWA",
|
1657 |
|
|
"27 GIANT",
|
1658 |
|
|
"28 VIEW",
|
1659 |
|
|
"29 UPWAR",
|
1660 |
|
|
"29 UP",
|
1661 |
|
|
"29 U",
|
1662 |
|
|
"29 ABOVE",
|
1663 |
|
|
"29 ASCEN",
|
1664 |
|
|
"30 D",
|
1665 |
|
|
"30 DOWNW",
|
1666 |
|
|
"30 DOWN",
|
1667 |
|
|
"30 DESCE",
|
1668 |
|
|
"31 PIT",
|
1669 |
|
|
"32 OUTDO",
|
1670 |
|
|
"33 CRACK",
|
1671 |
|
|
"34 STEPS",
|
1672 |
|
|
"35 DOME",
|
1673 |
|
|
"36 LEFT",
|
1674 |
|
|
"37 RIGHT",
|
1675 |
|
|
"38 HALL",
|
1676 |
|
|
"39 JUMP",
|
1677 |
|
|
"40 BARRE",
|
1678 |
|
|
"41 OVER",
|
1679 |
|
|
"42 ACROS",
|
1680 |
|
|
"43 EAST",
|
1681 |
|
|
"43 E",
|
1682 |
|
|
"44 WEST",
|
1683 |
|
|
"44 W",
|
1684 |
|
|
"45 NORTH",
|
1685 |
|
|
"45 N",
|
1686 |
|
|
"46 SOUTH",
|
1687 |
|
|
"46 S",
|
1688 |
|
|
"47 NE",
|
1689 |
|
|
"48 SE",
|
1690 |
|
|
"49 SW",
|
1691 |
|
|
"50 NW",
|
1692 |
|
|
"51 DEBRI",
|
1693 |
|
|
"52 HOLE",
|
1694 |
|
|
"53 WALL",
|
1695 |
|
|
"54 BROKE",
|
1696 |
|
|
"55 Y2",
|
1697 |
|
|
"56 CLIMB",
|
1698 |
|
|
"57 LOOK",
|
1699 |
|
|
"57 EXAMI",
|
1700 |
|
|
"57 TOUCH",
|
1701 |
|
|
"57 DESCR",
|
1702 |
|
|
"58 FLOOR",
|
1703 |
|
|
"59 ROOM",
|
1704 |
|
|
"60 SLIT",
|
1705 |
|
|
"61 SLAB",
|
1706 |
|
|
"61 SLABR",
|
1707 |
|
|
"62 XYZZY",
|
1708 |
|
|
"63 DEPRE",
|
1709 |
|
|
"64 ENTRA",
|
1710 |
|
|
"65 PLUGH",
|
1711 |
|
|
"66 SECRE",
|
1712 |
|
|
"67 CAVE",
|
1713 |
|
|
"69 CROSS",
|
1714 |
|
|
"70 BEDQU",
|
1715 |
|
|
"71 PLOVE",
|
1716 |
|
|
"72 ORIEN",
|
1717 |
|
|
"73 CAVER",
|
1718 |
|
|
"74 SHELL",
|
1719 |
|
|
"75 RESER",
|
1720 |
|
|
"76 MAIN",
|
1721 |
|
|
"76 OFFIC",
|
1722 |
|
|
"1001 KEYS",
|
1723 |
|
|
"1001 KEY",
|
1724 |
|
|
"1002 LAMP",
|
1725 |
|
|
"1002 LANTE",
|
1726 |
|
|
"1003 GRATE",
|
1727 |
|
|
"1004 CAGE",
|
1728 |
|
|
"1005 ROD",
|
1729 |
|
|
"1006 ROD (MUST BE NEXT OBJECT AFTER 'REAL' ROD)",
|
1730 |
|
|
"1007 STEPS",
|
1731 |
|
|
"1008 BIRD",
|
1732 |
|
|
"1009 DOOR",
|
1733 |
|
|
"1010 PILLO",
|
1734 |
|
|
"1010 VELVE",
|
1735 |
|
|
"1011 SNAKE",
|
1736 |
|
|
"1012 FISSU",
|
1737 |
|
|
"1013 TABLE",
|
1738 |
|
|
"1014 CLAM",
|
1739 |
|
|
"1015 OYSTE",
|
1740 |
|
|
"1016 MAGAZ",
|
1741 |
|
|
"1016 ISSUE",
|
1742 |
|
|
"1016 SPELU",
|
1743 |
|
|
"1016 'SPEL",
|
1744 |
|
|
"1017 DWARF",
|
1745 |
|
|
"1017 DWARV",
|
1746 |
|
|
"1018 KNIFE",
|
1747 |
|
|
"1018 KNIVE",
|
1748 |
|
|
"1019 FOOD",
|
1749 |
|
|
"1019 RATIO",
|
1750 |
|
|
"1020 BOTTL",
|
1751 |
|
|
"1020 JAR",
|
1752 |
|
|
"1021 WATER",
|
1753 |
|
|
"1021 H2O",
|
1754 |
|
|
"1022 OIL",
|
1755 |
|
|
"1023 MIRRO",
|
1756 |
|
|
"1024 PLANT",
|
1757 |
|
|
"1024 BEANS",
|
1758 |
|
|
"1025 PLANT (MUST BE NEXT OBJECT AFTER 'REAL' PLANT)",
|
1759 |
|
|
"1026 STALA",
|
1760 |
|
|
"1027 SHADO",
|
1761 |
|
|
"1027 FIGUR",
|
1762 |
|
|
"1027 WINDO (SAME AS FIGURE)",
|
1763 |
|
|
"1028 AXE",
|
1764 |
|
|
"1029 DRAWI",
|
1765 |
|
|
"1030 PIRAT",
|
1766 |
|
|
"1030 GENIE",
|
1767 |
|
|
"1030 DJINN",
|
1768 |
|
|
"1031 DRAGO",
|
1769 |
|
|
"1032 CHASM",
|
1770 |
|
|
"1033 TROLL",
|
1771 |
|
|
"1034 TROLL (MUST BE NEXT OBJECT AFTER 'REAL' TROLL)",
|
1772 |
|
|
"1035 BEAR",
|
1773 |
|
|
"1036 MESSA",
|
1774 |
|
|
"1037 VOLCA",
|
1775 |
|
|
"1037 GEYSE (SAME AS VOLCANO)",
|
1776 |
|
|
"1038 MACHI",
|
1777 |
|
|
"1038 VENDI",
|
1778 |
|
|
"1039 BATTE",
|
1779 |
|
|
"1040 CARPE",
|
1780 |
|
|
"1040 MOSS",
|
1781 |
|
|
"1040 CURTA (SAME AS CARPET)",
|
1782 |
|
|
"1041 OGRE",
|
1783 |
|
|
"1042 URN",
|
1784 |
|
|
"1043 CAVIT",
|
1785 |
|
|
"1044 BLOOD",
|
1786 |
|
|
"1045 RESER (VERB OVERRIDES)",
|
1787 |
|
|
"1046 APPEN",
|
1788 |
|
|
"1046 LEPOR",
|
1789 |
|
|
"1047 MUD",
|
1790 |
|
|
"1048 NOTE",
|
1791 |
|
|
"1049 SIGN",
|
1792 |
|
|
"1050 GOLD",
|
1793 |
|
|
"1050 NUGGE",
|
1794 |
|
|
"1051 DIAMO",
|
1795 |
|
|
"1052 SILVE",
|
1796 |
|
|
"1052 BARS",
|
1797 |
|
|
"1053 JEWEL",
|
1798 |
|
|
"1054 COINS",
|
1799 |
|
|
"1055 CHEST",
|
1800 |
|
|
"1055 BOX",
|
1801 |
|
|
"1055 TREAS",
|
1802 |
|
|
"1056 EGGS",
|
1803 |
|
|
"1056 EGG",
|
1804 |
|
|
"1056 NEST",
|
1805 |
|
|
"1057 TRIDE",
|
1806 |
|
|
"1058 VASE",
|
1807 |
|
|
"1058 MING",
|
1808 |
|
|
"1058 SHARD",
|
1809 |
|
|
"1058 POTTE",
|
1810 |
|
|
"1059 EMERA",
|
1811 |
|
|
"1060 PLATI",
|
1812 |
|
|
"1060 PYRAM",
|
1813 |
|
|
"1061 PEARL",
|
1814 |
|
|
"1062 RUG",
|
1815 |
|
|
"1062 PERSI",
|
1816 |
|
|
"1063 SPICE",
|
1817 |
|
|
"1064 CHAIN",
|
1818 |
|
|
"1065 RUBY",
|
1819 |
|
|
"1066 JADE",
|
1820 |
|
|
"1066 NECKL",
|
1821 |
|
|
"1067 AMBER",
|
1822 |
|
|
"1067 GEMST",
|
1823 |
|
|
"1068 SAPPH",
|
1824 |
|
|
"1069 EBONY",
|
1825 |
|
|
"1069 STATU",
|
1826 |
|
|
"2001 CARRY",
|
1827 |
|
|
"2001 TAKE",
|
1828 |
|
|
"2001 KEEP",
|
1829 |
|
|
"2001 CATCH",
|
1830 |
|
|
"2001 STEAL",
|
1831 |
|
|
"2001 CAPTU",
|
1832 |
|
|
"2001 GET",
|
1833 |
|
|
"2001 TOTE",
|
1834 |
|
|
"2001 SNARF",
|
1835 |
|
|
"2002 DROP",
|
1836 |
|
|
"2002 RELEA",
|
1837 |
|
|
"2002 FREE",
|
1838 |
|
|
"2002 DISCA",
|
1839 |
|
|
"2002 DUMP",
|
1840 |
|
|
"2003 SAY",
|
1841 |
|
|
"2003 CHANT",
|
1842 |
|
|
"2003 SING",
|
1843 |
|
|
"2003 UTTER",
|
1844 |
|
|
"2003 MUMBL",
|
1845 |
|
|
"2004 UNLOC",
|
1846 |
|
|
"2004 OPEN",
|
1847 |
|
|
"2005 NOTHI",
|
1848 |
|
|
"2006 LOCK",
|
1849 |
|
|
"2006 CLOSE",
|
1850 |
|
|
"2007 LIGHT",
|
1851 |
|
|
"2007 ON",
|
1852 |
|
|
"2008 EXTIN",
|
1853 |
|
|
"2008 OFF",
|
1854 |
|
|
"2009 WAVE",
|
1855 |
|
|
"2009 SHAKE",
|
1856 |
|
|
"2009 SWING",
|
1857 |
|
|
"2010 CALM",
|
1858 |
|
|
"2010 PLACA",
|
1859 |
|
|
"2010 TAME",
|
1860 |
|
|
"2011 WALK",
|
1861 |
|
|
"2011 RUN",
|
1862 |
|
|
"2011 TRAVE",
|
1863 |
|
|
"2011 GO",
|
1864 |
|
|
"2011 PROCE",
|
1865 |
|
|
"2011 CONTI",
|
1866 |
|
|
"2011 EXPLO",
|
1867 |
|
|
"2011 FOLLO",
|
1868 |
|
|
"2011 TURN",
|
1869 |
|
|
"2012 ATTAC",
|
1870 |
|
|
"2012 KILL",
|
1871 |
|
|
"2012 FIGHT",
|
1872 |
|
|
"2012 HIT",
|
1873 |
|
|
"2012 STRIK",
|
1874 |
|
|
"2012 SLAY",
|
1875 |
|
|
"2013 POUR",
|
1876 |
|
|
"2014 EAT",
|
1877 |
|
|
"2014 DEVOU",
|
1878 |
|
|
"2015 DRINK",
|
1879 |
|
|
"2016 RUB",
|
1880 |
|
|
"2017 THROW",
|
1881 |
|
|
"2017 TOSS",
|
1882 |
|
|
"2018 QUIT",
|
1883 |
|
|
"2019 FIND",
|
1884 |
|
|
"2019 WHERE",
|
1885 |
|
|
"2020 INVEN",
|
1886 |
|
|
"2021 FEED",
|
1887 |
|
|
"2022 FILL",
|
1888 |
|
|
"2023 BLAST",
|
1889 |
|
|
"2023 DETON",
|
1890 |
|
|
"2023 IGNIT",
|
1891 |
|
|
"2023 BLOWU",
|
1892 |
|
|
"2024 SCORE",
|
1893 |
|
|
"2025 FEE",
|
1894 |
|
|
"2025 FIE",
|
1895 |
|
|
"2025 FOE",
|
1896 |
|
|
"2025 FOO",
|
1897 |
|
|
"2025 FUM",
|
1898 |
|
|
"2026 BRIEF",
|
1899 |
|
|
"2027 READ",
|
1900 |
|
|
"2027 PERUS",
|
1901 |
|
|
"2028 BREAK",
|
1902 |
|
|
"2028 SHATT",
|
1903 |
|
|
"2028 SMASH",
|
1904 |
|
|
"2029 WAKE",
|
1905 |
|
|
"2029 DISTU",
|
1906 |
|
|
"2030 SUSPE",
|
1907 |
|
|
"2030 PAUSE",
|
1908 |
|
|
"2030 SAVE",
|
1909 |
|
|
"2031 RESUM",
|
1910 |
|
|
"2031 RESTA",
|
1911 |
|
|
"2032 FLY",
|
1912 |
|
|
"2033 LISTE",
|
1913 |
|
|
"2034 Z'ZZZ (GETS REPLACED)",
|
1914 |
|
|
"3001 FEE",
|
1915 |
|
|
"3002 FIE",
|
1916 |
|
|
"3003 FOE",
|
1917 |
|
|
"3004 FOO",
|
1918 |
|
|
"3005 FUM",
|
1919 |
|
|
"3013 THANK",
|
1920 |
|
|
"3050 SESAM",
|
1921 |
|
|
"3050 OPENS",
|
1922 |
|
|
"3050 ABRA",
|
1923 |
|
|
"3050 ABRAC",
|
1924 |
|
|
"3050 SHAZA",
|
1925 |
|
|
"3050 HOCUS",
|
1926 |
|
|
"3050 POCUS",
|
1927 |
|
|
"3051 HELP",
|
1928 |
|
|
"3051 ?",
|
1929 |
|
|
"3054 NO",
|
1930 |
|
|
"3064 TREE",
|
1931 |
|
|
"3064 TREES",
|
1932 |
|
|
"3066 DIG",
|
1933 |
|
|
"3066 EXCAV",
|
1934 |
|
|
"3068 LOST",
|
1935 |
|
|
"3069 MIST",
|
1936 |
|
|
"3079 FUCK",
|
1937 |
|
|
"3139 STOP",
|
1938 |
|
|
"3142 INFO",
|
1939 |
|
|
"3142 INFOR",
|
1940 |
|
|
"3147 SWIM",
|
1941 |
|
|
"3246 WIZAR",
|
1942 |
|
|
"3271 YES",
|
1943 |
|
|
"3275 NEWS",
|
1944 |
|
|
"-1",
|
1945 |
|
|
"5",
|
1946 |
|
|
"1 Set of keys",
|
1947 |
|
|
"000 There are some keys on the ground here.",
|
1948 |
|
|
"2 Brass lantern",
|
1949 |
|
|
"000 There is a shiny brass lamp nearby.",
|
1950 |
|
|
"100 There is a lamp shining nearby.",
|
1951 |
|
|
"3 *grate",
|
1952 |
|
|
"000 The grate is locked.",
|
1953 |
|
|
"100 The grate is open.",
|
1954 |
|
|
"4 Wicker cage",
|
1955 |
|
|
"000 There is a small wicker cage discarded nearby.",
|
1956 |
|
|
"5 Black rod",
|
1957 |
|
|
"000 A three foot black rod with a rusty star on an end lies nearby.",
|
1958 |
|
|
"6 Black rod",
|
1959 |
|
|
"000 A three foot black rod with a rusty mark on an end lies nearby.",
|
1960 |
|
|
"7 *steps",
|
1961 |
|
|
"000 Rough stone steps lead down the pit.",
|
1962 |
|
|
"100 Rough stone steps lead up the dome.",
|
1963 |
|
|
"8 Little bird in cage",
|
1964 |
|
|
"000 A cheerful little bird is sitting here singing.",
|
1965 |
|
|
"100 There is a little bird in the cage.",
|
1966 |
|
|
"200 A cheerful little bird is sitting here singing.",
|
1967 |
|
|
"300 The bird's singing is quite melodious.",
|
1968 |
|
|
"400 The bird does not seem inclined to sing while in the cage.",
|
1969 |
|
|
"500 It almost seems as though the bird is trying to tell you something.",
|
1970 |
|
|
"600 To your surprise, you can understand the bird's chirping; it is",
|
1971 |
|
|
"600 singing about the joys of its forest home.",
|
1972 |
|
|
"700 The bird does not seem inclined to sing while in the cage.",
|
1973 |
|
|
"800 The bird is singing to you in gratitude for your having returned it to",
|
1974 |
|
|
"800 its home. In return, it informs you of a magic word which it thinks",
|
1975 |
|
|
"800 you may find useful somewhere near the Hall of Mists. The magic word",
|
1976 |
|
|
"800 changes frequently, but for now the bird believes it is '%W'. You",
|
1977 |
|
|
"800 thank the bird for this information, and it flies off into the forest.",
|
1978 |
|
|
"9 *rusty door",
|
1979 |
|
|
"000 The way north is barred by a massive, rusty, iron door.",
|
1980 |
|
|
"100 The way north leads through a massive, rusty, iron door.",
|
1981 |
|
|
"10 Velvet pillow",
|
1982 |
|
|
"000 A small velvet pillow lies on the floor.",
|
1983 |
|
|
"11 *snake",
|
1984 |
|
|
"000 A huge green fierce snake bars the way!",
|
1985 |
|
|
"100 %! (chased away)",
|
1986 |
|
|
"200 The snake is hissing venomously.",
|
1987 |
|
|
"12 *fissure",
|
1988 |
|
|
"000 %!",
|
1989 |
|
|
"100 A crystal bridge now spans the fissure.",
|
1990 |
|
|
"200 The crystal bridge has vanished!",
|
1991 |
|
|
"13 *stone tablet",
|
1992 |
|
|
"000 A massive stone tablet imbedded in the wall reads:",
|
1993 |
|
|
"000 'Congratulations on bringing light into the dark-room!'",
|
1994 |
|
|
"100 'Congratulations on bringing light into the dark-room!'",
|
1995 |
|
|
"14 Giant clam >GRUNT!<",
|
1996 |
|
|
"000 There is an enormous clam here with its shell tightly closed.",
|
1997 |
|
|
"100 The clam is as tight-mouthed as a, er, clam.",
|
1998 |
|
|
"15 Giant oyster >GROAN!<",
|
1999 |
|
|
"000 There is an enormous oyster here with its shell tightly closed.",
|
2000 |
|
|
"100 Interesting. There seems to be something written on the underside of",
|
2001 |
|
|
"100 the oyster.",
|
2002 |
|
|
"200 Even though it's an oyster, the critter's as tight-mouthed as a clam.",
|
2003 |
|
|
"300 It says the same thing it did before. Hm, maybe it's a pun?",
|
2004 |
|
|
"16 'Spelunker Today'",
|
2005 |
|
|
"000 There are a few recent issues of 'Spelunker Today' magazine here.",
|
2006 |
|
|
"100 I'm afraid the magazine is written in dwarvish. But pencilled on one",
|
2007 |
|
|
"100 cover you see, 'Please leave the magazines at the construction site.'",
|
2008 |
|
|
"19 Tasty food",
|
2009 |
|
|
"000 There is food here.",
|
2010 |
|
|
"20 Small bottle",
|
2011 |
|
|
"000 There is a bottle of water here.",
|
2012 |
|
|
"100 There is an empty bottle here.",
|
2013 |
|
|
"200 There is a bottle of oil here.",
|
2014 |
|
|
"21 Water in the bottle",
|
2015 |
|
|
"22 Oil in the bottle",
|
2016 |
|
|
"23 *mirror",
|
2017 |
|
|
"000 %!",
|
2018 |
|
|
"24 *plant",
|
2019 |
|
|
"000 There is a tiny little plant in the pit, murmuring 'water, water, ...'",
|
2020 |
|
|
"100 There is a 12-foot-tall beanstalk stretching up out of the pit,",
|
2021 |
|
|
"100 bellowing 'WATER!! WATER!!'",
|
2022 |
|
|
"200 There is a gigantic beanstalk stretching all the way up to the hole.",
|
2023 |
|
|
"300 The plant spurts into furious growth for a few seconds.",
|
2024 |
|
|
"400 The plant grows explosively, almost filling the bottom of the pit.",
|
2025 |
|
|
"500 You've over-watered the plant! It's shriveling up! And now . . .",
|
2026 |
|
|
"600 The plant continues to ask plaintively for water.",
|
2027 |
|
|
"700 The plant continues to demand water.",
|
2028 |
|
|
"800 The plant now maintains a contented silence.",
|
2029 |
|
|
"25 *phony plant (seen in Twopit Room only when tall enough)",
|
2030 |
|
|
"000 %!",
|
2031 |
|
|
"100 The top of a 12-foot-tall beanstalk is poking out of the west pit.",
|
2032 |
|
|
"200 There is a huge beanstalk growing out of the west pit up to the hole.",
|
2033 |
|
|
"26 *stalactite",
|
2034 |
|
|
"000 %!",
|
2035 |
|
|
"27 *shadowy figure and/or window",
|
2036 |
|
|
"000 The shadowy figure seems to be trying to attract your attention.",
|
2037 |
|
|
"28 Dwarf's axe",
|
2038 |
|
|
"000 There is a little axe here.",
|
2039 |
|
|
"100 There is a little axe lying beside the bear.",
|
2040 |
|
|
"29 *cave drawings",
|
2041 |
|
|
"000 %!",
|
2042 |
|
|
"30 *pirate/genie",
|
2043 |
|
|
"000 %! (never present)",
|
2044 |
|
|
"31 *dragon",
|
2045 |
|
|
"000 A huge green fierce dragon bars the way!",
|
2046 |
|
|
"100 The blood-specked body of a huge green dead dragon lies to one side.",
|
2047 |
|
|
"200 The body of a huge green dead dragon is lying off to one side.",
|
2048 |
|
|
"300 Congratulations! You have just vanquished a dragon with your bare",
|
2049 |
|
|
"300 hands! (Unbelievable, isn't it?)",
|
2050 |
|
|
"400 The dragon's ominous hissing does not bode well for you.",
|
2051 |
|
|
"500 The dragon is, not surprisingly, silent.",
|
2052 |
|
|
"600 The dragon is, not surprisingly, silent.",
|
2053 |
|
|
"32 *chasm",
|
2054 |
|
|
"000 A rickety wooden bridge extends across the chasm, vanishing into the",
|
2055 |
|
|
"000 mist. A notice posted on the bridge reads, 'Stop! Pay troll!'",
|
2056 |
|
|
"100 The wreckage of a bridge (and a dead bear) can be seen at the bottom",
|
2057 |
|
|
"100 of the chasm.",
|
2058 |
|
|
"33 *troll",
|
2059 |
|
|
"000 A burly troll stands by the bridge and insists you throw him a",
|
2060 |
|
|
"000 treasure before you may cross.",
|
2061 |
|
|
"100 The troll steps out from beneath the bridge and blocks your way.",
|
2062 |
|
|
"200 %! (chased away)",
|
2063 |
|
|
"300 The troll sounds quite adamant in his demand for a treasure.",
|
2064 |
|
|
"34 *phony troll",
|
2065 |
|
|
"000 The troll is nowhere to be seen.",
|
2066 |
|
|
"35 %! (bear uses rtext 141)",
|
2067 |
|
|
"000 There is a ferocious cave bear eying you from the far end of the room!",
|
2068 |
|
|
"100 There is a gentle cave bear sitting placidly in one corner.",
|
2069 |
|
|
"200 There is a contented-looking bear wandering about nearby.",
|
2070 |
|
|
"300 %! (dead)",
|
2071 |
|
|
"36 *message in second maze",
|
2072 |
|
|
"000 There is a message scrawled in the dust in a flowery script, reading:",
|
2073 |
|
|
"000 'This is not the maze where the pirate leaves his treasure chest.'",
|
2074 |
|
|
"100 'This is not the maze where the pirate leaves his treasure chest.'",
|
2075 |
|
|
"37 *volcano and/or geyser",
|
2076 |
|
|
"000 %!",
|
2077 |
|
|
"38 *vending machine",
|
2078 |
|
|
"000 There is a massive and somewhat battered vending machine here. The",
|
2079 |
|
|
"000 instructions on it read: 'Drop coins here to receive fresh batteries.'",
|
2080 |
|
|
"100 'Drop coins here to receive fresh batteries.'",
|
2081 |
|
|
"200 As you strike the vending machine, it pivots backward along with a",
|
2082 |
|
|
"200 section of wall, revealing a dark passage leading south.",
|
2083 |
|
|
"300 There is a massive vending machine here, swung back to reveal a",
|
2084 |
|
|
"300 southward passage.",
|
2085 |
|
|
"400 'Drop coins here to receive fresh batteries.'",
|
2086 |
|
|
"500 The vending machine swings back to block the passage.",
|
2087 |
|
|
"39 Batteries",
|
2088 |
|
|
"000 There are fresh batteries here.",
|
2089 |
|
|
"100 Some worn-out batteries have been discarded nearby.",
|
2090 |
|
|
"40 *carpet and/or moss and/or curtains",
|
2091 |
|
|
"000 %!",
|
2092 |
|
|
"41 *ogre",
|
2093 |
|
|
"000 A formidable ogre bars the northern exit.",
|
2094 |
|
|
"100 The ogre is apparently the strong, silent type.",
|
2095 |
|
|
"42 *urn",
|
2096 |
|
|
"000 A small urn is embedded in the rock.",
|
2097 |
|
|
"100 A small urn full of oil is embedded in the rock.",
|
2098 |
|
|
"200 A small oil flame extrudes from an urn embedded in the rock.",
|
2099 |
|
|
"43 *cavity",
|
2100 |
|
|
"000 %! (something in it)",
|
2101 |
|
|
"100 There is a small urn-shaped cavity in the rock.",
|
2102 |
|
|
"44 *blood",
|
2103 |
|
|
"000 %! (described with dragon)",
|
2104 |
|
|
"45 *reservoir",
|
2105 |
|
|
"000 %!",
|
2106 |
|
|
"100 The waters have parted to form a narrow path across the reservoir.",
|
2107 |
|
|
"200 The waters crash together again.",
|
2108 |
|
|
"46 Leporine appendage",
|
2109 |
|
|
"000 Your keen eye spots a severed leporine appendage lying on the ground.",
|
2110 |
|
|
"47 *mud",
|
2111 |
|
|
"000 %!",
|
2112 |
|
|
"100 'MAGIC WORD XYZZY'",
|
2113 |
|
|
"48 *note",
|
2114 |
|
|
"000 %!",
|
2115 |
|
|
"100 'You won't get it up the steps'",
|
2116 |
|
|
"49 *sign",
|
2117 |
|
|
"000 %!",
|
2118 |
|
|
"100 Cave under construction beyond this point.",
|
2119 |
|
|
"100 Proceed at own risk.",
|
2120 |
|
|
"100 [Witt Construction Company]",
|
2121 |
|
|
"200 'Treasure Vault. Keys in main office.'",
|
2122 |
|
|
"50 Large gold nugget",
|
2123 |
|
|
"000 There is a large sparkling nugget of gold here!",
|
2124 |
|
|
"51 Several diamonds",
|
2125 |
|
|
"000 There are diamonds here!",
|
2126 |
|
|
"52 Bars of silver",
|
2127 |
|
|
"000 There are bars of silver here!",
|
2128 |
|
|
"53 Precious jewelry",
|
2129 |
|
|
"000 There is precious jewelry here!",
|
2130 |
|
|
"54 Rare coins",
|
2131 |
|
|
"000 There are many coins here!",
|
2132 |
|
|
"55 Treasure chest",
|
2133 |
|
|
"000 The pirate's treasure chest is here!",
|
2134 |
|
|
"56 Golden eggs",
|
2135 |
|
|
"000 There is a large nest here, full of golden eggs!",
|
2136 |
|
|
"100 The nest of golden eggs has vanished!",
|
2137 |
|
|
"200 Done!",
|
2138 |
|
|
"57 Jeweled trident",
|
2139 |
|
|
"000 There is a jewel-encrusted trident here!",
|
2140 |
|
|
"58 Ming vase",
|
2141 |
|
|
"000 There is a delicate, precious, ming vase here!",
|
2142 |
|
|
"100 The vase is now resting, delicately, on a velvet pillow.",
|
2143 |
|
|
"200 The floor is littered with worthless shards of pottery.",
|
2144 |
|
|
"300 The ming vase drops with a delicate crash.",
|
2145 |
|
|
"59 Egg-sized emerald",
|
2146 |
|
|
"000 There is an emerald here the size of a plover's egg!",
|
2147 |
|
|
"100 There is an emerald resting in a small cavity in the rock!",
|
2148 |
|
|
"60 Platinum pyramid",
|
2149 |
|
|
"000 There is a platinum pyramid here, 8 inches on a side!",
|
2150 |
|
|
"61 Glistening pearl",
|
2151 |
|
|
"000 Off to one side lies a glistening pearl!",
|
2152 |
|
|
"62 Persian rug",
|
2153 |
|
|
"000 There is a persian rug spread out on the floor!",
|
2154 |
|
|
"100 The dragon is sprawled out on a persian rug!!",
|
2155 |
|
|
"200 There is a persian rug here, hovering in mid-air!",
|
2156 |
|
|
"63 Rare spices",
|
2157 |
|
|
"000 There are rare spices here!",
|
2158 |
|
|
"64 Golden chain",
|
2159 |
|
|
"000 There is a golden chain lying in a heap on the floor!",
|
2160 |
|
|
"100 The bear is locked to the wall with a golden chain!",
|
2161 |
|
|
"200 There is a golden chain locked to the wall!",
|
2162 |
|
|
"65 Giant ruby",
|
2163 |
|
|
"000 There is an enormous ruby here!",
|
2164 |
|
|
"100 There is a ruby resting in a small cavity in the rock!",
|
2165 |
|
|
"66 Jade necklace",
|
2166 |
|
|
"000 A precious jade necklace has been dropped here!",
|
2167 |
|
|
"67 Amber gemstone",
|
2168 |
|
|
"000 There is a rare amber gemstone here!",
|
2169 |
|
|
"100 There is an amber gemstone resting in a small cavity in the rock!",
|
2170 |
|
|
"68 Star sapphire",
|
2171 |
|
|
"000 A brilliant blue star sapphire is here!",
|
2172 |
|
|
"100 There is a star sapphire resting in a small cavity in the rock!",
|
2173 |
|
|
"69 Ebony statuette",
|
2174 |
|
|
"000 There is a richly-carved ebony statuette here!",
|
2175 |
|
|
"-1",
|
2176 |
|
|
"6",
|
2177 |
|
|
"1 Somewhere nearby is Colossal Cave, where others have found fortunes in",
|
2178 |
|
|
"1 treasure and gold, though it is rumored that some who enter are never",
|
2179 |
|
|
"1 seen again. Magic is said to work in the cave. I will be your eyes",
|
2180 |
|
|
"1 and hands. Direct me with commands of 1 or 2 words. I should warn",
|
2181 |
|
|
"1 you that I look at only the first five letters of each word, so you'll",
|
2182 |
|
|
"1 have to enter 'northeast' as 'ne' to distinguish it from 'north'.",
|
2183 |
|
|
"1 You can type 'help' for some general hints. For information on how",
|
2184 |
|
|
"1 to end your adventure, scoring, etc., type 'info'.",
|
2185 |
|
|
"1 - - -",
|
2186 |
|
|
"1 This program was originally developed by Willie Crowther. Most of the",
|
2187 |
|
|
"1 features of the current program were added by Don Woods. Contact Don",
|
2188 |
|
|
"1 if you have any questions, comments, etc.",
|
2189 |
|
|
"2 A little dwarf with a big knife blocks your way.",
|
2190 |
|
|
"3 A little dwarf just walked around a corner, saw you, threw a little",
|
2191 |
|
|
"3 axe at you which missed, cursed, and ran away.",
|
2192 |
|
|
"4 There are %1 threatening little dwarves in the room with you.",
|
2193 |
|
|
"5 There is a threatening little dwarf in the room with you!",
|
2194 |
|
|
"6 One sharp nasty knife is thrown at you!",
|
2195 |
|
|
"7 A hollow voice says 'PLUGH'.",
|
2196 |
|
|
"8 It gets you!",
|
2197 |
|
|
"9 It misses!",
|
2198 |
|
|
"10 I am unsure how you are facing. Use compass points or nearby objects.",
|
2199 |
|
|
"11 I don't know in from out here. Use compass points or name something",
|
2200 |
|
|
"11 in the general direction you want to go.",
|
2201 |
|
|
"12 I don't know how to apply that word here.",
|
2202 |
|
|
"13 You're quite welcome.",
|
2203 |
|
|
"14 I'm game. Would you care to explain how?",
|
2204 |
|
|
"15 Sorry, but I am not allowed to give more detail. I will repeat the",
|
2205 |
|
|
"15 long description of your location.",
|
2206 |
|
|
"16 It is now pitch dark. If you proceed you will likely fall into a pit.",
|
2207 |
|
|
"17 If you prefer, simply type w rather than west.",
|
2208 |
|
|
"18 Are you trying to catch the bird?",
|
2209 |
|
|
"19 Something about you seems to be frightening the bird. Perhaps you",
|
2210 |
|
|
"19 might figure out what it is.",
|
2211 |
|
|
"20 Are you trying to somehow deal with the snake?",
|
2212 |
|
|
"21 You can't kill the snake, or drive it away, or avoid it, or anything",
|
2213 |
|
|
"21 like that. There is a way to get by, but you don't have the necessary",
|
2214 |
|
|
"21 resources right now.",
|
2215 |
|
|
"22 Do you really want to quit now?",
|
2216 |
|
|
"23 You fell into a pit and broke every bone in your body!",
|
2217 |
|
|
"24 You are already carrying it!",
|
2218 |
|
|
"25 You can't be serious!",
|
2219 |
|
|
"26 The bird seemed unafraid at first, but as you approach it becomes",
|
2220 |
|
|
"26 disturbed and you cannot catch it.",
|
2221 |
|
|
"27 You can catch the bird, but you cannot carry it.",
|
2222 |
|
|
"28 There is nothing here with a lock!",
|
2223 |
|
|
"29 You aren't carrying it!",
|
2224 |
|
|
"30 The little bird attacks the green snake, and in an astounding flurry",
|
2225 |
|
|
"30 drives the snake away.",
|
2226 |
|
|
"31 You have no keys!",
|
2227 |
|
|
"32 It has no lock.",
|
2228 |
|
|
"33 I don't know how to lock or unlock such a thing.",
|
2229 |
|
|
"34 It was already locked.",
|
2230 |
|
|
"35 The grate is now locked.",
|
2231 |
|
|
"36 The grate is now unlocked.",
|
2232 |
|
|
"37 It was already unlocked.",
|
2233 |
|
|
"38 The urn is empty and will not light.",
|
2234 |
|
|
"39 Your lamp is now on.",
|
2235 |
|
|
"40 Your lamp is now off.",
|
2236 |
|
|
"41 There is no way to get past the bear to unlock the chain, which is",
|
2237 |
|
|
"41 probably just as well.",
|
2238 |
|
|
"42 Nothing happens.",
|
2239 |
|
|
"43 Where?",
|
2240 |
|
|
"44 There is nothing here to attack.",
|
2241 |
|
|
"45 The little bird is now dead. Its body disappears.",
|
2242 |
|
|
"46 Attacking the snake both doesn't work and is very dangerous.",
|
2243 |
|
|
"47 You killed a little dwarf.",
|
2244 |
|
|
"48 You attack a little dwarf, but he dodges out of the way.",
|
2245 |
|
|
"49 With what? Your bare hands?",
|
2246 |
|
|
"50 Good try, but that is an old worn-out magic word.",
|
2247 |
|
|
"51 I know of places, actions, and things. Most of my vocabulary",
|
2248 |
|
|
"51 describes places and is used to move you there. To move, try words",
|
2249 |
|
|
"51 like forest, building, downstream, enter, east, west, north, south,",
|
2250 |
|
|
"51 up, or down. I know about a few special objects, like a black rod",
|
2251 |
|
|
"51 hidden in the cave. These objects can be manipulated using some of",
|
2252 |
|
|
"51 the action words that I know. Usually you will need to give both the",
|
2253 |
|
|
"51 object and action words (in either order), but sometimes I can infer",
|
2254 |
|
|
"51 the object from the verb alone. Some objects also imply verbs; in",
|
2255 |
|
|
"51 particular, 'inventory' implies 'take inventory', which causes me to",
|
2256 |
|
|
"51 give you a list of what you're carrying. Some objects have unexpected",
|
2257 |
|
|
"51 effects; the effects are not always desirable! Usually people having",
|
2258 |
|
|
"51 trouble moving just need to try a few more words. Usually people",
|
2259 |
|
|
"51 trying unsuccessfully to manipulate an object are attempting something",
|
2260 |
|
|
"51 beyond their (or my!) capabilities and should try a completely",
|
2261 |
|
|
"51 different tack. One point often confusing to beginners is that, when",
|
2262 |
|
|
"51 there are several ways to go in a certain direction (e.g., if there",
|
2263 |
|
|
"51 are several holes in a wall), choosing that direction in effect",
|
2264 |
|
|
"51 chooses one of the ways at random; often, though, by specifying the",
|
2265 |
|
|
"51 place you want to reach you can guarantee choosing the right path.",
|
2266 |
|
|
"51 Also, to speed the game you can sometimes move long distances with a",
|
2267 |
|
|
"51 single word. For example, 'building' usually gets you to the building",
|
2268 |
|
|
"51 from anywhere above ground except when lost in the forest. Also, note",
|
2269 |
|
|
"51 that cave passages and forest paths turn a lot, so leaving one place",
|
2270 |
|
|
"51 heading north doesn't guarantee entering the next from the south.",
|
2271 |
|
|
"51 However (another important point), except when you've used a 'long",
|
2272 |
|
|
"51 distance' word such as 'building', there is always a way to go back",
|
2273 |
|
|
"51 where you just came from unless I warn you to the contrary, even",
|
2274 |
|
|
"51 though the direction that takes you back might not be the reverse of",
|
2275 |
|
|
"51 what got you here. Good luck, and have fun!",
|
2276 |
|
|
"52 There is no way to go that direction.",
|
2277 |
|
|
"53 Please stick to 1- and 2-word commands.",
|
2278 |
|
|
"54 OK",
|
2279 |
|
|
"55 You can't unlock the keys.",
|
2280 |
|
|
"56 You have crawled around in some little holes and wound up back in the",
|
2281 |
|
|
"56 main passage.",
|
2282 |
|
|
"57 I don't know where the cave is, but hereabouts no stream can run on",
|
2283 |
|
|
"57 the surface for long. I would try the stream.",
|
2284 |
|
|
"58 I need more detailed instructions to do that.",
|
2285 |
|
|
"59 I can only tell you what you see as you move about and manipulate",
|
2286 |
|
|
"59 things. I cannot tell you where remote things are.",
|
2287 |
|
|
"60 The ogre snarls and shoves you back.",
|
2288 |
|
|
"61 Huh?",
|
2289 |
|
|
"62 Are you trying to get into the cave?",
|
2290 |
|
|
"63 The grate is very solid and has a hardened steel lock. You cannot",
|
2291 |
|
|
"63 enter without a key, and there are no keys nearby. I would recommend",
|
2292 |
|
|
"63 looking elsewhere for the keys.",
|
2293 |
|
|
"64 The trees of the forest are large hardwood oak and maple, with an",
|
2294 |
|
|
"64 occasional grove of pine or spruce. There is quite a bit of under-",
|
2295 |
|
|
"64 growth, largely birch and ash saplings plus nondescript bushes of",
|
2296 |
|
|
"64 various sorts. This time of year visibility is quite restricted by",
|
2297 |
|
|
"64 all the leaves, but travel is quite easy if you detour around the",
|
2298 |
|
|
"64 spruce and berry bushes.",
|
2299 |
|
|
"65 Welcome to Adventure!! Would you like instructions?",
|
2300 |
|
|
"66 Digging without a shovel is quite impractical. Even with a shovel",
|
2301 |
|
|
"66 progress is unlikely.",
|
2302 |
|
|
"67 Blasting requires dynamite.",
|
2303 |
|
|
"68 I'm as confused as you are.",
|
2304 |
|
|
"69 Mist is a white vapor, usually water, seen from time to time in",
|
2305 |
|
|
"69 caverns. It can be found anywhere but is frequently a sign of a deep",
|
2306 |
|
|
"69 pit leading down to water.",
|
2307 |
|
|
"70 Your feet are now wet.",
|
2308 |
|
|
"71 I think I just lost my appetite.",
|
2309 |
|
|
"72 Thank you, it was delicious!",
|
2310 |
|
|
"73 You have taken a drink from the stream. The water tastes strongly of",
|
2311 |
|
|
"73 minerals, but is not unpleasant. It is extremely cold.",
|
2312 |
|
|
"74 The bottle of water is now empty.",
|
2313 |
|
|
"75 Rubbing the electric lamp is not particularly rewarding. Anyway,",
|
2314 |
|
|
"75 nothing exciting happens.",
|
2315 |
|
|
"76 Peculiar. Nothing unexpected happens.",
|
2316 |
|
|
"77 Your bottle is empty and the ground is wet.",
|
2317 |
|
|
"78 You can't pour that.",
|
2318 |
|
|
"79 Watch it!",
|
2319 |
|
|
"80 Which way?",
|
2320 |
|
|
"81 Oh dear, you seem to have gotten yourself killed. I might be able to",
|
2321 |
|
|
"81 help you out, but I've never really done this before. Do you want me",
|
2322 |
|
|
"81 to try to reincarnate you?",
|
2323 |
|
|
"82 All right. But don't blame me if something goes wr......",
|
2324 |
|
|
"82 --- POOF!! ---",
|
2325 |
|
|
"82 You are engulfed in a cloud of orange smoke. Coughing and gasping,",
|
2326 |
|
|
"82 you emerge from the smoke and find....",
|
2327 |
|
|
"83 You clumsy oaf, you've done it again! I don't know how long I can",
|
2328 |
|
|
"83 keep this up. Do you want me to try reincarnating you again?",
|
2329 |
|
|
"84 Okay, now where did I put my orange smoke?.... >POOF!<",
|
2330 |
|
|
"84 Everything disappears in a dense cloud of orange smoke.",
|
2331 |
|
|
"85 Now you've really done it! I'm out of orange smoke! You don't expect",
|
2332 |
|
|
"85 me to do a decent reincarnation without any orange smoke, do you?",
|
2333 |
|
|
"86 Okay, if you're so smart, do it yourself! I'm leaving!",
|
2334 |
|
|
"90 >>> messages 81 thru 90 are reserved for 'obituaries'. <<<",
|
2335 |
|
|
"91 Sorry, but I no longer seem to remember how it was you got here.",
|
2336 |
|
|
"92 You can't carry anything more. You'll have to drop something first.",
|
2337 |
|
|
"93 You can't go through a locked steel grate!",
|
2338 |
|
|
"94 I believe what you want is right here with you.",
|
2339 |
|
|
"95 You don't fit through a two-inch slit!",
|
2340 |
|
|
"96 I respectfully suggest you go across the bridge instead of jumping.",
|
2341 |
|
|
"97 There is no way across the fissure.",
|
2342 |
|
|
"98 You're not carrying anything.",
|
2343 |
|
|
"99 You are currently holding the following:",
|
2344 |
|
|
"100 It's not hungry (it's merely pinin' for the fjords). Besides, you",
|
2345 |
|
|
"100 have no bird seed.",
|
2346 |
|
|
"101 The snake has now devoured your bird.",
|
2347 |
|
|
"102 There's nothing here it wants to eat (except perhaps you).",
|
2348 |
|
|
"103 You fool, dwarves eat only coal! Now you've made him *REALLY* mad!!",
|
2349 |
|
|
"104 You have nothing in which to carry it.",
|
2350 |
|
|
"105 Your bottle is already full.",
|
2351 |
|
|
"106 There is nothing here with which to fill the bottle.",
|
2352 |
|
|
"107 Your bottle is now full of water.",
|
2353 |
|
|
"108 Your bottle is now full of oil.",
|
2354 |
|
|
"109 You can't fill that.",
|
2355 |
|
|
"110 Don't be ridiculous!",
|
2356 |
|
|
"111 The door is extremely rusty and refuses to open.",
|
2357 |
|
|
"112 The plant indignantly shakes the oil off its leaves and asks, 'Water?'",
|
2358 |
|
|
"113 The hinges are quite thoroughly rusted now and won't budge.",
|
2359 |
|
|
"114 The oil has freed up the hinges so that the door will now move,",
|
2360 |
|
|
"114 although it requires some effort.",
|
2361 |
|
|
"115 The plant has exceptionally deep roots and cannot be pulled free.",
|
2362 |
|
|
"116 The dwarves' knives vanish as they strike the walls of the cave.",
|
2363 |
|
|
"117 Something you're carrying won't fit through the tunnel with you.",
|
2364 |
|
|
"117 You'd best take inventory and drop something.",
|
2365 |
|
|
"118 You can't fit this five-foot clam through that little passage!",
|
2366 |
|
|
"119 You can't fit this five-foot oyster through that little passage!",
|
2367 |
|
|
"120 I advise you to put down the clam before opening it. >STRAIN!<",
|
2368 |
|
|
"121 I advise you to put down the oyster before opening it. >WRENCH!<",
|
2369 |
|
|
"122 You don't have anything strong enough to open the clam.",
|
2370 |
|
|
"123 You don't have anything strong enough to open the oyster.",
|
2371 |
|
|
"124 A glistening pearl falls out of the clam and rolls away. Goodness,",
|
2372 |
|
|
"124 this must really be an oyster. (I never was very good at identifying",
|
2373 |
|
|
"124 bivalves.) Whatever it is, it has now snapped shut again.",
|
2374 |
|
|
"125 The oyster creaks open, revealing nothing but oyster inside. It",
|
2375 |
|
|
"125 promptly snaps shut again.",
|
2376 |
|
|
"126 You have crawled around in some little holes and found your way",
|
2377 |
|
|
"126 blocked by a recent cave-in. You are now back in the main passage.",
|
2378 |
|
|
"127 There are faint rustling noises from the darkness behind you.",
|
2379 |
|
|
"128 Out from the shadows behind you pounces a bearded pirate! 'Har, har,'",
|
2380 |
|
|
"128 he chortles, 'I'll just take all this booty and hide it away with me",
|
2381 |
|
|
"128 chest deep in the maze!' He snatches your treasure and vanishes into",
|
2382 |
|
|
"128 the gloom.",
|
2383 |
|
|
"129 A sepulchral voice reverberating through the cave, says, 'Cave closing",
|
2384 |
|
|
"129 soon. All adventurers exit immediately through main office.'",
|
2385 |
|
|
"130 A mysterious recorded voice groans into life and announces:",
|
2386 |
|
|
"130 'This exit is closed. Please leave via main office.'",
|
2387 |
|
|
"131 It looks as though you're dead. Well, seeing as how it's so close to",
|
2388 |
|
|
"131 closing time anyway, I think we'll just call it a day.",
|
2389 |
|
|
"132 The sepulchral voice intones, 'The cave is now closed.' As the echoes",
|
2390 |
|
|
"132 fade, there is a blinding flash of light (and a small puff of orange",
|
2391 |
|
|
"132 smoke). . . . As your eyes refocus, you look around and find...",
|
2392 |
|
|
"133 There is a loud explosion, and a twenty-foot hole appears in the far",
|
2393 |
|
|
"133 wall, burying the dwarves in the rubble. You march through the hole",
|
2394 |
|
|
"133 and find yourself in the main office, where a cheering band of",
|
2395 |
|
|
"133 friendly elves carry the conquering adventurer off into the sunset.",
|
2396 |
|
|
"134 There is a loud explosion, and a twenty-foot hole appears in the far",
|
2397 |
|
|
"134 wall, burying the snakes in the rubble. A river of molten lava pours",
|
2398 |
|
|
"134 in through the hole, destroying everything in its path, including you!",
|
2399 |
|
|
"135 There is a loud explosion, and you are suddenly splashed across the",
|
2400 |
|
|
"135 walls of the room.",
|
2401 |
|
|
"136 The resulting ruckus has awakened the dwarves. There are now several",
|
2402 |
|
|
"136 threatening little dwarves in the room with you! Most of them throw",
|
2403 |
|
|
"136 knives at you! All of them get you!",
|
2404 |
|
|
"137 Oh, leave the poor unhappy bird alone.",
|
2405 |
|
|
"138 I daresay whatever you want is around here somewhere.",
|
2406 |
|
|
"139 I don't know the word 'stop'. Use 'quit' if you want to give up.",
|
2407 |
|
|
"140 You can't get there from here.",
|
2408 |
|
|
"141 You are being followed by a very large, tame bear.",
|
2409 |
|
|
"142 For a summary of the most recent changes to the game, say 'news'.",
|
2410 |
|
|
"142 If you want to end your adventure early, say 'quit'. To suspend your",
|
2411 |
|
|
"142 adventure such that you can continue later, say 'suspend' (or 'pause'",
|
2412 |
|
|
"142 or 'save'). To see how well you're doing, say 'score'. To get full",
|
2413 |
|
|
"142 credit for a treasure, you must have left it safely in the building,",
|
2414 |
|
|
"142 though you get partial credit just for locating it. You lose points",
|
2415 |
|
|
"142 for getting killed, or for quitting, though the former costs you more.",
|
2416 |
|
|
"142 There are also points based on how much (if any) of the cave you've",
|
2417 |
|
|
"142 managed to explore; in particular, there is a large bonus just for",
|
2418 |
|
|
"142 getting in (to distinguish the beginners from the rest of the pack),",
|
2419 |
|
|
"142 and there are other ways to determine whether you've been through some",
|
2420 |
|
|
"142 of the more harrowing sections. If you think you've found all the",
|
2421 |
|
|
"142 treasures, just keep exploring for a while. If nothing interesting",
|
2422 |
|
|
"142 happens, you haven't found them all yet. If something interesting",
|
2423 |
|
|
"142 *DOES* happen (incidentally, there *ARE* ways to hasten things along),",
|
2424 |
|
|
"142 it means you're getting a bonus and have an opportunity to garner many",
|
2425 |
|
|
"142 more points in the Master's section. I may occasionally offer hints",
|
2426 |
|
|
"142 if you seem to be having trouble. If I do, I'll warn you in advance",
|
2427 |
|
|
"142 how much it will affect your score to accept the hints. Finally, to",
|
2428 |
|
|
"142 save time, you may specify 'brief', which tells me never to repeat the",
|
2429 |
|
|
"142 full description of a place unless you explicitly ask me to.",
|
2430 |
|
|
"143 Now let's see you do it without suspending in mid-Adventure.",
|
2431 |
|
|
"144 There is nothing here with which to fill it.",
|
2432 |
|
|
"145 The sudden change in temperature has delicately shattered the vase.",
|
2433 |
|
|
"146 It is beyond your power to do that.",
|
2434 |
|
|
"147 I don't know how.",
|
2435 |
|
|
"148 It is too far up for you to reach.",
|
2436 |
|
|
"149 You killed a little dwarf. The body vanishes in a cloud of greasy",
|
2437 |
|
|
"149 black smoke.",
|
2438 |
|
|
"150 The shell is very strong and is impervious to attack.",
|
2439 |
|
|
"151 What's the matter, can't you read? Now you'd best start over.",
|
2440 |
|
|
"152 The axe bounces harmlessly off the dragon's thick scales.",
|
2441 |
|
|
"153 The dragon looks rather nasty. You'd best not try to get by.",
|
2442 |
|
|
"154 The little bird attacks the green dragon, and in an astounding flurry",
|
2443 |
|
|
"154 gets burnt to a cinder. The ashes blow away.",
|
2444 |
|
|
"155 On what?",
|
2445 |
|
|
"156 Okay, from now on I'll only describe a place in full the first time",
|
2446 |
|
|
"156 you come to it. To get the full description, say 'look'.",
|
2447 |
|
|
"157 Trolls are close relatives with the rocks and have skin as tough as",
|
2448 |
|
|
"157 that of a rhinoceros. The troll fends off your blows effortlessly.",
|
2449 |
|
|
"158 The troll deftly catches the axe, examines it carefully, and tosses it",
|
2450 |
|
|
"158 back, declaring, 'Good workmanship, but it's not valuable enough.'",
|
2451 |
|
|
"159 The troll catches your treasure and scurries away out of sight.",
|
2452 |
|
|
"160 The troll refuses to let you cross.",
|
2453 |
|
|
"161 There is no longer any way across the chasm.",
|
2454 |
|
|
"162 Just as you reach the other side, the bridge buckles beneath the",
|
2455 |
|
|
"162 weight of the bear, which was still following you around. You",
|
2456 |
|
|
"162 scrabble desperately for support, but as the bridge collapses you",
|
2457 |
|
|
"162 stumble back and fall into the chasm.",
|
2458 |
|
|
"163 The bear lumbers toward the troll, who lets out a startled shriek and",
|
2459 |
|
|
"163 scurries away. The bear soon gives up the pursuit and wanders back.",
|
2460 |
|
|
"164 The axe misses and lands near the bear where you can't get at it.",
|
2461 |
|
|
"165 With what? Your bare hands? Against *HIS* bear hands??",
|
2462 |
|
|
"166 The bear is confused; he only wants to be your friend.",
|
2463 |
|
|
"167 For crying out loud, the poor thing is already dead!",
|
2464 |
|
|
"168 The bear eagerly wolfs down your food, after which he seems to calm",
|
2465 |
|
|
"168 down considerably and even becomes rather friendly.",
|
2466 |
|
|
"169 The bear is still chained to the wall.",
|
2467 |
|
|
"170 The chain is still locked.",
|
2468 |
|
|
"171 The chain is now unlocked.",
|
2469 |
|
|
"172 The chain is now locked.",
|
2470 |
|
|
"173 There is nothing here to which the chain can be locked.",
|
2471 |
|
|
"174 There is nothing here to eat.",
|
2472 |
|
|
"175 Do you want the hint?",
|
2473 |
|
|
"176 Do you need help getting out of the maze?",
|
2474 |
|
|
"177 You can make the passages look less alike by dropping things.",
|
2475 |
|
|
"178 Are you trying to explore beyond the plover room?",
|
2476 |
|
|
"179 There is a way to explore that region without having to worry about",
|
2477 |
|
|
"179 falling into a pit. None of the objects available is immediately",
|
2478 |
|
|
"179 useful in discovering the secret.",
|
2479 |
|
|
"180 Do you need help getting out of here?",
|
2480 |
|
|
"181 Don't go west.",
|
2481 |
|
|
"182 Gluttony is not one of the troll's vices. Avarice, however, is.",
|
2482 |
|
|
"183 Your lamp is getting dim. You'd best start wrapping this up, unless",
|
2483 |
|
|
"183 you can find some fresh batteries. I seem to recall there's a vending",
|
2484 |
|
|
"183 machine in the maze. Bring some coins with you.",
|
2485 |
|
|
"184 Your lamp has run out of power.",
|
2486 |
|
|
"185 Please answer the question.",
|
2487 |
|
|
"186 There are faint rustling noises from the darkness behind you. As you",
|
2488 |
|
|
"186 turn toward them, the beam of your lamp falls across a bearded pirate.",
|
2489 |
|
|
"186 He is carrying a large chest. 'Shiver me timbers!' he cries, 'I've",
|
2490 |
|
|
"186 been spotted! I'd best hie meself off to the maze to hide me chest!'",
|
2491 |
|
|
"186 With that, he vanishes into the gloom.",
|
2492 |
|
|
"187 Your lamp is getting dim. You'd best go back for those batteries.",
|
2493 |
|
|
"188 Your lamp is getting dim. I'm taking the liberty of replacing the",
|
2494 |
|
|
"188 batteries.",
|
2495 |
|
|
"189 Your lamp is getting dim, and you're out of spare batteries. You'd",
|
2496 |
|
|
"189 best start wrapping this up.",
|
2497 |
|
|
"190 You sift your fingers through the dust, but succeed only in",
|
2498 |
|
|
"190 obliterating the cryptic message.",
|
2499 |
|
|
"191 Do you need help dealing with the ogre?",
|
2500 |
|
|
"192 Hmmm, this looks like a clue, which means it'll cost you 10 points to",
|
2501 |
|
|
"192 read it. Should I go ahead and read it anyway?",
|
2502 |
|
|
"193 It says, 'There is a way out of this place. Do you need any more",
|
2503 |
|
|
"193 information to escape? Sorry, but this initial hint is all you get.'",
|
2504 |
|
|
"194 There is nothing the presence of which will prevent you from defeating",
|
2505 |
|
|
"194 him; thus it can't hurt to fetch everything you possibly can.",
|
2506 |
|
|
"195 I'm afraid I don't understand.",
|
2507 |
|
|
"196 Your hand passes through it as though it weren't there.",
|
2508 |
|
|
"197 You strike the mirror a resounding blow, whereupon it shatters into a",
|
2509 |
|
|
"197 myriad tiny fragments.",
|
2510 |
|
|
"198 You have taken the vase and hurled it delicately to the ground.",
|
2511 |
|
|
"199 You prod the nearest dwarf, who wakes up grumpily, takes one look at",
|
2512 |
|
|
"199 you, curses, and grabs for his axe.",
|
2513 |
|
|
"200 Is this acceptable?",
|
2514 |
|
|
"201 This adventure is already over. To start a new adventure, or to",
|
2515 |
|
|
"201 resume an earlier adventure, please run a fresh copy of the program.",
|
2516 |
|
|
"202 The ogre doesn't appear to be hungry.",
|
2517 |
|
|
"203 The ogre, who despite his bulk is quite agile, easily dodges your",
|
2518 |
|
|
"203 attack. He seems almost amused by your puny effort.",
|
2519 |
|
|
"204 The ogre, distracted by your rush, is struck by the knife. With a",
|
2520 |
|
|
"204 blood-curdling yell he turns and bounds after the dwarves, who flee",
|
2521 |
|
|
"204 in panic. You are left alone in the room.",
|
2522 |
|
|
"205 The ogre, distracted by your rush, is struck by the knife. With a",
|
2523 |
|
|
"205 blood-curdling yell he turns and bounds after the dwarf, who flees",
|
2524 |
|
|
"205 in panic. You are left alone in the room.",
|
2525 |
|
|
"206 The bird flies about agitatedly for a moment.",
|
2526 |
|
|
"207 The bird flies agitatedly about the cage.",
|
2527 |
|
|
"208 The bird flies about agitatedly for a moment, then disappears through",
|
2528 |
|
|
"208 the crack. It reappears shortly, carrying in its beak a jade",
|
2529 |
|
|
"208 necklace, which it drops at your feet.",
|
2530 |
|
|
"209 The urn is now lit.",
|
2531 |
|
|
"210 The urn is now dark.",
|
2532 |
|
|
"211 You empty the bottle into the urn, which promptly ejects the water",
|
2533 |
|
|
"211 with uncanny accuracy, squirting you directly between the eyes.",
|
2534 |
|
|
"212 Your bottle is now empty and the urn is full of oil.",
|
2535 |
|
|
"213 The urn is already full of oil.",
|
2536 |
|
|
"214 There's no way to get the oil out of the urn.",
|
2537 |
|
|
"215 The urn is far too firmly embedded for your puny strength to budge it.",
|
2538 |
|
|
"216 As you rub the urn, there is a flash of light and a genie appears.",
|
2539 |
|
|
"216 His aspect is stern as he advises: 'One who wouldst traffic in",
|
2540 |
|
|
"216 precious stones must first learn to recognize the signals thereof.'",
|
2541 |
|
|
"216 He wrests the urn from the stone, leaving a small cavity. Turning to",
|
2542 |
|
|
"216 face you again, he fixes you with a steely eye and intones: 'Caution!'",
|
2543 |
|
|
"216 Genie and urn vanish in a cloud of amber smoke. The smoke condenses",
|
2544 |
|
|
"216 to form a rare amber gemstone, resting in the cavity in the rock.",
|
2545 |
|
|
"217 I suppose you collect doughnut holes, too?",
|
2546 |
|
|
"218 The gem fits easily into the cavity.",
|
2547 |
|
|
"219 The persian rug stiffens and rises a foot or so off the ground.",
|
2548 |
|
|
"220 The persian rug draped over your shoulder seems to wriggle for a",
|
2549 |
|
|
"220 moment, but then subsides.",
|
2550 |
|
|
"221 The persian rug settles gently to the ground.",
|
2551 |
|
|
"222 The rug hovers stubbornly where it is.",
|
2552 |
|
|
"223 The rug does not appear inclined to cooperate.",
|
2553 |
|
|
"224 If you mean to use the persian rug, it does not appear inclined to",
|
2554 |
|
|
"224 cooperate.",
|
2555 |
|
|
"225 Though you flap your arms furiously, it is to no avail.",
|
2556 |
|
|
"226 You board the persian rug, which promptly whisks you across the chasm.",
|
2557 |
|
|
"226 You have time for a fleeting glimpse of a two thousand foot drop to a",
|
2558 |
|
|
"226 mighty river; then you find yourself on the other side.",
|
2559 |
|
|
"227 The rug ferries you back across the chasm.",
|
2560 |
|
|
"228 All is silent.",
|
2561 |
|
|
"229 The stream is gurgling placidly.",
|
2562 |
|
|
"230 The wind whistles coldly past your ears.",
|
2563 |
|
|
"231 The stream splashes loudly into the pool.",
|
2564 |
|
|
"232 You are unable to make anything of the splashing noise.",
|
2565 |
|
|
"233 You can hear the murmuring of the beanstalks and the snoring of the",
|
2566 |
|
|
"233 dwarves.",
|
2567 |
|
|
"234 A loud hissing emanates from the snake pit.",
|
2568 |
|
|
"235 The air is filled with a dull rumbling sound.",
|
2569 |
|
|
"236 The roar is quite loud here.",
|
2570 |
|
|
"237 The roaring is so loud that it drowns out all other sound.",
|
2571 |
|
|
"238 The bird eyes you suspiciously and flutters away. A moment later you",
|
2572 |
|
|
"238 feel something wet land on your head, but upon looking up you can see",
|
2573 |
|
|
"238 no sign of the culprit.",
|
2574 |
|
|
"239 There are only a few drops--not enough to carry.",
|
2575 |
|
|
"240 Your head buzzes strangely for a moment.",
|
2576 |
|
|
"241 (Uh, y'know, that wasn't very bright.)",
|
2577 |
|
|
"242 It's a pity you took so long about it.",
|
2578 |
|
|
"243 Are you wondering what to do here?",
|
2579 |
|
|
"244 This section is quite advanced. Find the cave first.",
|
2580 |
|
|
"245 Upstream or downstream?",
|
2581 |
|
|
"246 Wizards are not to be disturbed by such as you.",
|
2582 |
|
|
"247 Would you like to be shown out of the forest?",
|
2583 |
|
|
"248 Go east ten times. If that doesn't get you out, then go south, then",
|
2584 |
|
|
"248 west twice, then south.",
|
2585 |
|
|
"249 The waters are crashing loudly against the shore.",
|
2586 |
|
|
"250 %1 of them throw knives at you!",
|
2587 |
|
|
"251 %1 of them get you!",
|
2588 |
|
|
"252 One of them gets you!",
|
2589 |
|
|
"253 None of them hits you!",
|
2590 |
|
|
"254 Sorry, I don't know the word '%W'.",
|
2591 |
|
|
"255 What do you want to do with the %L?",
|
2592 |
|
|
"256 I see no %L here.",
|
2593 |
|
|
"257 %C what?",
|
2594 |
|
|
"258 Okay, '%W'.",
|
2595 |
|
|
"259 You have garnered %3 out of a possible %3 points, using %5 turn%S.",
|
2596 |
|
|
"260 I can suspend your Adventure for you so that you can resume later, but",
|
2597 |
|
|
"260 it will cost you 5 points.",
|
2598 |
|
|
"261 I am prepared to give you a hint, but it will cost you %1 point%S.",
|
2599 |
|
|
"262 You scored %3 out of a possible %3, using%5 turn%S.",
|
2600 |
|
|
"263 To achieve the next higher rating, you need %2 more point%S.",
|
2601 |
|
|
"264 To achieve the next higher rating would be a neat trick!",
|
2602 |
|
|
"264 Congratulations!!",
|
2603 |
|
|
"265 You just went off my scale!!",
|
2604 |
|
|
"266 To resume your Adventure, start a new game and then say 'RESUME'.",
|
2605 |
|
|
"267 Table space used:",
|
2606 |
|
|
"267 %6 of %6 words of messages %6 of %6 travel options",
|
2607 |
|
|
"267 %6 of %6 vocabulary words %6 of %6 locations",
|
2608 |
|
|
"267 %6 of %6 objects %6 of %6 action verbs",
|
2609 |
|
|
"267 %6 of %6 'random' messages %6 of %6 'class' messages",
|
2610 |
|
|
"267 %6 of %6 hints %6 of %6 turn threshholds",
|
2611 |
|
|
"268 To resume an earlier Adventure, you must abandon the current one.",
|
2612 |
|
|
"269 I'm sorry, but that Adventure was begun using Version%2.%1 of the",
|
2613 |
|
|
"269 program, and this is Version%2.%1. You must find the other version",
|
2614 |
|
|
"269 in order to resume that Adventure.",
|
2615 |
|
|
"270 A dark fog creeps in to surround you. From somewhere in the fog you",
|
2616 |
|
|
"270 hear a stern voice. 'This Adventure has been tampered with! You have",
|
2617 |
|
|
"270 been dabbling in magic, knowing not the havoc you might cause thereby.",
|
2618 |
|
|
"270 Leave at once, before you do irrevocable harm!' The fog thickens,",
|
2619 |
|
|
"270 until at last you can see nothing at all. Your vision then clears,",
|
2620 |
|
|
"270 and you find yourself back in The Real World.",
|
2621 |
|
|
"271 Guess again.",
|
2622 |
|
|
"272 You're missing only one other treasure. Do you need help finding it?",
|
2623 |
|
|
"273 Once you've found all the other treasures, it is no longer possible to",
|
2624 |
|
|
"273 locate the one you're now missing.",
|
2625 |
|
|
"274 Sorry, but the path twisted and turned so much that I can't figure",
|
2626 |
|
|
"274 out which way to go to get back.",
|
2627 |
|
|
"275 Version 2.5 is essentially the same as Version II; the cave and the",
|
2628 |
|
|
"275 hazards therein are unchanged, and top score is still 430 points.",
|
2629 |
|
|
"275 There are a few more hints, especially for some of the more obscure",
|
2630 |
|
|
"275 puzzles. There are a few minor bugfixes and cosmetic changes. You",
|
2631 |
|
|
"275 can now save a game and resume it at once (formerly you had to wait a",
|
2632 |
|
|
"275 while first), but it now costs you a few points each time you save the",
|
2633 |
|
|
"275 game. Saved games are now stored in much smaller files than before.",
|
2634 |
|
|
"276 You don't have to say 'go' every time; just specify a direction or, if",
|
2635 |
|
|
"276 it's nearby, name the place to which you wish to move.",
|
2636 |
|
|
"-1",
|
2637 |
|
|
"7",
|
2638 |
|
|
"1 3",
|
2639 |
|
|
"2 3",
|
2640 |
|
|
"3 8 9",
|
2641 |
|
|
"4 10",
|
2642 |
|
|
"5 11",
|
2643 |
|
|
"6 0",
|
2644 |
|
|
"7 14 15",
|
2645 |
|
|
"8 13",
|
2646 |
|
|
"9 94 -1",
|
2647 |
|
|
"10 96",
|
2648 |
|
|
"11 19 -1",
|
2649 |
|
|
"12 17 27",
|
2650 |
|
|
"13 101 -1",
|
2651 |
|
|
"14 103",
|
2652 |
|
|
"15 0",
|
2653 |
|
|
"16 106",
|
2654 |
|
|
"17 0 -1",
|
2655 |
|
|
"18 0",
|
2656 |
|
|
"19 3",
|
2657 |
|
|
"20 3",
|
2658 |
|
|
"21 0",
|
2659 |
|
|
"22 0",
|
2660 |
|
|
"23 109 -1",
|
2661 |
|
|
"24 25 -1",
|
2662 |
|
|
"25 23 67",
|
2663 |
|
|
"26 111 -1",
|
2664 |
|
|
"27 35 110",
|
2665 |
|
|
"28 0",
|
2666 |
|
|
"29 97 -1",
|
2667 |
|
|
"30 0 -1",
|
2668 |
|
|
"31 119 121",
|
2669 |
|
|
"32 117 122",
|
2670 |
|
|
"33 117 122",
|
2671 |
|
|
"34 0 0",
|
2672 |
|
|
"35 130 -1",
|
2673 |
|
|
"36 0 -1",
|
2674 |
|
|
"37 126 -1",
|
2675 |
|
|
"38 140 -1",
|
2676 |
|
|
"39 0",
|
2677 |
|
|
"40 96 -1",
|
2678 |
|
|
"41 143 -1",
|
2679 |
|
|
"42 6 -1",
|
2680 |
|
|
"43 0 -1",
|
2681 |
|
|
"44 0 -1",
|
2682 |
|
|
"45 113 169",
|
2683 |
|
|
"46 166",
|
2684 |
|
|
"47 11 -1",
|
2685 |
|
|
"48 18 -1",
|
2686 |
|
|
"49 106 -1",
|
2687 |
|
|
"50 18",
|
2688 |
|
|
"51 27",
|
2689 |
|
|
"52 28",
|
2690 |
|
|
"53 29",
|
2691 |
|
|
"54 30",
|
2692 |
|
|
"55 0",
|
2693 |
|
|
"56 92",
|
2694 |
|
|
"57 95",
|
2695 |
|
|
"58 97",
|
2696 |
|
|
"59 100",
|
2697 |
|
|
"60 101",
|
2698 |
|
|
"61 0",
|
2699 |
|
|
"62 119 121",
|
2700 |
|
|
"63 127",
|
2701 |
|
|
"64 130 -1",
|
2702 |
|
|
"65 144",
|
2703 |
|
|
"66 0",
|
2704 |
|
|
"67 0",
|
2705 |
|
|
"68 167",
|
2706 |
|
|
"69 177",
|
2707 |
|
|
"-1",
|
2708 |
|
|
"8",
|
2709 |
|
|
"1 24",
|
2710 |
|
|
"2 29",
|
2711 |
|
|
"3 0",
|
2712 |
|
|
"4 33",
|
2713 |
|
|
"5 0",
|
2714 |
|
|
"6 33",
|
2715 |
|
|
"7 195",
|
2716 |
|
|
"8 195",
|
2717 |
|
|
"9 42",
|
2718 |
|
|
"10 14",
|
2719 |
|
|
"11 43",
|
2720 |
|
|
"12 110",
|
2721 |
|
|
"13 29",
|
2722 |
|
|
"14 110",
|
2723 |
|
|
"15 73",
|
2724 |
|
|
"16 75",
|
2725 |
|
|
"17 29",
|
2726 |
|
|
"18 61",
|
2727 |
|
|
"19 59",
|
2728 |
|
|
"20 59",
|
2729 |
|
|
"21 174",
|
2730 |
|
|
"22 109",
|
2731 |
|
|
"23 67",
|
2732 |
|
|
"24 61",
|
2733 |
|
|
"25 147",
|
2734 |
|
|
"26 155",
|
2735 |
|
|
"27 195",
|
2736 |
|
|
"28 146",
|
2737 |
|
|
"29 110",
|
2738 |
|
|
"30 61",
|
2739 |
|
|
"31 61",
|
2740 |
|
|
"32 14",
|
2741 |
|
|
"33 195",
|
2742 |
|
|
"34 42",
|
2743 |
|
|
"35 61",
|
2744 |
|
|
"-1",
|
2745 |
|
|
"9",
|
2746 |
|
|
"0 1 2 3 4 5 6 7 8 9 10",
|
2747 |
|
|
"0 100 115 116 126 145 146 147 148 149 150",
|
2748 |
|
|
"0 151 152 153 154 155 156 157 158 159 160",
|
2749 |
|
|
"0 161 162 163 164 165 166 167",
|
2750 |
|
|
"2 1 3 4 7 38 95 113 24 168 169",
|
2751 |
|
|
"1 24",
|
2752 |
|
|
"3 46 47 48 54 56 58 82 85 86",
|
2753 |
|
|
"3 122 123 124 125 126 127 128 129 130",
|
2754 |
|
|
"4 6 145 146 147 148 149 150 151 152",
|
2755 |
|
|
"4 153 154 155 156 157 158 159 160 161",
|
2756 |
|
|
"4 162 163 164 165 166 42 43 44 45",
|
2757 |
|
|
"4 49 50 51 52 53 55 57 80 83",
|
2758 |
|
|
"4 84 87 107 112 131 132 133 134 135",
|
2759 |
|
|
"4 136 137 138 139 108",
|
2760 |
|
|
"11 8",
|
2761 |
|
|
"12 13",
|
2762 |
|
|
"13 19",
|
2763 |
|
|
"14 42 43 44 45 46 47 48 49 50 51",
|
2764 |
|
|
"14 52 53 54 55 56 80 81 82 86 87",
|
2765 |
|
|
"15 99 100 101",
|
2766 |
|
|
"16 108",
|
2767 |
|
|
"17 6",
|
2768 |
|
|
"18 145 146 147 148 149 150 151 152 153 154",
|
2769 |
|
|
"18 155 156 157 158 159 160 161 162 163 164",
|
2770 |
|
|
"18 165 166",
|
2771 |
|
|
"19 143",
|
2772 |
|
|
"20 8 15 64 109 126",
|
2773 |
|
|
"-1",
|
2774 |
|
|
"10",
|
2775 |
|
|
"45 You are obviously a rank amateur. Better luck next time.",
|
2776 |
|
|
"120 Your score qualifies you as a novice class adventurer.",
|
2777 |
|
|
"170 You have achieved the rating: 'Experienced Adventurer'.",
|
2778 |
|
|
"250 You may now consider yourself a 'Seasoned Adventurer'.",
|
2779 |
|
|
"320 You have reached 'Junior Master' status.",
|
2780 |
|
|
"375 Your score puts you in Master Adventurer Class C.",
|
2781 |
|
|
"410 Your score puts you in Master Adventurer Class B.",
|
2782 |
|
|
"426 Your score puts you in Master Adventurer Class A.",
|
2783 |
|
|
"429 All of Adventuredom gives tribute to you, Adventurer Grandmaster!",
|
2784 |
|
|
"9999 Adventuredom stands in awe -- you have now joined the ranks of the",
|
2785 |
|
|
"9999 W O R L D C H A M P I O N A D V E N T U R E R S !",
|
2786 |
|
|
"9999 It may interest you to know that the Dungeon-Master himself has, to",
|
2787 |
|
|
"9999 my knowledge, never achieved this threshhold in fewer than 330 turns.",
|
2788 |
|
|
"-1",
|
2789 |
|
|
"11",
|
2790 |
|
|
"1 4 2 62 63",
|
2791 |
|
|
"2 5 2 18 19",
|
2792 |
|
|
"3 8 2 20 21",
|
2793 |
|
|
"4 75 4 176 177",
|
2794 |
|
|
"5 25 5 178 179",
|
2795 |
|
|
"6 20 3 180 181",
|
2796 |
|
|
"7 8 2 243 244",
|
2797 |
|
|
"8 25 2 247 248",
|
2798 |
|
|
"9 10 4 191 194",
|
2799 |
|
|
"10 1 4 272 273",
|
2800 |
|
|
"-1",
|
2801 |
|
|
"13",
|
2802 |
|
|
"8 3 -1",
|
2803 |
|
|
"11 2 -1",
|
2804 |
|
|
"13 -1 1",
|
2805 |
|
|
"14 1 -1",
|
2806 |
|
|
"15 2 -1",
|
2807 |
|
|
"16 -1 1",
|
2808 |
|
|
"24 6 -1",
|
2809 |
|
|
"31 4 -1",
|
2810 |
|
|
"33 3 -1",
|
2811 |
|
|
"36 -1 1",
|
2812 |
|
|
"38 -1 1",
|
2813 |
|
|
"41 1 -1",
|
2814 |
|
|
"47 -1 1",
|
2815 |
|
|
"48 -1 1",
|
2816 |
|
|
"49 -1 1",
|
2817 |
|
|
"1 229",
|
2818 |
|
|
"3 229",
|
2819 |
|
|
"4 229",
|
2820 |
|
|
"7 229",
|
2821 |
|
|
"15 230",
|
2822 |
|
|
"38 229",
|
2823 |
|
|
"64 230",
|
2824 |
|
|
"94 230",
|
2825 |
|
|
"95 231",
|
2826 |
|
|
"98 232",
|
2827 |
|
|
"109 230",
|
2828 |
|
|
"113 231",
|
2829 |
|
|
"115 233",
|
2830 |
|
|
"116 234",
|
2831 |
|
|
"123 235",
|
2832 |
|
|
"124 235",
|
2833 |
|
|
"125 236",
|
2834 |
|
|
"126 -237",
|
2835 |
|
|
"127 235",
|
2836 |
|
|
"168 -237",
|
2837 |
|
|
"169 249",
|
2838 |
|
|
"-1",
|
2839 |
|
|
"14",
|
2840 |
|
|
"200350 Tsk! A wizard wouldn't have to take 350 turns. This is going to cost",
|
2841 |
|
|
"200350 you a couple of points.",
|
2842 |
|
|
"300500 500 turns? That's another few points you've lost.",
|
2843 |
|
|
"501000 Are you still at it? Five points off for exceeding 1000 turns!",
|
2844 |
|
|
"1002500 Good grief, don't you *EVER* give up? Do you realize you've spent",
|
2845 |
|
|
"1002500 over 2500 turns at this? That's another ten points off, a total of",
|
2846 |
|
|
"1002500 twenty points lost for taking so long.",
|
2847 |
|
|
"-1",
|
2848 |
|
|
"0"
|
2849 |
|
|
};
|