aboutsummaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorBill Fumerola <billf@FreeBSD.org>2000-10-08 03:24:30 +0000
committerBill Fumerola <billf@FreeBSD.org>2000-10-08 03:24:30 +0000
commite3dfcf49c2aa9ce2b10b0456e3f1bbb18eea7c1c (patch)
tree6809e24e52e2536f18017defa57f41992b090c61 /games
parentabbfaeb87b11c3f36cce0d6fea443ead28648636 (diff)
downloadsrc-e3dfcf49c2aa9ce2b10b0456e3f1bbb18eea7c1c.tar.gz
src-e3dfcf49c2aa9ce2b10b0456e3f1bbb18eea7c1c.zip
Conform to BDECFLAGS
Notes
Notes: svn path=/head/; revision=66799
Diffstat (limited to 'games')
-rw-r--r--games/battlestar/battlestar.c2
-rw-r--r--games/battlestar/com1.c18
-rw-r--r--games/battlestar/com2.c11
-rw-r--r--games/battlestar/com3.c11
-rw-r--r--games/battlestar/com4.c12
-rw-r--r--games/battlestar/com5.c12
-rw-r--r--games/battlestar/com6.c20
-rw-r--r--games/battlestar/com7.c22
-rw-r--r--games/battlestar/cypher.c20
-rw-r--r--games/battlestar/dayfile.c550
-rw-r--r--games/battlestar/dayobjs.c2
-rw-r--r--games/battlestar/externs.h93
-rw-r--r--games/battlestar/fly.c39
-rw-r--r--games/battlestar/getcom.c2
-rw-r--r--games/battlestar/globals.c2
-rw-r--r--games/battlestar/init.c35
-rw-r--r--games/battlestar/nightfile.c550
-rw-r--r--games/battlestar/nightobjs.c2
-rw-r--r--games/battlestar/parse.c7
-rw-r--r--games/battlestar/room.c14
-rw-r--r--games/battlestar/save.c4
-rw-r--r--games/battlestar/words.c2
22 files changed, 787 insertions, 643 deletions
diff --git a/games/battlestar/battlestar.c b/games/battlestar/battlestar.c
index eb35e289acaf..e4b9735f1a85 100644
--- a/games/battlestar/battlestar.c
+++ b/games/battlestar/battlestar.c
@@ -54,6 +54,7 @@ static const char rcsid[] =
#include "externs.h"
+int
main(argc,argv)
int argc;
char **argv;
@@ -97,4 +98,5 @@ run:
default:
exit(1); /* Shouldn't happen */
}
+ exit(1);
}
diff --git a/games/battlestar/com1.c b/games/battlestar/com1.c
index c14f941e31c7..09fddc34ecaf 100644
--- a/games/battlestar/com1.c
+++ b/games/battlestar/com1.c
@@ -41,11 +41,16 @@ static const char rcsid[] =
#include "externs.h"
-move(thataway, token)
+void convert __P((int));
+
+int
+battlestar_move(thataway, token)
int thataway, token;
{
wordnumber++;
- if ((!notes[CANTMOVE] && !notes[LAUNCHED]) || testbit(location[position].objects, LAND) || fuel > 0 && notes[LAUNCHED])
+ if ((!notes[CANTMOVE] && !notes[LAUNCHED]) ||
+ ((testbit(location[position].objects, LAND) || fuel > 0) &&
+ notes[LAUNCHED]))
if (thataway) {
position = thataway;
newway(token);
@@ -64,6 +69,7 @@ int thataway, token;
return(1);
}
+void
convert(tothis) /* Converts day to night and vice versa. */
int tothis; /* Day objects are permanent. Night objects are added*/
{ /* at dusk, and subtracted at dawn. */
@@ -87,6 +93,7 @@ int tothis; /* Day objects are permanent. Night objects are added*/
}
}
+void
news()
{
int n;
@@ -96,7 +103,7 @@ news()
puts("An explosion of shuddering magnitude splinters bulkheads and");
puts("ruptures the battlestar's hull. You are sucked out into the");
puts("frozen void of space and killed.");
- die();
+ die(0);
}
if (gtime > 20 && position < 32)
puts("Explosions rock the battlestar.");
@@ -193,7 +200,7 @@ news()
}
if (injuries[SKULL] && injuries[INCISE] && injuries[NECK]){
puts("I'm afraid you have suffered fatal injuries.");
- die();
+ die(0);
}
for (n=0; n < NUMOFINJURIES; n++)
if (injuries[n] == 1){
@@ -221,6 +228,7 @@ news()
notes[CANTMOVE] = 0;
}
+void
crash()
{
int hurt1,hurt2;
@@ -234,7 +242,7 @@ crash()
if (!location[position].down){
puts("Your viper strikes the ground and explodes into firey fragments.");
puts("Thick black smoke billows up from the wreckage.");
- die();
+ die(0);
}
position = location[position].down;
}
diff --git a/games/battlestar/com2.c b/games/battlestar/com2.c
index faf5c52af3a8..f8b0f389da9a 100644
--- a/games/battlestar/com2.c
+++ b/games/battlestar/com2.c
@@ -41,6 +41,7 @@ static const char rcsid[] =
#include "externs.h"
+int
wearit() /* synonyms = {sheathe, sheath} */
{
int n;
@@ -102,6 +103,7 @@ wearit() /* synonyms = {sheathe, sheath} */
return(firstnumber);
}
+int
put() /* synonyms = {buckle, strap, tie} */
{
if (wordvalue[wordnumber + 1] == ON){
@@ -117,11 +119,13 @@ put() /* synonyms = {buckle, strap, tie} */
}
+int
draw() /* synonyms = {pull, carry} */
{
return(take(wear));
}
+int
use()
{
while (wordtype[++wordnumber] == ADJS && wordnumber < wordcount);
@@ -160,6 +164,7 @@ use()
return(-1);
}
+void
murder()
{
int n;
@@ -211,7 +216,7 @@ murder()
if (testbit(location[position].objects,MAN)){
puts("You strike him to the ground, and he coughs up blood.");
puts("Your fantasy is over.");
- die();
+ die(0);
}
case -1:
puts("Kill what?");
@@ -226,6 +231,7 @@ murder()
}
}
+void
ravage()
{
while (wordtype[++wordnumber] != NOUNS && wordnumber <= wordcount);
@@ -241,7 +247,7 @@ ravage()
wordnumber--;
godready = -30000;
murder();
- win = -30000;
+ bs_win = -30000;
break;
case NATIVE:
puts("The girl tries to run, but you catch her and throw her down. Her face is");
@@ -275,6 +281,7 @@ ravage()
puts("Who?");
}
+int
follow()
{
if (followfight == gtime){
diff --git a/games/battlestar/com3.c b/games/battlestar/com3.c
index a141adf8571f..22f8e0d8be07 100644
--- a/games/battlestar/com3.c
+++ b/games/battlestar/com3.c
@@ -41,6 +41,7 @@ static const char rcsid[] =
#include "externs.h"
+void
dig()
{
if (testbit(inven,SHOVEL)){
@@ -65,6 +66,7 @@ dig()
puts("You don't have a shovel.");
}
+int
jump()
{
int n;
@@ -104,6 +106,7 @@ jump()
return(0);
}
+void
bury()
{
int value;
@@ -167,6 +170,7 @@ bury()
puts("You aren't holding a shovel.");
}
+void
drink()
{
int n;
@@ -187,6 +191,7 @@ drink()
puts("I'm not thirsty.");
}
+int
shoot()
{
int firstnumber, value;
@@ -206,7 +211,7 @@ shoot()
gtime++;
printf("The %s explode%s\n",objsht[value],(objsht[value][n-1]=='s' ? (objsht[value][n-2]=='s' ? "s." : ".") : "s."));
if (value == BOMB)
- die();
+ die(0);
}
else
printf("I dont see any %s around here.\n", objsht[value]);
@@ -241,7 +246,7 @@ shoot()
case 20:
puts("The blast hits the door and it explodes into flame. The magnesium burns");
puts("so rapidly that we have no chance to escape.");
- die();
+ die(0);
default:
puts("Nothing happens.");
}
@@ -288,7 +293,7 @@ shoot()
if (testbit(location[position].objects,MAN)){
puts("The man falls to the ground with blood pouring all over his white suit.");
puts("Your fantasy is over.");
- die();
+ die(0);
}
else puts("What man?");
break;
diff --git a/games/battlestar/com4.c b/games/battlestar/com4.c
index c3b378d406c9..94532489d8c3 100644
--- a/games/battlestar/com4.c
+++ b/games/battlestar/com4.c
@@ -42,6 +42,7 @@ static const char rcsid[] =
#include <string.h>
#include "externs.h"
+int
take(from)
unsigned int from[];
{
@@ -73,7 +74,7 @@ unsigned int from[];
printf("Zap! Taken from thin air.\n");
clearbit(from,value);
if (value == MEDALION)
- win--;
+ bs_win--;
}
else if (testbit(inven,value))
printf("You're already holding%s%s.\n", (objsht[value][n-1] == 's' ? " " : " a "),objsht[value]);
@@ -186,6 +187,7 @@ unsigned int from[];
return(firstnumber);
}
+int
throw(name)
const char *name;
{
@@ -254,7 +256,7 @@ throw(name)
}
else if (value == GRENADE && testbit(location[position].objects,value)){
puts("You are blown into shreds when your grenade explodes.");
- die();
+ die(0);
}
if (wordnumber < wordcount - 1 && wordvalue[++wordnumber] == AND)
wordnumber++;
@@ -266,6 +268,7 @@ throw(name)
return(first);
}
+int
drop(name)
const char *name;
{
@@ -284,7 +287,7 @@ const char *name;
encumber -= objcumber[value];
if (value == BOMB){
puts("The bomb explodes. A blinding white light and immense concussion obliterate us.");
- die();
+ die(0);
}
if (value != AMULET && value != MEDALION && value != TALISMAN)
setbit(location[position].objects,value);
@@ -317,18 +320,21 @@ const char *name;
return(-1);
}
+int
takeoff()
{
wordnumber = take(wear);
return(drop("Dropped"));
}
+int
puton()
{
wordnumber = take(location[position].objects);
return(wearit());
}
+int
eat()
{
int firstnumber, value;
diff --git a/games/battlestar/com5.c b/games/battlestar/com5.c
index 0531f7f83cad..873cf3eb98b0 100644
--- a/games/battlestar/com5.c
+++ b/games/battlestar/com5.c
@@ -41,6 +41,7 @@ static const char rcsid[] =
#include "externs.h"
+void
kiss()
{
while (wordtype[++wordnumber] != NOUNS && wordnumber <= wordcount);
@@ -80,6 +81,7 @@ kiss()
else puts("I'd prefer not to.");
}
+void
love()
{
int n;
@@ -125,6 +127,7 @@ love()
else puts("I't doesn't seem to work.");
}
+int
zzz()
{
int oldtime;
@@ -180,6 +183,7 @@ zzz()
return(1);
}
+void
chime()
{
if ((gtime / CYCLE + 1) % 2 && OUTSIDE)
@@ -234,9 +238,11 @@ chime()
puts("I can't tell the time in here.");
}
+int
give()
{
- int obj = -1, result = -1, person = 0, firstnumber, last1, last2;
+ int obj = -1, result = -1, person = 0, firstnumber;
+ int last1 = 0, last2 = 0;
firstnumber = wordnumber;
while (wordtype[++wordnumber] != OBJECT && wordvalue[wordnumber] != AMULET && wordvalue[wordnumber] != MEDALION && wordvalue[wordnumber] != TALISMAN && wordnumber <= wordcount);
@@ -293,10 +299,10 @@ give()
godready += 3;
}
if (obj == AMULET || obj == MEDALION || obj == TALISMAN){
- win++;
+ bs_win++;
ego += 5;
power -= 5;
- if (win >= 3){
+ if (bs_win >= 3){
puts("The powers of the earth are now legitimate. You have destroyed the Darkness");
puts("and restored the goddess to her thrown. The entire island celebrates with");
puts("dancing and spring feasts. As a measure of her gratitude, the goddess weds you");
diff --git a/games/battlestar/com6.c b/games/battlestar/com6.c
index 91bd6a87762d..33fd82c52d9c 100644
--- a/games/battlestar/com6.c
+++ b/games/battlestar/com6.c
@@ -39,9 +39,13 @@ static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
+#include <signal.h>
#include "externs.h"
#include "pathnames.h"
+static void post __P((unsigned int ch));
+
+int
launch()
{
if (testbit(location[position].objects,VIPER) && !notes[CANTLAUNCH]){
@@ -63,6 +67,7 @@ launch()
return(0);
}
+int
land()
{
if (notes[LAUNCHED] && testbit(location[position].objects,LAND) && location[position].down){
@@ -79,13 +84,17 @@ land()
return(0);
}
-die() /* endgame */
+void
+die(sig) /* endgame */
+ int sig;
{
+ sig = 0;
printf("bye.\nYour rating was %s.\n", rate());
post(' ');
exit(0);
}
+void
live()
{
puts("\nYou win!");
@@ -97,14 +106,16 @@ live()
static FILE *score_fp;
+void
open_score_file()
{
if ((score_fp = fopen(_PATH_SCORE,"a")) == NULL)
perror(_PATH_SCORE);
}
+static void
post(ch)
-char ch;
+unsigned int ch;
{
struct timeval tv;
char *date;
@@ -169,6 +180,7 @@ rate()
}
}
+int
drive()
{
if (testbit(location[position].objects,CAR)){
@@ -186,6 +198,7 @@ drive()
return(-1);
}
+int
ride()
{
if (testbit(location[position].objects,HORSE)){
@@ -208,6 +221,7 @@ ride()
return(-1);
}
+void
light() /* synonyms = {strike, smoke} */
{ /* for matches, cigars */
if (testbit(inven,MATCHES) && matchcount){
@@ -217,7 +231,7 @@ light() /* synonyms = {strike, smoke} */
matchcount--;
if (position == 217){
puts("The whole bungalow explodes with an intense blast.");
- die();
+ die(0);
}
}
else puts("You're out of matches.");
diff --git a/games/battlestar/com7.c b/games/battlestar/com7.c
index a37995dd9efb..9c509ffa5fb3 100644
--- a/games/battlestar/com7.c
+++ b/games/battlestar/com7.c
@@ -41,6 +41,7 @@ static const char rcsid[] =
#include "externs.h"
+int
fight(enemy,strength)
int enemy,strength;
{
@@ -49,7 +50,7 @@ int enemy,strength;
char auxbuf[LINELENGTH];
char *next;
int i;
- int exhaustion;
+ int exhaustion = 0;
fighton:
gtime++;
@@ -58,7 +59,7 @@ fighton:
exhaustion = CYCLE/(snooze - gtime);
else {
puts("You collapse exhausted, and he pulverizes your skull.");
- die();
+ die(0);
}
if (snooze - gtime < 20)
puts("You look tired! I hope you're able to fight.");
@@ -178,7 +179,7 @@ fighton:
puts("his power grows and the walls of\nthe earth tremble.");
puts("When he touches the medallion, your chest explodes and the foundations of the\nearth collapse.");
puts("The planet is consumed by darkness.");
- die();
+ die(0);
}
if (testbit(inven,AMULET)){
clearbit(inven,AMULET);
@@ -195,22 +196,23 @@ fighton:
}
else{
puts("I'm afraid you have been killed.");
- die();
+ die(0);
}
}
else{
puts("You escape stunned and disoriented from the fight.");
puts("A victorious bellow echoes from the battlescene.");
if (back && position != back)
- move(back,BACK);
+ battlestar_move(back,BACK);
else if (ahead &&position != ahead)
- move(ahead,AHEAD);
+ battlestar_move(ahead,AHEAD);
else if (left && position != left)
- move(left,LEFT);
+ battlestar_move(left,LEFT);
else if (right && position != right)
- move(right,RIGHT);
+ battlestar_move(right,RIGHT);
else
- move(location[position].down,AHEAD);
+ battlestar_move(location[position].down,
+ AHEAD);
return(0);
}
@@ -266,7 +268,7 @@ fighton:
puts("You emerge unscathed.");
if (injuries[SKULL] && injuries[INCISE] && injuries[NECK]){
puts("I'm afraid you have suffered fatal injuries.");
- die();
+ die(0);
}
goto fighton;
}
diff --git a/games/battlestar/cypher.c b/games/battlestar/cypher.c
index e933e8b51322..e61c93845e5c 100644
--- a/games/battlestar/cypher.c
+++ b/games/battlestar/cypher.c
@@ -41,6 +41,7 @@ static const char rcsid[] =
#include "externs.h"
+int
cypher()
{
int n;
@@ -57,7 +58,7 @@ cypher()
if (location[position].access || wiz || tempwiz) {
if (!location[position].access)
puts("Zap! A gust of wind lifts you up.");
- if (!move(location[position].up, AHEAD))
+ if (!battlestar_move(location[position].up, AHEAD))
return(-1);
} else {
puts("There is no way up");
@@ -67,31 +68,32 @@ cypher()
break;
case DOWN:
- if (!move(location[position].down, AHEAD))
+ if (!battlestar_move(location[position].down,
+ AHEAD))
return(-1);
lflag = 0;
break;
case LEFT:
- if (!move(left, LEFT))
+ if (!battlestar_move(left, LEFT))
return(-1);
lflag = 0;
break;
case RIGHT:
- if (!move(right, RIGHT))
+ if (!battlestar_move(right, RIGHT))
return(-1);
lflag = 0;
break;
case AHEAD:
- if (!move(ahead, AHEAD))
+ if (!battlestar_move(ahead, AHEAD))
return(-1);
lflag = 0;
break;
case BACK:
- if (!move(back, BACK))
+ if (!battlestar_move(back, BACK))
return(-1);
lflag = 0;
break;
@@ -144,8 +146,8 @@ cypher()
case THROW:
if (wordnumber < wordcount && wordvalue[wordnumber+1] == EVERYTHING){
for (n=0; n < NUMOFOBJECTS; n++)
- if (testbit(inven,n) ||
- testbit(location[position].objects, n) && objsht[n]){
+ if ((testbit(inven,n) ||
+ testbit(location[position].objects, n)) && objsht[n]){
wordvalue[wordnumber+1] = n;
wordnumber = throw(wordvalue[wordnumber] == KICK ? "Kicked" : "Thrown");
}
@@ -417,7 +419,7 @@ cypher()
break;
case QUIT:
- die();
+ die(0);
default:
puts("How's that?");
diff --git a/games/battlestar/dayfile.c b/games/battlestar/dayfile.c
index 7f1b40aca290..fca59953af1b 100644
--- a/games/battlestar/dayfile.c
+++ b/games/battlestar/dayfile.c
@@ -44,115 +44,115 @@ static const char rcsid[] =
struct room dayfile[] = {
{ 0 },
{ "You are in the main hangar.",
- 5, 2, 9, 3, 3, 1, 0, 0,
+ { 5, 2, 9, 3, 3, 1, 0, 0 },
"This is a huge bay where many fighters and cargo craft lie. Alarms are \n\
sounding and fighter pilots are running to their ships. Above is a gallery\n\
overlooking the bay. The scream of turbo engines is coming from +. The rest\n\
of the hangar is +. There is an exit +.*\n" },
{ "This is the landing bay.",
- 1, 0, 10, 0, 0, 0, 0, 0,
+ { 1, 0, 10, 0, 0, 0, 0, 0 },
"Ships are landing here, some heavily damaged. Enemy fighters continually\n\
strafe this vulnerable port. The main hangar is +, *\n\
There is an exit +.*\n" },
{ "You are in the gallery.",
- 4, 0, 0, 0, 0, 0, 1, 0,
+ { 4, 0, 0, 0, 0, 0, 1, 0 },
"From here a view of the entire landing bay reveals that our battlestar\n\
is near destruction. Fires are spreading out of control and laser blasts\n\
lick at the shadows. The control room is +. ***\n" },
{ "You are in the control room.",
- 0, 3, 0, 0, 0, 0, 5, 0,
+ { 0, 3, 0, 0, 0, 0, 5, 0 },
"Several frantic technicians are flipping switches wildly but otherwise\n\
this room seems fairly deserted. A weapons locker has been left open.\n\
A staircase leads down. * There is a way -. ** \n" },
{ "This is the launch room.",
- 6, 1, 7, 0, 4, 1, 0, 0,
+ { 6, 1, 7, 0, 4, 1, 0, 0 },
"From the launch tubes here fighters blast off into space. Only one is left,\n\
and it is guarded by two fierce men. A staircase leads up from here.\n\
There is a cluttered workbench +. From the main hangar come sounds of great\n\
explosions. The main hangar is +. The viper launch tubes are to the -.*\n" },
{ "You are at the workbench.",
- 0, 5, 7, 0, 0, 0, 0, 0,
+ { 0, 5, 7, 0, 0, 0, 0, 0 },
"Strange and unwieldy tools are arranged here including a lunch box \n\
and pneumatic wrenches and turbo sprocket rockets.*\n\
The launch room is +. The remaining viper is +.*\n" },
{ "You are in the viper launch tube.",
- 0, 5, 0, 5, 32, 0, 0, 0,
+ { 0, 5, 0, 5, 32, 0, 0, 0 },
"The two guards are eyeing you warily! ****\n" },
{ "This is a walk in closet.",
- 22, 0, 0, 0, 0, 0, 0, 0,
+ { 22, 0, 0, 0, 0, 0, 0, 0 },
"A wardrobe of immense magnitude greets the eye. Furs and robes of kings\n\
hang on rack after rack. Silken gowns, capes woven with spun gold, and \n\
delicate synthetic fabrics are stowed here. The bedroom is +.***\n" },
{ "You are in a wide hallway leading to the main hangar.",
- 0, 0, 11, 1, 0, 0, 0, 0,
+ { 0, 0, 11, 1, 0, 0, 0, 0 },
"The walls and ceiling here have been blasted through in several places.\n\
It looks as if quite a battle has been fought for possession of the landing bay\n\
Gaping corpses litter the floor.** The hallway continues +.\n\
The main hangar is +.\n" },
{ "You are in a wide hallway leading to the landing bay.",
- 0, 0, 12, 2, 0, 0, 0, 0,
+ { 0, 0, 12, 2, 0, 0, 0, 0 },
"Most of the men and supplies needed in the main hangar come through this\n\
corridor, but the wounded are forced to use it too. It very dank and\n\
crowded here, and the floor is slippery with blood.**\n\
The hallway continues -. The landing bay is +.\n" },
{ "The hallway is very congested with rubble here.",
- 0, 0, 0, 9, 13, 1, 0, 0,
+ { 0, 0, 0, 9, 13, 1, 0, 0 },
"It is too choked with broken steel girders and other debris to continue\n\
on much farther. Above, the ceiling has caved in and it is possible to \n\
climb up. There is not much chance to go -, -, or -.\n\
But the hallway seems clearer +.\n" },
{ "A wide hallway and a more narrow walkway meet here.",
- 14, 15, 0, 10, 0, 0, 0, 0,
+ { 14, 15, 0, 10, 0, 0, 0, 0 },
"The intersection is crowded with the many wounded who have come up\n\
the wide hallway and continued +. The walkway is less crowded +.\n\
The wide hallway goes *-.\n" },
{ "You are in what was once an elegant stateroom.",
- 16, 0, 0, 0, 0, 0, 11, 0,
+ { 16, 0, 0, 0, 0, 0, 11, 0 },
"Whoever lived in this stateroom, he and his female companion\n\
were mercilessly slain in their sleep. Clothes, trinkets and personal\n\
belongings are scattered all across the floor. Through a hole in the\n\
collapsed floor I can see a hallway below. A door is +.***\n" },
{ "You're at the entrance to the sick bay.",
- 17, 12, 18, 0, 0, 0, 0, 0,
+ { 17, 12, 18, 0, 0, 0, 0, 0 },
"The wounded are entering the sick bay in loudly moaning files.\n\
The walkway continues - and +. A doctor is motioning for you to \n\
come to the -. *\n" },
{ "You're in the walkway.",
- 12, 19, 0, 0, 0, 0, 0, 0,
+ { 12, 19, 0, 0, 0, 0, 0, 0 },
"Most of the men and supplies were coming from the armory. The walkway\n\
continues -. The armory is +.**\n" },
{ "These are the executive suites of the battlestar.",
- 20, 13, 21, 22, 23, 1, 24, 0,
+ { 20, 13, 21, 22, 23, 1, 24, 0 },
"Luxurious staterooms carpeted with crushed velvet and adorned with beaten\n\
gold open onto this parlor. A wide staircase with ivory banisters leads\n\
up or down. This parlor leads into a hallway +. The bridal suite is +.\n\
Other rooms lie - and +.\n" },
{ "You're in a long dimly lit hallway.",
- 0, 14, 25, 0, 0, 0, 0, 0,
+ { 0, 14, 25, 0, 0, 0, 0, 0 },
"This part of the walkway is deserted. There is a dead end +. The\n\
entrance to the sickbay is +. The walkway turns sharply -.*\n" },
{ "This is the sick bay.",
- 0, 0, 0, 14, 0, 0, 0, 0,
+ { 0, 0, 0, 14, 0, 0, 0, 0 },
"Sinister nurses with long needles and pitiful aim probe the depths of suffering\n\
here. Only the mortally wounded receive medical attention on a battlestar,\n\
but afterwards they are thrown into the incinerators along with the rest.**\n\
Nothing but death and suffering +. The walkway is +.\n" },
{ "You're in the armory.",
- 15, 26, 0, 0, 0, 0, 0, 0,
+ { 15, 26, 0, 0, 0, 0, 0, 0 },
"An armed guard is stationed here 365 sectars a yarn to protect the magazine.\n\
The walkway is +. The magazine is +.**\n" },
{ "The hallway ends here at the presidential suite.",
- 27, 16, 0, 0, 0, 0, 0, 0,
+ { 27, 16, 0, 0, 0, 0, 0, 0 },
"The door to this suite is made from solid magnesium, and the entryway is\n\
inlaid with diamonds and fire opals. The door is ajar +. The hallway\n\
goes -.**\n" },
{ "This is the maid's utility room.",
- 0, 0, 0, 16, 0, 0, 0, 0,
+ { 0, 0, 0, 16, 0, 0, 0, 0 },
"What a gruesome sight! The maid has been brutally drowned in a bucket of\n\
Pine Sol and repeatedly stabbed in the back with a knife.***\n\
The hallway is +.\n" },
{ "This is a luxurious stateroom.",
- 0, 8, 16, 0, 0, 0, 0, 0,
+ { 0, 8, 16, 0, 0, 0, 0, 0 },
"The floor is carpeted with a soft animal fur and the great wooden furniture\n\
is inlaid with strips of platinum and gold. Electronic equipment built\n\
into the walls and ceiling is flashing wildly. The floor shudders and\n\
@@ -160,1049 +160,1049 @@ the sounds of dull explosions rumble though the room. From a window in\n\
the wall + comes a view of darkest space. There is a small adjoining\n\
room +, and a doorway +.*\n" },
{ "You are at the entrance to the dining hall.",
- 0, 0, 28, 0, 0, 0, 16, 0,
+ { 0, 0, 28, 0, 0, 0, 16, 0 },
"A wide staircase with ebony banisters leads down here.**\n\
The dining hall is to the -.*\n" },
{ "This was once the first class lounge.",
- 0, 0, 29, 0, 16, 1, 0, 0,
+ { 0, 0, 29, 0, 16, 1, 0, 0 },
"There is much rubble and destruction here that was not apparent elsewhere.\n\
The walls and ceilings have broken in in some places. A staircase with\n\
red coral banisters leads up. It is impossible to go - or -.\n\
It seems a little clearer +.*\n" },
{ "You are in a narrow stairwell.",
- 0, 17, 0, 0, 30, 1, 0, 0,
+ { 0, 17, 0, 0, 30, 1, 0, 0 },
"These dusty and decrepit stairs lead up. There is no way -. The\n\
hallway turns sharply -.**\n" },
{ "You are in the magazine.",
- 19, 0, 0, 0, 0, 0, 0, 0,
+ { 19, 0, 0, 0, 0, 0, 0, 0 },
"Rows and rows of neatly stacked ammunition for laser pistols and grenade\n\
launchers are here. The armory is +.***\n" },
{ "You're in the presidential suite.",
- 0, 20, 0, 0, 0, 0, 0, 0,
+ { 0, 20, 0, 0, 0, 0, 0, 0 },
"Apparently the president has been assassinated. A scorched figure lies\n\
face downward on the carpet clutching his chest.*\n\
The hallway leads -.**\n" },
{ "You are in the dining hall.",
- 0, 30, 31, 23, 0, 0, 0, 0,
+ { 0, 30, 31, 23, 0, 0, 0, 0 },
"This was the scene of a mass suicide. Hundreds of ambassadors and assorted\n\
dignitaries sit slumped over their breakfast cereal. I suppose the news\n\
of the cylon attack killed them. There is a strange chill in this room. I\n\
would not linger here. * The kitchen is +. Entrances + and +.\n" },
{ "The debris is very thick here.",
- 0, 11, 0, 24, 0, 0, 0, 0,
+ { 0, 11, 0, 24, 0, 0, 0, 0 },
"Broken furniture, fallen girders, and other rubble block the way.\n\
There is not much chance to continue -, -, or -.\n\
It would be best to go -.\n" },
{ "You are in the kitchen.",
- 28, 0, 0, 0, 0, 0, 0, 0,
+ { 28, 0, 0, 0, 0, 0, 0, 0 },
"This room is full of shining stainless steel and burnished bronze cookware. An \n\
assortment of tropical fruits and vegetables as well as fine meats and cheeses \n\
lies on a sterling platter. The chef, unfortunately, has been skewered like a \n\
side of beef. The dining room is +. ** There is a locked door +.\n" },
{ "You are in an arched entry leading to the dining room.",
- 0, 0, 0, 28, 0, 0, 0, 0,
+ { 0, 0, 0, 28, 0, 0, 0, 0 },
"The door leading out is bolted shut from the outside and is very strong.***\n\
The dining room is +.\n" },
{ "You are in space.",
- 33, 34, 35, 36, 37, 1, 33, 1,
+ { 33, 34, 35, 36, 37, 1, 33, 1},
"****\n" },
{ "You are in space.",
- 38, 32, 39, 40, 41, 1, 42, 1,
+ { 38, 32, 39, 40, 41, 1, 42, 1},
"****\n" },
{ "You are in space.",
- 32, 44, 45, 46, 47, 1, 48, 1,
+ { 32, 44, 45, 46, 47, 1, 48, 1},
"****\n" },
{ "You are in space.",
- 40, 45, 49, 32, 50, 1, 51, 1,
+ { 40, 45, 49, 32, 50, 1, 51, 1},
"****\n" },
{ "You are in space.",
- 41, 46, 32, 52, 53, 1, 54, 1,
+ { 41, 46, 32, 52, 53, 1, 54, 1},
"****\n" },
{ "You are in space.",
- 42, 47, 50, 53, 55, 1, 32, 1,
+ { 42, 47, 50, 53, 55, 1, 32, 1},
"****\n" },
{ "You are in space.",
- 43, 48, 51, 54, 32, 1, 56, 1,
+ { 43, 48, 51, 54, 32, 1, 56, 1},
"****\n" },
{ "You are in space.",
- 57, 33, 40, 41, 42, 1, 43, 1,
+ { 57, 33, 40, 41, 42, 1, 43, 1},
"****\n" },
{ "You are in space.",
- 39, 35, 57, 33, 58, 1, 59, 1,
+ { 39, 35, 57, 33, 58, 1, 59, 1},
"****\n" },
{ "You are in space.",
- 39, 36, 33, 59, 60, 1, 61, 1,
+ { 39, 36, 33, 59, 60, 1, 61, 1},
"****\n" },
{ "You are in space.",
- 39, 37, 58, 60, 62, 1, 33, 1,
+ { 39, 37, 58, 60, 62, 1, 33, 1},
"****\n" },
{ "You are in space.",
- 39, 38, 59, 61, 33, 1, 63, 1,
+ { 39, 38, 59, 61, 33, 1, 63, 1},
"****\n" },
{ "You are in space.",
- 34, 64, 45, 46, 47, 1, 48, 1,
+ { 34, 64, 45, 46, 47, 1, 48, 1},
"****\n" },
{ "You are in space.",
- 35, 44, 49, 34, 50, 1, 51, 1,
+ { 35, 44, 49, 34, 50, 1, 51, 1},
"****\n" },
{ "You are in space.",
- 36, 44, 34, 52, 53, 1, 54, 1,
+ { 36, 44, 34, 52, 53, 1, 54, 1},
"****\n" },
{ "You are in space.",
- 37, 44, 50, 53, 55, 1, 34, 1,
+ { 37, 44, 50, 53, 55, 1, 34, 1},
"****\n" },
{ "You are in space.",
- 38, 44, 51, 54, 34, 1, 56, 1,
+ { 38, 44, 51, 54, 34, 1, 56, 1},
"****\n" },
{ "You are in space.",
- 49, 49, 52, 35, 49, 1, 49, 1,
+ { 49, 49, 52, 35, 49, 1, 49, 1},
"****\n" },
{ "You are in space.",
- 58, 47, 49, 37, 55, 1, 35, 1,
+ { 58, 47, 49, 37, 55, 1, 35, 1},
"****\n" },
{ "You are in space.",
- 59, 48, 49, 38, 35, 1, 56, 1,
+ { 59, 48, 49, 38, 35, 1, 56, 1},
"****\n" },
{ "You are in space.",
- 52, 52, 36, 49, 52, 1, 52, 1,
+ { 52, 52, 36, 49, 52, 1, 52, 1},
"****\n" },
{ "You are in space.",
- 60, 46, 37, 52, 55, 1, 36, 1,
+ { 60, 46, 37, 52, 55, 1, 36, 1},
"****\n" },
{ "You are in space.",
- 61, 48, 38, 52, 36, 1, 56, 1,
+ { 61, 48, 38, 52, 36, 1, 56, 1},
"****\n" },
{ "You are in space.",
- 62, 55, 55, 55, 56, 1, 37, 1,
+ { 62, 55, 55, 55, 56, 1, 37, 1},
"****\n" },
{ "You are in space.",
- 56, 56, 56, 56, 38, 1, 55, 1,
+ { 56, 56, 56, 56, 38, 1, 55, 1},
"****\n" },
{ "You are in space.",
- 65, 39, 57, 57, 57, 1, 57, 1,
+ { 65, 39, 57, 57, 57, 1, 57, 1},
"****\n" },
{ "You are in space.",
- 39, 50, 49, 42, 62, 1, 40, 1,
+ { 39, 50, 49, 42, 62, 1, 40, 1},
"****\n" },
{ "You are in space.",
- 39, 51, 49, 43, 40, 1, 63, 1,
+ { 39, 51, 49, 43, 40, 1, 63, 1},
"****\n" },
{ "You are in space.",
- 39, 53, 43, 59, 62, 1, 41, 1,
+ { 39, 53, 43, 59, 62, 1, 41, 1},
"****\n" },
{ "You are in space.",
- 39, 54, 43, 59, 41, 1, 56, 1,
+ { 39, 54, 43, 59, 41, 1, 56, 1},
"****\n" },
{ "You are in space.",
- 39, 55, 62, 62, 56, 1, 42, 1,
+ { 39, 55, 62, 62, 56, 1, 42, 1},
"****\n" },
{ "You are in space.",
- 39, 56, 35, 36, 43, 1, 55, 1,
+ { 39, 56, 35, 36, 43, 1, 55, 1},
"****\n" },
{ "You are in space.",
- 44, 66, 66, 66, 66, 1, 66, 1,
+ { 44, 66, 66, 66, 66, 1, 66, 1},
"****\n" },
{ "You are in space.",
- 67, 57, 67, 67, 67, 1, 67, 1,
+ { 67, 57, 67, 67, 67, 1, 67, 1},
"****\n" },
{ "You are in space.",
- 64, 68, 68, 68, 68, 1, 68, 1,
+ { 64, 68, 68, 68, 68, 1, 68, 1},
"****\n" },
{ "You are orbiting a small blue planet.",
- 67, 67, 67, 67, 65, 1, 69, 1,
+ { 67, 67, 67, 67, 65, 1, 69, 1},
"****\n" },
{ "You are orbiting a tropical planet.",
- 68, 68, 68, 68, 66, 1, 70, 1,
+ { 68, 68, 68, 68, 66, 1, 70, 1},
"****\n" },
{ "You are flying through a dense fog.",
- 69, 69, 69, 69, 69, 1, 69, 1,
+ { 69, 69, 69, 69, 69, 1, 69, 1},
"A cold grey sea of mist is swirling around the windshield and water droplets\n\
are spewing from the wingtips. Ominous shadows loom in the darkness and it\n\
feels as if a trap is closing around us. I have lost all sense of direction.\n\
****\n" },
{ "You are approaching an island.",
- 71, 72, 73, 74, 68, 1, 0, 1,
+ { 71, 72, 73, 74, 68, 1, 0, 1},
"Coconut palms, sword ferns, orchids, and other lush vegetation drape this\n\
jagged island carved seemingly from pure emerald and set in a turquoise\n\
sea. The land rises sharply +. There is a nice beach* +.*\n" },
{ "You are flying over a mountainous region.",
- 75, 73, 76, 77, 68, 1, 0, 1,
+ { 75, 73, 76, 77, 68, 1, 0, 1},
"Below is a magnificent canyon with deep gorges, high pinnacles and\n\
waterfalls plummeting hundreds of feet into mist. Everything in sight\n\
is carpeted with a tropical green.* The ocean is +.**\n" },
{ "You are flying over the ocean.",
- 74, 78, 78, 78, 68, 1, 0, 1,
+ { 74, 78, 78, 78, 68, 1, 0, 1},
"You bank over the water and your wingtips dip low to the green waves. The\n\
sea is very shallow here and the white coral beds beneath us teem with \n\
colorful fish.****\n" },
{ "You are flying over the beach.",
- 71, 72, 79, 74, 68, 1, 80, 1,
+ { 71, 72, 79, 74, 68, 1, 80, 1},
"A warm gentle surf caresses the white coral beach here. The land rises\n\
sharply +.* The beach is lost in low cliffs and rocks +.*\n" },
{ "You are flying over a large lagoon.",
- 81, 72, 73, 82, 68, 1, 0, 1,
+ { 81, 72, 73, 82, 68, 1, 0, 1},
"Encircled by a coral reef, the palms and ferns in this sheltered spot\n\
have grown down to the water's very brink which winds tortuously inland.\n\
There looks like a small village +.***\n" },
{ "You are flying over a gently sloping plane.",
- 83, 71, 84, 85, 68, 1, 0, 1,
+ { 83, 71, 84, 85, 68, 1, 0, 1},
"This is where several alluvial fans and ancient lava flows have run\n\
together forming a fertile plane choked with vegetation. It would be\n\
impossible to land safely here.* The terrain is more rugged +.**\n" },
{ "You are flying through a gorge.",
- 0, 0, 86, 71, 68, 1, 102, 1,
+ { 0, 0, 86, 71, 68, 1, 102, 1},
"This narrow, steep sided canyon is lined with waving ferns. The floor is of\n\
light gravel with many freshets pouring from the walls and running along it.\n\
The gorge leads to the sea** +, and to a tumultuous origin +.\n" },
{ "You are flying over a plantation.",
- 85, 81, 71, 88, 68, 1, 89, 1,
+ { 85, 81, 71, 88, 68, 1, 89, 1},
"Rows of palms, papayas, mangoes, kiwi, as well as smaller fields of sugar\n\
cane and pineapple are growing here. It might be possible to land here, but\n\
I wouldn't advise it.* There looks like two small settlements + \n\
and *+.\n" },
{ "You are over the ocean.",
- 72, 78, 79, 74, 68, 1, 0, 1,
+ { 72, 78, 79, 74, 68, 1, 0, 1},
"The deep green swells foam and roll into the shore **+*.\n" },
{ "You are flying along the coast.",
- 86, 72, 90, 73, 68, 1, 91, 1,
+ { 86, 72, 90, 73, 68, 1, 91, 1},
"The coastline here is very rocky with little or no sand. The surf in some\n\
places is violent and explodes in a shower of sparkling spray.\n\
There is a winding road below which closely follows the shore. ****\n" },
{ "This is a beautiful coral beach.",
- 106, 0, 107, 108, 73, 0, 0, 0,
+ { 106, 0, 107, 108, 73, 0, 0, 0 },
"Fine silver sand kissed lightly by warm tropical waters stretches at least\n\
30 meters here from the ocean to under gently swaying palms +.***\n" },
{ "You are flying over a small fishing village.",
- 77, 74, 71, 82, 68, 1, 92, 1,
+ { 77, 74, 71, 82, 68, 1, 92, 1},
"A few thatched huts a short distance from the water and row of more modern\n\
bungalows on either side of a dirt road are all that is here. The road\n\
continues on ***+.\n" },
{ "You are flying over a clearing.",
- 88, 72, 74, 87, 68, 1, 93, 1,
+ { 88, 72, 74, 87, 68, 1, 93, 1},
"There is a dock here (big enough for a seaplane) leading to a grassy\n\
meadow and a road. Some people are having a party down there. Below is\n\
a good landing site. ****\n" },
{ "You are flying over the shore.",
- 94, 75, 95, 96, 68, 1, 0, 1,
+ { 94, 75, 95, 96, 68, 1, 0, 1},
"Rocky lava flows or coarse sandy beaches are all that is here except for\n\
sparse herbs and weeds.****\n" },
{ "You are flying in a wide valley.",
- 95, 97, 86, 75, 68, 1, 98, 1,
+ { 95, 97, 86, 75, 68, 1, 98, 1},
"This is a shallow valley yet the floor is obscured by a thick mist.\n\
The valley opens to the sea +. The mist grows thicker +.**\n" },
{ "You are flying near the shore.",
- 96, 77, 75, 99, 68, 1, 0, 1,
+ { 96, 77, 75, 99, 68, 1, 0, 1},
"Very tall palm trees growing in neatly planted rows march off from the \n\
water here towards the hills and down to the flat lands *+.*\n\
There is a nice beach +.\n" },
{ "You are flying around the very tip of the island.",
- 95, 79, 90, 84, 68, 1, 0, 1,
+ { 95, 79, 90, 84, 68, 1, 0, 1},
"There is no beach here for sheer cliffs rise several hundred feet\n\
to a tree covered summit. Far below, the blue sea gnaws voraciously at\n\
the roots of these cliffs. The island bends around +** and +.\n" },
{ "You are flying along the coastline.",
- 99, 82, 88, 100, 68, 1, 101, 1,
+ { 99, 82, 88, 100, 68, 1, 101, 1},
"There is a narrow strip of sand here lined with ferns and shrubs, but very\n\
few trees. The beach is barley wide enough to land on. The beach continues\n\
on -.* There are some buildings +.*\n" },
{ "You are flying over several cottages and buildings",
- 99, 82, 77, 87, 68, 1, 103, 1,
+ { 99, 82, 77, 87, 68, 1, 103, 1},
"The grounds here are landscaped with palm trees, ferns, orchids, and beds of\n\
flowering plumeria and antheriums. Directly below is a small ornate white\n\
house with a belltower, a lush green lawn, and a spurting fountain.\n\
Small dirt roads go + and +.**\n" },
{ "You are in a field of sugar cane.",
- 109, 110, 111, 112, 77, 0, 0, 0,
+ { 109, 110, 111, 112, 77, 0, 0, 0 },
"These strong, thick canes give little shelter but many cuts and scrapes.\n\
There are some large trees ***+.\n" },
{ "You are flying over the ocean.",
- 95, 78, 90, 86, 68, 1, 0, 1,
+ { 95, 78, 90, 86, 68, 1, 0, 1},
"The water is a placid turquoise and so clear that fish and sharks\n\
many fathoms below are clearly visible.****\n" },
{ "You are on the coast road.",
- 113, 114, 115, 116, 79, 0, 0, 0,
+ { 113, 114, 115, 116, 79, 0, 0, 0 },
"The road winds close to the shore here and the sound of crashing surf is\n\
deafening.* The water is +. The road continues - and -.\n" },
{ "You are on the main street of the village.",
- 117, 118, 119, 120, 81, 0, 0, 0,
+ { 117, 118, 119, 120, 81, 0, 0, 0 },
"Thatched roofs and outrigger canoes, palm trees and vacation bungalows, and\n\
comely natives in a tropical paradise all make this a fantasy come true.\n\
There is an open bungalow +.* The road continues - and -.\n" },
{ "You are at the sea plane dock.",
- 121, 122, 123, 124, 82, 0, 0, 0,
+ { 121, 122, 123, 124, 82, 0, 0, 0 },
"Native girls with skin of gold, clad only in fragrant leis and lavalavas,\n\
line the dockside to greet you. A couple of ukulele plucking islanders and a\n\
keyboard player are adding appropriate music. A road crosses the clearing \n\
+*. There are some tables set up +.*\n" },
{ "You are flying over the ocean.",
- 94, 83, 95, 96, 68, 1, 0, 1,
+ { 94, 83, 95, 96, 68, 1, 0, 1},
"Sea weeds and kelp surge in the waves off shore here. The ocean becomes \n\
much deeper +.***\n" },
{ "You are flying along the coast.",
- 94, 84, 86, 83, 68, 1, 0, 1,
+ { 94, 84, 86, 83, 68, 1, 0, 1},
"The land is very low here with a river running into the sea +. There\n\
is a wide valley opening up +. The very tip of the island is +.*\n" },
{ "You are flying along the coast.",
- 94, 85, 83, 99, 68, 1, 0, 1,
+ { 94, 85, 83, 99, 68, 1, 0, 1},
"There are some secluded sandy stretches of beach here, but too many rocky\n\
outcroppings of lava to land. There is a nicer beach ***+.\n" },
{ "You are lost in a sea of fog.",
- 97, 104, 97, 97, 97, 1, 0, 1,
+ { 97, 104, 97, 97, 97, 1, 0, 1},
"What have you gotten us into?\n\
I can't see a thing! ****\n" },
{ "You are on a gravel wash.",
- 125, 126, 127, 128, 84, 0, 0, 0,
+ { 125, 126, 127, 128, 84, 0, 0, 0 },
"The sound of cascading water is the background for a diluted chorus of \n\
gurgling, splashing, and enchantingly delicate singing. Great billows\n\
of steam are rising *+.**\n" },
{ "You are flying over a wide beach.",
- 96, 88, 85, 87, 68, 1, 105, 1,
+ { 96, 88, 85, 87, 68, 1, 105, 1},
"Unlike the leeward beaches, few coconut palms grow here but a well groomed\n\
lawn and garden with traipsing stone walks leads down to the sand.*\n\
There are some buildings +. Some trees are growing +.*\n" },
{ "You are flying over the ocean.",
- 100, 100, 87, 100, 68, 1, 0, 1,
+ { 100, 100, 87, 100, 68, 1, 0, 1},
"The sea is a perfectly clear blue with a white sandy bottom. No coral\n\
grows underwater here, but the force of the waves is broken by the steep\n\
incline.****\n" },
{ "You are on a narrow strip of sand.",
- 129, 130, 131, 0, 87, 0, 0, 0,
+ { 129, 130, 131, 0, 87, 0, 0, 0 },
"Rather coarse sand makes this beach very steep and only a few meters wide.\n\
A fresh ocean breeze is rustling the ferns **+.*\n" },
{ "This is Fern Canyon.",
- 0, 0, 132, 133, 76, 0, 0, 0,
+ { 0, 0, 132, 133, 76, 0, 0, 0 },
"Delicate waving ferns flourish here, suckled by warm water dripping from \n\
every fissure and crevice in the solid rock walls.\n\
The canyon winds **-, and -.\n" },
{ "This is the front lawn.",
- 134, 135, 136, 137, 88, 0, 0, 0,
+ { 134, 135, 136, 137, 88, 0, 0, 0 },
"There is a small fountain here where the driveway meets the lawn.\n\
Across the driveway, +, is an ornate white house with and elegant \n\
woodworking. The bargeboards are carved with fylfots, the ancient \n\
symbols of luck. Even a bell tower has been built here.* There is a \n\
road + which turns into the driveway.*\n" },
{ "You have just crossed the crest of a mountain.",
- 97, 79, 86, 71, 68, 1, 0, 1,
+ { 97, 79, 86, 71, 68, 1, 0, 1},
"The fog vanished mysteriously as we flew over the crest.*\n\
Far + I can see the ocean.**\n" },
{ "You are on a sandy beach.",
- 138, 139, 140, 0, 99, 0, 0, 0,
+ { 138, 139, 140, 0, 99, 0, 0, 0 },
"This is the only good beach on the weather side of the island. Fine coral\n\
sand, a fresh sea breeze, and dramatic surf add to its appeal.**\n\
Stone steps lead to the gardens +.*\n" },
{ "You are among palm trees near the shore.",
- 141, 80, 142, 143, 73, 0, 0, 0,
+ { 141, 80, 142, 143, 73, 0, 0, 0 },
"Arching coconut palms laden with fruit provide a canopy for the glistening\n\
white sand and sparse grasses growing here. The forest grows denser +.\n\
The ocean is +.**\n" },
{ "You are walking along the beach.",
- 144, 0, 145, 80, 73, 0, 0, 0,
+ { 144, 0, 145, 80, 73, 0, 0, 0 },
"The warm tropical waters nuzzle your ankles as you walk. Above is a fiercely\n\
blue sky. The slope of the sand is so gentle that two hundred meters\n\
offshore the water is only knee deep.** There are some rocks +.*\n" },
{ "You are walking along the beach.",
- 146, 0, 80, 147, 73, 0, 0, 0,
+ { 146, 0, 80, 147, 73, 0, 0, 0 },
"Many beautiful shells have been washed up here including bright yellow \n\
cowries, chocolate colored murex, orange conchs, striped tritons and the\n\
deadly cone shells.****\n" },
{ "You are in a papaya grove.",
- 148, 89, 149, 150, 77, 0, 0, 0,
+ { 148, 89, 149, 150, 77, 0, 0, 0 },
"Green slender trees no taller than three meters bulge with their\n\
orange succulent fruit. There are some tall trees +.***\n" },
{ "You are in a field of pineapple.",
- 89, 151, 152, 153, 77, 0, 0, 0,
+ { 89, 151, 152, 153, 77, 0, 0, 0 },
"The sharp dagger like pineapple leaves can pierce the flesh and hold fast\n\
a skewered victim with tiny barbs.* The field ends +.**\n" },
{ "You are in a field of kiwi plants.",
- 149, 154, 155, 89, 77, 0, 0, 0,
+ { 149, 154, 155, 89, 77, 0, 0, 0 },
"Round hairy fruit hang from staked vines here. There are some trees +\n\
and +. The field ends in a dirt road +.*\n" },
{ "You are in a large grove of coconuts.",
- 150, 153, 89, 156, 77, 0, 0, 0,
+ { 150, 153, 89, 156, 77, 0, 0, 0 },
"These trees are much taller than any growing near the shore plus the fat,\n\
juicy coconuts have been selectively cultivated. The grove continues\n\
+, +, *and +.\n" },
{ "You are in the woods.",
- 157, 91, 158, 116, 79, 0, 0, 0,
+ { 157, 91, 158, 116, 79, 0, 0, 0 },
"Tropical undergrowth makes the going rough here. Sword ferns give no strong\n\
foot hold and the dangling vines would gladly throttle one. Strange cackling\n\
noises are coming from somewhere +.***\n" },
{ "You are at the shore.",
- 91, 0, 159, 145, 79, 0, 0, 0,
+ { 91, 0, 159, 145, 79, 0, 0, 0 },
"Explosions of surf jetting out of underwater tunnels here make it\n\
impossible to climb down to a small cave entrance below. Only at rare\n\
minus tides would it be possible to enter.*** The beach is better +.\n" },
{ "You are on the coast road.",
- 158, 161, 162, 91, 79, 0, 0, 0,
+ { 158, 161, 162, 91, 79, 0, 0, 0 },
"The road is beginning to turn inland.* I can hear the surf +. The road\n\
continues +.*\n" },
{ "The road winds deeper into the trees.",
- 163, 142, 91, 164, 79, 0, 0, 0,
+ { 163, 142, 91, 164, 79, 0, 0, 0 },
"Only narrow sunbeams filter through the foliage above. The moist rich earth\n\
has nurtured a myriad of trees, shrubs, and flowers to grow here. The\n\
road continues - and *- from here.*\n" },
{ "This is the front porch of the bungalow.",
- 165, 92, 0, 0, 81, 0, 0, 0,
+ { 165, 92, 0, 0, 81, 0, 0, 0 },
"These wooden steps and porch are very bucolic. A little woven mat on the \n\
doorstep reads \"Don't Tread on Me\". The open front door is +.\n\
A stone walk leads to the main street +.**\n" },
{ "You are on a path leading to the lagoon.",
- 92, 166, 167, 168, 81, 0, 0, 0,
+ { 92, 166, 167, 168, 81, 0, 0, 0 },
"This path trampled fern, grass, sapling, and anything else that got in its\n\
way.* The water is +.**\n" },
{ "This is a dirt road.",
- 169, 118, 170, 92, 81, 0, 0, 0,
+ { 169, 118, 170, 92, 81, 0, 0, 0 },
"**The road continues on - here for some distance. A village is +.\n" },
{ "You are on a dirt road.",
- 171, 118, 92, 172, 81, 0, 0, 0,
+ { 171, 118, 92, 172, 81, 0, 0, 0 },
"**There is a small village +. The road continues +.\n" },
{ "You are on a dirt road.",
- 173, 93, 174, 175, 82, 0, 0, 0,
+ { 173, 93, 174, 175, 82, 0, 0, 0 },
"The light tan soil of the road contrasts artistically with the lush green\n\
vegetation and searing blue sky.* There is a clearing and many people +.\n\
The road continues - and -.\n" },
{ "You are at the seaplane dock.",
- 93, 0, 176, 177, 82, 0, 0, 0,
+ { 93, 0, 176, 177, 82, 0, 0, 0 },
"Several muscular, bronze skinned men greet you warmly as you pass under\n\
a thatched shelter above the dock here. Polynesian hospitality.\n\
There is a clearing +.* A trail runs around the lagoon + and +.\n" },
{ "There are some tables on the lawn here.",
- 121, 122, 123, 93, 82, 0, 0, 0,
+ { 121, 122, 123, 93, 82, 0, 0, 0 },
"Hors d'oeuvres, canapes, mixed drinks, and various narcotic drugs along with\n\
cartons of Di Gel fill the tables to overflowing. Several other guests are\n\
conversing and talking excitedly****.\n" },
{ "You are nosing around in the bushes.",
- 124, 124, 93, 124, 82, 0, 0, 0,
+ { 124, 124, 93, 124, 82, 0, 0, 0 },
"There is little here but some old beer cans. You are making fools out of\n\
us in front of the other guests.** It would be best to go -.*\n" },
{ "You are walking in a dry stream bed.",
- 178, 98, 179, 0, 84, 0, 0, 0,
+ { 178, 98, 179, 0, 84, 0, 0, 0 },
"The large cobblestones are difficult to walk on. No sunlight reaches\n\
below a white canopy of fog seemingly generated from *+. A dirt path \n\
along the wash is +. A high bank is impossible to climb +.\n" },
{ "You are at the thermal pools.",
- 98, 0, 180, 181, 84, 0, 0, 0,
+ { 98, 0, 180, 181, 84, 0, 0, 0 },
"Several steaming fumaroles and spluttering geysers drenched by icy mountain\n\
waters from a nearby waterfall heat half a dozen natural pools to a\n\
delicious 42 degrees. Enchantingly beautiful singing seems to flow from the\n\
water itself as it tumbles down the falls.*** There is a mossy entrance\n\
to a cave +.\n" },
{ "You are in the woods.",
- 127, 180, 182, 98, 84, 0, 0, 0,
+ { 127, 180, 182, 98, 84, 0, 0, 0 },
"Coniferous trees girded by wild huckleberries, elderberries, salmonberries\n\
and thimbleberries enjoy a less tropical climate here in the high mountains.\n\
*The sound of rushing water is coming from +.**\n" },
{ "You are on a dirt trail.",
- 179, 181, 98, 0, 84, 0, 0, 0,
+ { 179, 181, 98, 0, 84, 0, 0, 0 },
"The trail seems to start here and head -.** High cliffs border the \n\
trail +.\n" },
{ "You are walking along the beach.",
- 183, 101, 184, 0, 87, 0, 0, 0,
+ { 183, 101, 184, 0, 87, 0, 0, 0 },
"A rather unnerving surf explodes onto the beach here and dashes itself into\n\
spray on the steep incline. The beach continues + and +.**\n" },
{ "You are walking along the beach.",
- 101, 185, 186, 0, 87, 0, 0, 0,
+ { 101, 185, 186, 0, 87, 0, 0, 0 },
"This is not a very nice beach. The coarse sand hurts my feet.****\n" },
{ "You are walking through some ferns.",
- 184, 186, 187, 101, 87, 0, 0, 0,
+ { 184, 186, 187, 101, 87, 0, 0, 0 },
"This is a wide field growing only ferns and small shrubs.** The \n\
ocean is *+.\n" },
{ "You are in a narrow canyon.",
- 0, 0, 188, 102, 76, 0, 0, 0,
+ { 0, 0, 188, 102, 76, 0, 0, 0 },
"The steep sides here squeeze a little freshet through a gauntlet like\n\
series of riffles and pools.****\n" },
{ "The canyon is much wider here.",
- 0, 0, 102, 189, 76, 0, 0, 0,
+ { 0, 0, 102, 189, 76, 0, 0, 0 },
"The sheer rock walls rise 10 meters to the forest above. A slender \n\
waterfall careens away from the face of the rock high above and showers\n\
the gravel floor with sparkling raindrops.** The canyon continues -\n\
and -.\n" },
{ "You are on the front porch of the cottage.",
- 190, 103, 0, 0, 0, 0, 0, 0,
+ { 190, 103, 0, 0, 0, 0, 0, 0 },
"Several giggling native girls came running down the steps as you approached\n\
and headed on down the road. On the fern rimmed porch is a small table with\n\
matching white wrought iron chairs cushioned with red velvet. The front\n\
door leads -. The lawn and fountain are +.**\n" },
{ "You are in a palm grove.",
- 103, 191, 192, 105, 88, 0, 0, 0,
+ { 103, 191, 192, 105, 88, 0, 0, 0 },
"****\n" },
{ "You are on a dirt road.",
- 193, 192, 245, 103, 88, 0, 0, 0,
+ { 193, 192, 245, 103, 88, 0, 0, 0 },
"There is a large village +. The road cleaves a coconut plantation +.\n\
A small dirt road goes -, and a drive way peals off +.\n" },
{ "You are in a field of small shrubs.",
- 184, 186, 103, 187, 88, 0, 0, 0,
+ { 184, 186, 103, 187, 88, 0, 0, 0 },
"**Pine and other coniferous saplings have been planted here. The rich brown\n\
soil is well tilled and watered. Across a large lawn, there is a small\n\
cottage +. I can feel a delicious sea breeze blowing from +.\n" },
{ "The beach is pretty rocky here.",
- 194, 105, 195, 0, 96, 0, 0, 0,
+ { 194, 105, 195, 0, 96, 0, 0, 0 },
"Dangerous surf and lava outcroppings make this a treacherous strand.\n\
The beach is nicer* +.**\n" },
{ "The beach is almost 10 meters wide here.",
- 105, 183, 196, 0, 99, 0, 0, 0,
+ { 105, 183, 196, 0, 99, 0, 0, 0 },
"The sand has become more coarse and the beach steeper.* It gets \n\
worse +.**\n" },
{ "You are in the gardens.",
- 195, 196, 197, 105, 99, 0, 0, 0,
+ { 195, 196, 197, 105, 99, 0, 0, 0 },
"Lush green lawns studded with palms and benches stretch as far as the eye\n\
can see.** A path leads -. Stone steps lead down to the beach +.\n" },
{ "You are on the coast road.",
- 198, 106, 163, 199, 73, 0, 0, 0,
+ { 198, 106, 163, 199, 73, 0, 0, 0 },
"The forest is dense on either side and conceals the road from anyone\n\
approaching it.** The road continues - and -.\n" },
{ "You are in the forest.",
- 116, 107, 91, 106, 73, 0, 0, 0,
+ { 116, 107, 91, 106, 73, 0, 0, 0 },
"There are trees and ferns all around.****\n" },
{ "You are in the forest.",
- 199, 108, 106, 146, 73, 0, 0, 0,
+ { 199, 108, 106, 146, 73, 0, 0, 0 },
"There are trees and ferns all around.****\n" },
{ "You are in a copse.",
- 142, 107, 145, 80, 0, 0, 0, 0,
+ { 142, 107, 145, 80, 0, 0, 0, 0 },
"This is a secret hidden thicket only noticeable from the beach. Someone\n\
has been digging here recently.****\n" },
{ "You are at the tide pools.",
- 91, 0, 114, 107, 79, 0, 0, 0,
+ { 91, 0, 114, 107, 79, 0, 0, 0 },
"These rocks and pools are the home for many sea anemones and crustaceans.\n\
**The surf is very rough +. There is a nice beach +.\n" },
{ "You are in the forest.",
- 199, 108, 143, 0, 73, 0, 0, 0,
+ { 199, 108, 143, 0, 73, 0, 0, 0 },
"This is a shallow depression sheltered from the wind by a thick growth of \n\
thorny shrubs. It looks like someone has camped here. There is a fire pit\n\
with some dry sticks and grass nearby.* The beach is +.* The thorny\n\
shrubs block the way -.\n" },
{ "You are at the mouth of the lagoon.",
- 200, 0, 108, 201, 74, 0, 0, 0,
+ { 200, 0, 108, 201, 74, 0, 0, 0 },
"The beach ends here where the coral reef rises to form a wide lagoon\n\
bending inland. A path winds around the lagoon to the -.*\n\
The beach continues on -. Only water lies +.\n" },
{ "You are in a breadfruit grove.",
- 202, 109, 203, 204, 77, 0, 0, 0,
+ { 202, 109, 203, 204, 77, 0, 0, 0 },
"The tall trees bend leisurely in the breeze, holding many round breadfruits\n\
close to their large serrated leaves. There are coconut palms +,\n\
*+, and +.\n" },
{ "You are in a grove of mango trees.",
- 203, 111, 205, 109, 77, 0, 0, 0,
+ { 203, 111, 205, 109, 77, 0, 0, 0 },
"The juicy yellow red fruits are nearly ripe on the trees here. There are\n\
some coconut palms +. There are some vines +. There is a road +.*\n" },
{ "You are in a grove of coconut palms.",
- 204, 112, 109, 206, 77, 0, 0, 0,
+ { 204, 112, 109, 206, 77, 0, 0, 0 },
"All I can see around us are palm trees.****\n" },
{ "You are in a coconut grove.",
- 110, 207, 208, 209, 77, 0, 0, 0,
+ { 110, 207, 208, 209, 77, 0, 0, 0 },
"There are countless trees here.****\n" },
{ "You are in a field of pineapple.",
- 154, 208, 210, 110, 77, 0, 0, 0,
+ { 154, 208, 210, 110, 77, 0, 0, 0 },
"The sharp leaves are cutting me to ribbons. There is a road **+.\n\
More pineapple +.\n" },
{ "You are in a coconut grove.",
- 112, 209, 110, 211, 77, 0, 0, 0,
+ { 112, 209, 110, 211, 77, 0, 0, 0 },
"There is a field of pineapple **+.*\n" },
{ "You are on the edge of a kiwi and pineapple field.",
- 111, 152, 155, 110, 77, 0, 0, 0,
+ { 111, 152, 155, 110, 77, 0, 0, 0 },
"An irrigation ditch separates the two fields here. There is a road **+.*\n" },
{ "This is a dirt road.",
- 205, 210, 212, 111, 77, 0, 0, 0,
+ { 205, 210, 212, 111, 77, 0, 0, 0 },
"The road runs - and - here.**\n" },
{ "You are in a palm grove.",
- 206, 211, 112, 213, 77, 0, 0, 0,
+ { 206, 211, 112, 213, 77, 0, 0, 0 },
"There are palm trees all around us.****\n" },
{ "You are on the edge of a small clearing.",
- 157, 113, 157, 157, 79, 0, 0, 0,
+ { 157, 113, 157, 157, 79, 0, 0, 0 },
"The ground is rather marshy here and darting in and out of the many tussocks\n\
is a flock of wild chicken like fowl.****\n" },
{ "You are in the woods.",
- 158, 115, 215, 113, 79, 0, 0, 0,
+ { 158, 115, 215, 113, 79, 0, 0, 0 },
"You have walked a long way and found only trees. ****\n" },
{ "You are walking along the shore.",
- 115, 0, 214, 114, 86, 0, 0, 0,
+ { 115, 0, 214, 114, 86, 0, 0, 0 },
"You are now about 10 meters above the surf on a gently rising cliffside.**\n\
The land rises +. There is a beach far +.\n" },
{ "You are just inside the entrance to the sea cave.",
- 246, 114, 0, 0, 114, 1, 0, 0,
+ { 246, 114, 0, 0, 114, 1, 0, 0 },
"The sound of water dripping in darkness and the roar of the ocean just outside\n\
create a very unwelcoming atmosphere inside this cave. Only on rare occasions\n\
such as this is it possible to enter the forbidden catacombs... The cave\n\
continues -.***\n" },
{ "You are in a secret nook beside the road.",
- 115, 159, 162, 91, 79, 0, 0, 0,
+ { 115, 159, 162, 91, 79, 0, 0, 0 },
"Hidden from all but the most stalwart snoopers are some old clothes, empty\n\
beer cans and a trash baggie full of used Huggies and ordure. Lets get\n\
back to the road +.***\n" },
{ "You are on the coast road.",
- 215, 214, 0, 115, 86, 0, 0, 0,
+ { 215, 214, 0, 115, 86, 0, 0, 0 },
"The road turns abruptly - here, avoiding the cliffs near the shore\n\
+ and +.*\n" },
{ "You are on a dirt road.",
- 216, 116, 113, 141, 79, 0, 0, 0,
+ { 216, 116, 113, 141, 79, 0, 0, 0 },
"The roadside is choked with broad leaved plants fighting for every breath of\n\
sunshine. The palm trees are taller than at the shore yet bend over the road \n\
forming a canopy. The road continues *- and *-.\n" },
{ "You have discovered a hidden thicket near the road.",
- 163, 142, 116, 106, 73, 0, 0, 0,
+ { 163, 142, 116, 106, 73, 0, 0, 0 },
"Stuffed into a little bundle here is a bloody silken robe and many beer cans.\n\
*Some droplets of blood and a major spill sparkle farther +.\n\
The road is +.*\n" },
{ "You are in the living room.",
- 0, 117, 217, 218, 0, 0, 0, 0,
+ { 0, 117, 217, 218, 0, 0, 0, 0 },
"A decorative entry with fresh flowers and wall to wall carpeting leads into\n\
the living room here where a couch and two chairs converse with an end table.\n\
*The exit is +.* The bedroom is +.\n" },
{ "You are at the lagoon.",
- 118, 0, 167, 168, 81, 0, 0, 0,
+ { 118, 0, 167, 168, 81, 0, 0, 0 },
"There are several outrigger canoes pulled up on a small beach here and a\n\
catch of colorful fish is drying in the sun. There are paths leading \n\
off -*, -, and -.\n" },
{ "You are at the lagoon.",
- 118, 0, 170, 166, 81, 0, 0, 0,
+ { 118, 0, 170, 166, 81, 0, 0, 0 },
"This is a grassy little spot near the water. A sightly native girl is frolicking\n\
in the water close to shore here.** The path continues - and -. \n" },
{ "You are at the lagoon.",
- 118, 0, 166, 172, 81, 0, 0, 0,
+ { 118, 0, 166, 172, 81, 0, 0, 0 },
"The path meanders through tussocks of grass, ferns, and thorny bushes here\n\
and continues on **- and -.\n" },
{ "You are in the woods.",
- 219, 119, 220, 92, 81, 0, 0, 0,
+ { 219, 119, 220, 92, 81, 0, 0, 0 },
"There are plenty of ferns and thorny bushes here! ****\n" },
{ "You are on a dirt road.",
- 220, 167, 199, 119, 74, 0, 0, 0,
+ { 220, 167, 199, 119, 74, 0, 0, 0 },
"The road winds rather close to a large lagoon here and many sedges and tall\n\
grasses line the shoulder *+. The road continues - and -.\n" },
{ "You are in the woods beside the road.",
- 221, 120, 92, 222, 81, 0, 0, 0,
+ { 221, 120, 92, 222, 81, 0, 0, 0 },
"The forest grows darker +. The road is +.**\n" },
{ "The road crosses the lagoon here.",
- 222, 0, 120, 174, 81, 0, 0, 0,
+ { 222, 0, 120, 174, 81, 0, 0, 0 },
"Coursing through the trees, the road at this point bridges a watery finger\n\
of the lagoon.* The water is +. The road continues - and -.\n" },
{ "You are in a coconut palm grove.",
- 223, 121, 224, 225, 82, 0, 0, 0,
+ { 223, 121, 224, 225, 82, 0, 0, 0 },
"The tall palms are planted about 30 feet apart with a hardy deep green grass\n\
filling the spaces in between. There are tire tracks through the grass. The\n\
grove continues -. There is a road +.**\n" },
{ "You are walking along a dirt road.",
- 224, 176, 172, 121, 82, 0, 0, 0,
+ { 224, 176, 172, 121, 82, 0, 0, 0 },
"You are nearing the lagoon.** The road continues - and -.\n" },
{ "You are on a dirt road.",
- 225, 177, 121, 226, 82, 0, 0, 0,
+ { 225, 177, 121, 226, 82, 0, 0, 0 },
"The road turns abruptly - here, entering a grove of palm trees.* The road\n\
also continues - toward the lagoon.*\n" },
{ "You are on a trail running around the lagoon.",
- 172, 0, 0, 122, 82, 0, 0, 0,
+ { 172, 0, 0, 122, 82, 0, 0, 0 },
"The dark waters brush the trail here and the path crosses a bridge +.\n\
There is deep water + and +. The trail continues -.\n" },
{ "This is the mouth of the lagoon.",
- 175, 0, 122, 227, 82, 0, 0, 0,
+ { 175, 0, 122, 227, 82, 0, 0, 0 },
"The coral reef wraps around a natural bay here to create a wide lagoon which\n\
winds tortuously inland.** A trail goes around the lagoon +. The beach\n\
is +.\n" },
{ "You are in a dry stream bed.",
- 0, 125, 0, 0, 84, 0, 0, 0,
+ { 0, 125, 0, 0, 84, 0, 0, 0 },
"The dry wash drains over a tall precipice here into a turbid morass below. The\n\
most noisome stench imaginable is wafting up to defile our nostrils. Above,\n\
the lurid sun glows brown through a strange mist.* The only direction \n\
I'm going is -.**\n" },
{ "You are on a dirt path along the wash.",
- 0, 128, 125, 228, 84, 0, 0, 0,
+ { 0, 128, 125, 228, 84, 0, 0, 0 },
"This path looks more like a deer trail. It scampers away ***+.\n" },
{ "The thermal pools flow into a stream here.",
- 127, 0, 229, 126, 84, 0, 0, 0,
+ { 127, 0, 229, 126, 84, 0, 0, 0 },
"The gurgling hot waters pour over boulders into a swiftly flowing\n\
stream **+. The pools are +.\n" },
{ "You are at the entrance to a cave.",
- 128, 230, 126, 0, 84, 0, 0, 0,
+ { 128, 230, 126, 0, 84, 0, 0, 0 },
"A tall narrow fissure in the rock cliffs here has become a well traveled\n\
passage way. A hoof beaten dirt path leads directly into it. A curl of\n\
steam is trailing from a corner of the fissure's gaping mouth. The path\n\
leads - and -. The pools are +.*\n" },
{ "You are in the woods.",
- 182, 229, 182, 127, 84, 0, 0, 0,
+ { 182, 229, 182, 127, 84, 0, 0, 0 },
"Wild berry bushes plump with fruit and thorns tangle your every effort to\n\
proceed.* The sound of rushing water is +.**\n" },
{ "You are walking along the beach.",
- 139, 129, 184, 0, 99, 0, 0, 0,
+ { 139, 129, 184, 0, 99, 0, 0, 0 },
"Some dunes here progress inland and make it impossible to get very far in that\n\
direction. The beach continues - and -.* The ocean is +.\n" },
{ "You are in the dunes.",
- 183, 101, 184, 129, 87, 0, 0, 0,
+ { 183, 101, 184, 129, 87, 0, 0, 0 },
"The endless rolling and pitching sand dunes are enough to make one very queasy!\n\
The only way I'm going is ***+.\n" },
{ "This is a lousy beach.",
- 130, 0, 0, 0, 87, 0, 0, 0,
+ { 130, 0, 0, 0, 87, 0, 0, 0 },
"Volcanic and viciously sharp bitted grains of sand here bite like cold steel\n\
into my tender feet. I refuse to continue on. Let's get out of here. The\n\
beach is better +.***\n" },
{ "You are in a field of sparse ferns.",
- 131, 185, 187, 130, 87, 0, 0, 0,
+ { 131, 185, 187, 130, 87, 0, 0, 0 },
"The lava rock outcroppings here will support few plants. There is more \n\
vegetation +. There is a nice beach +.* The ocean is +.\n" },
{ "You are in the woods.",
- 131, 131, 137, 131, 87, 0, 0, 0,
+ { 131, 131, 137, 131, 87, 0, 0, 0 },
"Young trees and tall shrubs grow densely together at this distance from the \n\
shore.** The trees grow thicker +.*\n" },
{ "The canyon is no wider than a foot here.",
- 0, 0, 0, 132, 0, 0, 0, 0,
+ { 0, 0, 0, 132, 0, 0, 0, 0 },
"The freshet is gushing through the narrow trough, but the canyon has grown\n\
too narrow to follow it any farther.*** I guess we'll have to go -.\n" },
{ "You are in a narrow part of the canyon.",
- 0, 0, 133, 232, 76, 0, 0, 0,
+ { 0, 0, 133, 232, 76, 0, 0, 0 },
"The two sheer sides are no more than a few meters apart here. There is a stone\n\
door in the wall +. The gravelly floor runs with tiny rivulets seeping \n\
from the ground itself.* The canyon continues - and -.\n" },
{ "You are in the drawing room.",
- 0, 134, 0, 0, 0, 0, 0, 0,
+ { 0, 134, 0, 0, 0, 0, 0, 0 },
"Exquisitely decorated with plants and antique furniture of superb\n\
craftsmanship, the parlor reflects its owners impeccable taste. The tropical\n\
sun is streaming in through open shutters *+. There doesn't seem \n\
to be anybody around. A large immaculate oaken desk is visible in the\n\
study and it even has a old fashioned telephone to complete the decor.**\n" },
{ "You are in a palm grove.",
- 135, 191, 233, 191, 88, 0, 0, 0,
+ { 135, 191, 233, 191, 88, 0, 0, 0 },
"Grassy rows of palms stretch as far as I can see.** There is a road +.*\n" },
{ "You are on a dirt road.",
- 136, 233, 234, 135, 88, 0, 0, 0,
+ { 136, 233, 234, 135, 88, 0, 0, 0 },
"The road winds through a coconut palm grove here. It continues on - \n\
and -.**\n" },
{ "The road leads to several large buildings here.",
- 235, 136, 236, 237, 88, 0, 0, 0,
+ { 235, 136, 236, 237, 88, 0, 0, 0 },
"There is a clubhouse +,* a large barn and stable +, and a garage of \n\
similar construct to the barn +.\n" },
{ "This part of the beach is impassable.",
- 0, 138, 0, 0, 96, 0, 0, 0,
+ { 0, 138, 0, 0, 96, 0, 0, 0 },
"The huge rocks and thunderous surf here would pound our frail bodies to pulp\n\
in an instant.* The only direction I'm going is -.**\n" },
{ "You are in the gardens.",
- 195, 140, 197, 138, 96, 0, 0, 0,
+ { 195, 140, 197, 138, 96, 0, 0, 0 },
"So much green grass is a pleasure to the eyes.****\n" },
{ "You are in the gardens.",
- 140, 183, 197, 139, 99, 0, 0, 0,
+ { 140, 183, 197, 139, 99, 0, 0, 0 },
"Beautiful flowers and shrubs surround a little goldfish pond.****\n" },
{ "You are on a stone walk in the garden.",
- 195, 196, 238, 140, 99, 0, 0, 0,
+ { 195, 196, 238, 140, 99, 0, 0, 0 },
"The walk leads to a road **+.*\n" },
{ "You are in the forest near the road.",
- 198, 141, 216, 198, 73, 0, 0, 0,
+ { 198, 141, 216, 198, 73, 0, 0, 0 },
"There are many thorny bushes here!****\n" },
{ "You are at a fork in the road.",
- 239, 146, 141, 170, 73, 0, 0, 0,
+ { 239, 146, 141, 170, 73, 0, 0, 0 },
"Two roads come together in the forest here. One runs -,* the other \n\
runs - and -.\n" },
{ "You are on a dirt path around the lagoon.",
- 170, 147, 146, 0, 74, 0, 0, 0,
+ { 170, 147, 146, 0, 74, 0, 0, 0 },
"The still waters reflect bending palms and a cloudless sky. It looks like\n\
the path runs into a clearing +. The path continues -.**\n" },
{ "You are drowning in the lagoon.",
- 201, 201, 147, 201, 74, 0, 0, 0,
+ { 201, 201, 147, 201, 74, 0, 0, 0 },
"I suggest you get out before you become waterlogged.****\n" },
{ "You are in a coconut palm grove.",
- 202, 148, 203, 204, 77, 0, 0, 0,
+ { 202, 148, 203, 204, 77, 0, 0, 0 },
"****\n" },
{ "You are in a palm grove.",
- 202, 149, 205, 148, 77, 0, 0, 0,
+ { 202, 149, 205, 148, 77, 0, 0, 0 },
"****\n" },
{ "You are in a palm grove.",
- 202, 150, 148, 206, 77, 0, 0, 0,
+ { 202, 150, 148, 206, 77, 0, 0, 0 },
"****\n" },
{ "You are on a dirt road.",
- 203, 155, 212, 149, 77, 0, 0, 0,
+ { 203, 155, 212, 149, 77, 0, 0, 0 },
"*This road ends here at a palm grove but continues on - for quite\n\
some way.**\n" },
{ "You are in a coconut palm grove.",
- 204, 156, 150, 213, 77, 0, 0, 0,
+ { 204, 156, 150, 213, 77, 0, 0, 0 },
"****\n" },
{ "You are in a coconut grove.",
- 151, 219, 208, 209, 77, 0, 0, 0,
+ { 151, 219, 208, 209, 77, 0, 0, 0 },
"*The grove ends +.**\n" },
{ "You are in a coconut grove.",
- 152, 207, 239, 151, 77, 0, 0, 0,
+ { 152, 207, 239, 151, 77, 0, 0, 0 },
"**There is a dirt road +.*\n" },
{ "You are in a coconut grove.",
- 153, 207, 151, 211, 77, 0, 0, 0,
+ { 153, 207, 151, 211, 77, 0, 0, 0 },
"****\n" },
{ "This is a dirt road.",
- 205, 239, 212, 154, 77, 0, 0, 0,
+ { 205, 239, 212, 154, 77, 0, 0, 0 },
"The road continues - and -.**\n" },
{ "You are in a coconut grove.",
- 153, 209, 153, 213, 77, 0, 0, 0,
+ { 153, 209, 153, 213, 77, 0, 0, 0 },
"****\n" },
{ "You are in the woods near the road.",
- 205, 210, 212, 155, 77, 0, 0, 0,
+ { 205, 210, 212, 155, 77, 0, 0, 0 },
"There are many thorny bushes here!****\n" },
{ "You are in a coconut grove.",
- 213, 213, 156, 234, 88, 0, 0, 0,
+ { 213, 213, 156, 234, 88, 0, 0, 0 },
"***The grove ends in a clearing +.\n" },
{ "You are walking along some high cliffs.",
- 162, 0, 0, 159, 86, 0, 0, 0,
+ { 162, 0, 0, 159, 86, 0, 0, 0 },
"The island bends sharply + here with high cliffs -\n\
and -. The cliffs are lower +.\n" },
{ "You are at the coast road turn around.",
- 0, 162, 0, 158, 90, 0, 0, 0,
+ { 0, 162, 0, 158, 90, 0, 0, 0 },
"The coast road ends here in a lookout with a view of 100 kilometers of blue\n\
sea and 100 meters of rugged cliff. Far below the waves crash against rocks.\n\
****\n" },
{ "You are in the woods near the road.",
- 216, 163, 216, 198, 79, 0, 257, 0,
+ { 216, 163, 216, 198, 79, 0, 257, 0 },
"These thorny bushes are killing me.****\n" },
{ "You are in the kitchen.",
- 0, 0, 0, 165, 0, 0, 0, 0,
+ { 0, 0, 0, 165, 0, 0, 0, 0 },
"A small gas stove and a refrigerator are all the only appliances here. The\n\
gas oven has been left on and the whole room is reeking with natural gas.\n\
One spark from a match and.... The door out is ***+.\n" },
{ "You are in the bedroom.",
- 0, 0, 165, 0, 0, 0, 0, 0,
+ { 0, 0, 165, 0, 0, 0, 0, 0 },
"A soft feather comforter on top of layers of Answer blankets make this a very\n\
luxurious place to sleep indeed. There are also some end tables and a dresser\n\
here.** The living room is +.*\n" },
{ "You are in the woods.",
- 207, 169, 220, 221, 81, 0, 0, 0,
+ { 207, 169, 220, 221, 81, 0, 0, 0 },
"There seems to be a clearing +.***\n" },
{ "You are in the woods near the road.",
- 219, 170, 239, 169, 81, 0, 0, 0,
+ { 219, 170, 239, 169, 81, 0, 0, 0 },
"*As far as I can tell, there are two roads + and +.*\n" },
{ "You are in the woods.",
- 207, 171, 219, 222, 81, 0, 0, 0,
+ { 207, 171, 219, 222, 81, 0, 0, 0 },
"The forest is clearer +.***\n" },
{ "You are on the lagoon's inland finger.",
- 0, 172, 171, 172, 81, 0, 0, 0,
+ { 0, 172, 171, 172, 81, 0, 0, 0 },
"It is impossible to follow the lagoon any farther inland because of sharp\n\
and very painful sedges.* The road is +.**\n" },
{ "You are in a grassy coconut grove.",
- 240, 173, 224, 241, 82, 0, 0, 0,
+ { 240, 173, 224, 241, 82, 0, 0, 0 },
"The tall palms provide a perfect canopy for the lush green grass.***\n\
There is a road +.\n" },
{ "You are near the lagoon's inland finger.",
- 0, 174, 0, 173, 82, 0, 0, 0,
+ { 0, 174, 0, 173, 82, 0, 0, 0 },
"Very sharp sedges make it impossible to follow the lagoon any farther inland.\n\
*There is a road +.**\n" },
{ "You are on a dirt road.",
- 241, 175, 173, 226, 82, 0, 0, 0,
+ { 241, 175, 173, 226, 82, 0, 0, 0 },
"The road winds through a coconut grove here and continues - and -.**\n" },
{ "You are in the woods near the road.",
- 226, 226, 175, 226, 82, 0, 0, 0,
+ { 226, 226, 175, 226, 82, 0, 0, 0 },
"**The road is +.*\n" },
{ "This is a beach?",
- 227, 227, 177, 0, 82, 0, 0, 0,
+ { 227, 227, 177, 0, 82, 0, 0, 0 },
"Hard jagged rocks that pierce with every footstep hardly comprise a beach.**\n\
Let's go -.*\n" },
{ "The trail is lost in the woods here.",
- 241, 241, 179, 241, 84, 0, 0, 0,
+ { 241, 241, 179, 241, 84, 0, 0, 0 },
"I suppose the animals that use this trail all depart in different directions\n\
when they get this far into the woods.** The trail goes -.*\n" },
{ "You are on the bank of a stream.",
- 182, 0, 242, 180, 84, 0, 0, 0,
+ { 182, 0, 242, 180, 84, 0, 0, 0 },
"The stream falls over several small boulders here and continues on **-.*\n" },
{ "You are just inside the cave.",
- 181, 267, 0, 0, 0, 0, 0, 0,
+ { 181, 267, 0, 0, 0, 0, 0, 0 },
"A steamy hot breath is belching from the depths of the earth within.* The\n\
cave continues -.**\n" },
{ "You are just inside the cave entrance.",
- 274, 0, 0, 0, 0, 0, 0, 0,
+ { 274, 0, 0, 0, 0, 0, 0, 0 },
"The air is hot and sticky inside. The cave continues -. There is a \n\
stone door in the wall +. A wooden sign in the dust reads in old elven\n\
runes, \"GSRF KDIRE NLVEMP!\".**\n" },
{ "You are at the edge of a huge chasm.",
- 0, 0, 189, 0, 76, 0, 0, 0,
+ { 0, 0, 189, 0, 76, 0, 0, 0 },
"Several hundred feet down I can see the glimmer of placid water. The\n\
rivulets drain over the edge and trickle down into the depths. It is \n\
impossible to climb down without a rope.** The canyon continues -.*\n" },
{ "You are on a dirt road.",
- 192, 241, 240, 191, 88, 0, 0, 0,
+ { 192, 241, 240, 191, 88, 0, 0, 0 },
"The road winds through a coconut grove here. The road continues on -\n\
and -.**\n" },
{ "You are in a coconut palm grove near the road.",
- 193, 233, 213, 192, 88, 0, 0, 0,
+ { 193, 233, 213, 192, 88, 0, 0, 0 },
"***The road is +.\n" },
{ "You are at the clubhouse.",
- 0, 193, 0, 0, 0, 0, 0, 0,
+ { 0, 193, 0, 0, 0, 0, 0, 0 },
"The clubhouse is built over the most inland part of the lagoon. Tropical\n\
bananas and fragrant frangipani grow along the grassy shore. Walking across\n\
the short wooden bridge, we enter. Along one wall is a bar with only a few\n\
people seated at it. The restaurant and dance floor are closed off with\n\
a 2 inch nylon rope. ****\n" },
{ "You are in the stables.",
- 0, 0, 0, 193, 0, 0, 0, 0,
+ { 0, 0, 0, 193, 0, 0, 0, 0 },
"Neighing horses snacking on hay and oats fill the stalls on both sides of\n\
the barn. It is rather warm in here but that is not the most offensive\n\
part. The old boards of the barn part just enough to let in dust laden\n\
shafts of light. Flies swarm overhead and strafe the ground for dung.\n\
My nose is beginning to itch. ****\n" },
{ "You are in the old garage.",
- 0, 0, 193, 0, 0, 0, 0, 0,
+ { 0, 0, 193, 0, 0, 0, 0, 0 },
"This is an old wooden building of the same vintage as the stables. Beneath\n\
a sagging roof stand gardening tools and greasy rags. Parked in the center\n\
is an underpowered Plymouth Volare' with a red and white striped golf cart\n\
roof. ****\n" },
{ "You are on a dirt road.",
- 197, 197, 243, 197, 85, 0, 0, 0,
+ { 197, 197, 243, 197, 85, 0, 0, 0 },
"The road leads to a beautiful formal garden laced with stone walks and tropical\n\
flowers and trees.** The road continues -. A walk leads -.\n" },
{ "You are on a dirt road.",
- 210, 199, 198, 220, 73, 0, 0, 0,
+ { 210, 199, 198, 220, 73, 0, 0, 0 },
"The road runs - and -.**\n" },
{ "You are in a coconut grove near the road.",
- 234, 223, 234, 233, 88, 0, 0, 0,
+ { 234, 223, 234, 233, 88, 0, 0, 0 },
"***The road is +.\n" },
{ "You are on a dirt road.",
- 233, 225, 223, 226, 82, 0, 0, 0,
+ { 233, 225, 223, 226, 82, 0, 0, 0 },
"The road continues - and -.**\n" },
{ "The stream plummets over a cliff here.",
- 182, 0, 0, 229, 84, 0, 0, 0,
+ { 182, 0, 0, 229, 84, 0, 0, 0 },
"Falling 10 agonizing meters into spray, only droplets of the stream are\n\
left to dance off the floor below. I thought I saw a sparkle of gold\n\
at the bottom of the falls, but now it is gone. There is no way down,\n\
even with a strong rope. ****\n" },
{ "You are on a dirt road.",
- 0, 0, 244, 238, 85, 0, 0, 0,
+ { 0, 0, 244, 238, 85, 0, 0, 0 },
"**The road continues - and -.\n" },
{ "You are on a dirt road.",
- 0, 245, 0, 243, 88, 0, 0, 0,
+ { 0, 245, 0, 243, 88, 0, 0, 0 },
"*The road continues -* and -.\n" },
{ "You are on a dirt road.",
- 244, 234, 213, 136, 88, 0, 0, 0,
+ { 244, 234, 213, 136, 88, 0, 0, 0 },
"The road goes -* and *-.\n" },
{ "You are in a low passage.",
- 247, 160, 0, 0, 0, 0, 0, 0,
+ { 247, 160, 0, 0, 0, 0, 0, 0 },
"The passage is partially flooded here and it may be hazardous to proceed.\n\
Water is surging from the tunnel and heading out to sea. Strange moaning\n\
noises rise above the rushing of the water. They are as thin as a whispering\n\
wind yet penetrate to my very soul. I think we have come too far...\n\
The passage continues -.***\n" },
{ "The walls are very close together here.",
- 248, 0, 0, 0, 0, 0, 0, 0,
+ { 248, 0, 0, 0, 0, 0, 0, 0 },
"I can barely squeeze through the jagged opening. Slimy sea weeds provide\n\
no footing at all. This tunnel seems to be an ancient lava tube. There is\n\
a large room -.***\n" },
{ "You are in the cathedral room.",
- 249, 251, 249, 251, 0, 0, 0, 0,
+ { 249, 251, 249, 251, 0, 0, 0, 0 },
"Your light casts ghostly shadows on the walls but cannot pierce the \n\
engulfing darkness overhead. The sound of water dripping echoes in the void.\n\
*I can see no passages leading out of this room. We have definitely\n\
come too far.*** \n" },
{ "You are walking through a very round tunnel.",
- 252, 0, 0, 0, 252, 1, 0, 0,
+ { 252, 0, 0, 0, 252, 1, 0, 0 },
"The round walls of this tunnel are amazingly smooth to the touch. A little\n\
trickle of water flows down the center. The tunnel climbs steadily +.\n\
The cave is beginning to flood again! Let's get out of here! ***\n" },
{ "You are in the cathedral anteroom.",
- 0, 0, 0, 248, 253, 1, 0, 0,
+ { 0, 0, 0, 248, 253, 1, 0, 0 },
"This small chamber with a flat stone floor is to one side of the cathedral \n\
room. We appear to be at the bottom of a tall narrow shaft. There are many \n\
puddles of water here. A staircase hewn from solid rock and black lava \n\
leads up.*** The cathedral room is +.\n" },
{ "You are in a wide chamber.",
- 0, 0, 248, 254, 0, 0, 0, 0,
+ { 0, 0, 248, 254, 0, 0, 0, 0 },
"Water is sprinkling from the ceiling here. A shallow pool populated by a \n\
myriad of blind white creatures sparkles in your light. Tiny shrimp and\n\
crabs scurry away, frightened by the blinding rays.** The cave \n\
continues - and -.\n" },
{ "You are at the top of a sloping passage.",
- 0, 0, 255, 256, 257, 1, 0, 0,
+ { 0, 0, 255, 256, 257, 1, 0, 0 },
"There is much algae growing here, both green and brown specimens. \n\
Water from an underground sea surges and splashes against the slope of\n\
the rock. The walls glisten with shiny minerals. High above, light\n\
filters in through a narrow shaft.** A hallway here runs -\n\
and -.\n" },
{ "You are in an elaborately tiled room.",
- 0, 0, 258, 0, 0, 0, 250, 0,
+ { 0, 0, 258, 0, 0, 0, 250, 0 },
"Large colorful tiles plate the floor and walls. The ceiling is a mosaic\n\
of gems set in gold. Hopefully it is only our footsteps that are echoing in\n\
this hollow chamber.** The room continues -. A stone staircase\n\
leads down.*\n" },
{ "You are at a dead end.",
- 0, 0, 251, 0, 0, 0, 0, 0,
+ { 0, 0, 251, 0, 0, 0, 0, 0 },
"The walls here are alive with dark mussels. They click their shells menacingly\n\
if we disturb them. ** The only exit is +.*\n" },
{ "The tunnel is very low here.",
- 0, 0, 259, 252, 0, 0, 0, 0,
+ { 0, 0, 259, 252, 0, 0, 0, 0 },
"I practically have to crawl on my knees to pass through this opening. The\n\
air is stiflingly damp, but I can't hear any sounds of water dripping.**\n\
The crawlspace continues -. The tunnel seems wider +.\n" },
{ "This is the supply room.",
- 0, 0, 252, 0, 0, 0, 0, 0,
+ { 0, 0, 252, 0, 0, 0, 0, 0 },
"Picks and shovels line the walls here, as well as hard hats, boxes of\n\
dynamite, and a cartload of very high grade gold and silver ore.** \n\
A tunnel leads off +.*\n" },
{ "You have found a secret entrance to the catacombs.",
- 0, 0, 0, 0, 216, 1, 252, 0,
+ { 0, 0, 0, 0, 216, 1, 252, 0 },
"I have a sickening feeling that we should not have entered the catacombs.\n\
Below is a wet, seaweed covered floor. Above is a way out. ****\n" },
{ "You are in the catacombs.",
- 0, 0, 260, 253, 0, 0, 0, 0,
+ { 0, 0, 260, 253, 0, 0, 0, 0 },
"Ornate tombs and piles of treasure line the walls. Long spears with many\n\
blades, fine swords and coats of mail, heaps of coins, jewelry, pottery, \n\
and golden statues are tribute of past kings and queens.** The catacombs\n\
continue - and -.\n" },
{ "You are crawling on your stomach.",
- 0, 0, 261, 255, 0, 0, 0, 0,
+ { 0, 0, 261, 255, 0, 0, 0, 0 },
"The passage is quite narrow and jagged, but the rock is no longer lava.\n\
It appears to be a form of granite.** The crawlspace continues -, \n\
but I would just as soon go -.\n" },
{ "You are in the Sepulcher.",
- 0, 0, 0, 258, 0, 0, 0, 0,
+ { 0, 0, 0, 258, 0, 0, 0, 0 },
"A single tomb is here. Encrusted with diamonds and opals, and secured with \n\
straps of a very hard, untarnished silver, this tomb must be of a great king.\n\
Vases overflowing with gold coins stand nearby. A line of verse on the wall\n\
reads, \"Three he made and gave them to his daughters.\"****\n" },
{ "The passage is wider here.",
- 0, 0, 0, 259, 0, 0, 0, 0,
+ { 0, 0, 0, 259, 0, 0, 0, 0 },
"You are at the top of a flooded shaft. About a meter below the edge,\n\
dark water rises and falls to the rhythm of the sea. A ladder goes\n\
down into water here.*** A small crawlspace goes -.\n" },
{ "You are at the bottom of a ladder.",
- 0, 0, 0, 0, 261, 1, 263, 0,
+ { 0, 0, 0, 0, 261, 1, 263, 0 },
"This is a narrow platform to rest on before we continue either up or down this\n\
rickety wooden ladder.****\n" },
{ "You are standing in several inches of water.",
- 264, 0, 265, 266, 262, 1, 0, 0,
+ { 264, 0, 265, 266, 262, 1, 0, 0 },
"This seems to be a working mine. Many different tunnels wander off following\n\
glowing veins of precious metal. The floor is flooded here since we must\n\
be nearly at sea level. A ladder leads up. ****\n" },
{ "The tunnel here is blocked by broken rocks.",
- 0, 263, 0, 0, 0, 0, 0, 0,
+ { 0, 263, 0, 0, 0, 0, 0, 0 },
"The way is blocked, but if you had some dynamite, we might be able to blast our\n\
way through.* The passage goes -.**\n" },
{ "The tunnel is too flooded to proceed.",
- 0, 0, 0, 263, 0, 0, 0, 0,
+ { 0, 0, 0, 263, 0, 0, 0, 0 },
"Hidden shafts could swallow us if we tried to continue on down this tunnel.\n\
The flooding is already up to my waist. Large crystals overhead shimmer\n\
rainbows of reflected light.*** Let's go -.\n" },
{ "The mine is less flooded here.",
- 0, 0, 263, 0, 0, 0, 0, 0,
+ { 0, 0, 263, 0, 0, 0, 0, 0 },
"A meandering gold laden vein of quartz and blooming crystals of diamonds\n\
and topaz burst from the walls of the cave. A passage goes -.***\n" },
{ "You are inside the cave.",
- 230, 268, 0, 0, 0, 0, 0, 0,
+ { 230, 268, 0, 0, 0, 0, 0, 0 },
"A hot steam swirls around our heads, and the walls are warm to the touch.\n\
The trail winds + and +.**\n" },
{ "You are in a rather large chamber.",
- 267, 0, 0, 269, 0, 0, 269, 0,
+ { 267, 0, 0, 269, 0, 0, 269, 0 },
"Beds of ferns and palm leaves make several cozy nests along the walls. In the\n\
center of the room is a throne of gold and silver which pulls out into a bed\n\
of enormous size.*** A passageway leads down to the -.\n" },
{ "You are walking along the edge of a huge abyss.",
- 0, 0, 268, 0, 268, 1, 270, 0,
+ { 0, 0, 268, 0, 268, 1, 270, 0 },
"Steam is rising in great clouds from the immeasurable depths. A very narrow\n\
trail winds down.** There is a tunnel +.*\n" },
{ "You are on the edge of a huge abyss.",
- 0, 0, 0, 0, 269, 1, 271, 0,
+ { 0, 0, 0, 0, 269, 1, 271, 0 },
"The trail winds farther down.****\n" },
{ "You are winding your way along the abyss.",
- 0, 0, 0, 0, 270, 1, 272, 0,
+ { 0, 0, 0, 0, 270, 1, 272, 0 },
"The trail continues up and down.****\n" },
{ "You are on a wide shelf near the steamy abyss.",
- 0, 273, 0, 0, 271, 1, 0, 0,
+ { 0, 273, 0, 0, 271, 1, 0, 0 },
"The stifling hot cave seems even hotter to me, staring down into this misty \n\
abyss. A trail winds up.* A passageway leads -.**\n" },
{ "You are in a wide tunnel leading to a fuming abyss.",
- 272, 274, 0, 0, 0, 0, 0, 0,
+ { 272, 274, 0, 0, 0, 0, 0, 0 },
"The passageway winds through many beautiful formations of crystals and\n\
sparkling minerals. The tunnel continues - and -.**\n" },
{ "You are in a tunnel.",
- 273, 231, 0, 0, 0, 0, 0, 0,
+ { 273, 231, 0, 0, 0, 0, 0, 0 },
"It is very warm in here. The smell of steam and hot rocks permeates the place.\n\
The cave continues - and -.**\n" },
{ "You are at the bottom of a pit.",
- 0, 0, 0, 0, 232, 0, 0, 0,
+ { 0, 0, 0, 0, 232, 0, 0, 0 },
"I can see daylight far up at the mouth of the pit. A cool draft wafts down.\n\
There doesn't seem to be any way out, and I don't remember how we came in.\n\
If you had a rope it might be possible to climb out. ****\n" },
diff --git a/games/battlestar/dayobjs.c b/games/battlestar/dayobjs.c
index c96710684ec4..801c65af4a82 100644
--- a/games/battlestar/dayobjs.c
+++ b/games/battlestar/dayobjs.c
@@ -138,5 +138,5 @@ const struct objs dayobjs[] = {
{ 130, BRACELET },
{ 93, GIRL },
{ 268, LAMPON },
- 0
+ { 0 , 0 }
};
diff --git a/games/battlestar/externs.h b/games/battlestar/externs.h
index 8cb2b6991dac..6dcc0a1381ed 100644
--- a/games/battlestar/externs.h
+++ b/games/battlestar/externs.h
@@ -31,13 +31,17 @@
* SUCH DAMAGE.
*
* @(#)externs.h 8.1 (Berkeley) 5/31/93
+ *
+ * $FreeBSD$
*/
#include <errno.h>
#include <sys/param.h>
#include <sys/signal.h>
+#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
+#include <unistd.h>
#define BITS (8)
@@ -229,18 +233,18 @@ struct room {
#define down link[6]
#define flyhere link[7]
const char *desc;
- int objects[NUMOFWORDS];
+ unsigned int objects[NUMOFWORDS];
};
extern struct room dayfile[];
extern struct room nightfile[];
struct room *location;
/* object characteristics */
-const char *const objdes[NUMOFOBJECTS];
-const char *const objsht[NUMOFOBJECTS];
-const char *const ouch[NUMOFINJURIES];
-const int objwt[NUMOFOBJECTS];
-const int objcumber[NUMOFOBJECTS];
+extern const char *const objdes[NUMOFOBJECTS];
+extern const char *const objsht[NUMOFOBJECTS];
+extern const char *const ouch[NUMOFINJURIES];
+extern const int objwt[NUMOFOBJECTS];
+extern const int objcumber[NUMOFOBJECTS];
/* current input line */
#define NWORD 20 /* words per line */
@@ -249,35 +253,88 @@ int wordvalue[NWORD];
int wordtype[NWORD];
int wordcount, wordnumber;
-const char *truedirec(), *rate();
-char *getcom(), *getword();
+
+int battlestar_move __P((int, int));
+void bury __P((void));
+int card __P((const char *, int));
+void chime __P((void));
+void crash __P((void));
+int cypher __P((void));
+void die __P((int));
+void dig __P((void));
+int draw __P((void));
+void drink __P((void));
+int drive __P((void));
+int drop __P((const char *name));
+int eat __P((void));
+int fight __P((int, int));
+int follow __P((void));
+char *getcom __P((char *, int, const char *, const char *));
+char *getword __P((char *, char *, int));
+int give __P((void));
+void initialize __P((int));
+int jump __P((void));
+void kiss __P((void));
+int land __P((void));
+int launch __P((void));
+void light __P((void));
+void live __P((void));
+void love __P((void));
+void murder __P((void));
+void news __P((void));
+void newway __P((int));
+void open_score_file __P((void));
+void parse __P((void));
+void printobjs __P((void));
+int put __P((void));
+int puton __P((void));
+void ravage __P((void));
+const char *rate __P((void));
+void restore __P((void));
+int ride __P((void));
+void save __P((void));
+int shoot __P((void));
+int take __P((unsigned int from[]));
+int takeoff(void);
+int throw __P((const char *name));
+const char *truedirec __P((int, unsigned int));
+int ucard __P((const unsigned int *));
+int use __P((void));
+int visual __P((void));
+int wearit __P((void));
+void whichway __P((struct room));
+void wordinit __P((void));
+void writedes __P((void));
+int zzz __P((void));
/* state of the game */
+extern int gclock;
int gtime;
int position;
int direction;
int left, right, ahead, back;
-int gclock, fuel, torps;
+int fuel, torps;
int carrying, encumber;
int rythmn;
-int followfight;
+extern int followfight;
int ate;
int snooze;
int meetgirl;
-int followgod;
+extern int followgod;
int godready;
-int win;
+extern int bs_win;
int wintime;
int wiz;
int tempwiz;
-int matchlight, matchcount;
+int matchlight;
+extern int matchcount;
int loved;
int pleasure, power, ego;
-int WEIGHT;
-int CUMBER;
+extern int WEIGHT;
+extern int CUMBER;
int notes[NUMOFNOTES];
-int inven[NUMOFWORDS];
-int wear[NUMOFWORDS];
+unsigned int inven[NUMOFWORDS];
+u_int wear[NUMOFWORDS];
char beenthere[NUMOFROOMS+1];
char injuries[NUMOFINJURIES];
@@ -301,4 +358,4 @@ struct objs {
extern const struct objs dayobjs[];
extern const struct objs nightobjs[];
-gid_t egid;
+extern gid_t egid;
diff --git a/games/battlestar/fly.c b/games/battlestar/fly.c
index e33901b4befb..5018f73d908c 100644
--- a/games/battlestar/fly.c
+++ b/games/battlestar/fly.c
@@ -55,9 +55,20 @@ int gclock = 120; /* gtime for all the flights in the game */
char cross = 0;
sig_t oldsig;
+static void blast __P((void));
+static void endfly __P((void));
+static void moveenemy __P((int));
+static void notarget __P((void));
+static void succumb __P((int));
+static void screen __P((void));
+static void target __P((void));
+
void
-succumb()
+succumb(sig)
+ int sig;
{
+
+ sig = 0;
if (oldsig == SIG_DFL) {
endfly();
exit(1);
@@ -68,12 +79,12 @@ succumb()
}
}
+int
visual()
{
- void moveenemy();
destroyed = 0;
- if(initscr() == ERR){
+ if(initscr() == NULL){
puts("Whoops! No more memory...");
return(0);
}
@@ -83,7 +94,7 @@ visual()
screen();
row = rnd(LINES-3) + 1;
column = rnd(COLS-2) + 1;
- moveenemy();
+ moveenemy(0);
for (;;) {
switch(getchar()){
@@ -173,11 +184,14 @@ visual()
}
if (gclock <= 0){
endfly();
- die();
+ die(0);
}
}
+ /* NOTREACHED */
+ return(1);
}
+void
screen()
{
int r,c,n;
@@ -194,6 +208,7 @@ screen()
refresh();
}
+void
target()
{
int n;
@@ -206,6 +221,7 @@ target()
}
}
+void
notarget()
{
int n;
@@ -218,13 +234,14 @@ notarget()
}
}
+void
blast()
{
int n;
alarm(0);
move(LINES-1, 24);
- printw("%3d", torps);
+ printw((char *)(uintptr_t)(const void *)"%3d", torps);
for(n = LINES-1-2; n >= MIDR + 1; n--){
mvaddch(n, MIDC+MIDR-n, '/');
mvaddch(n, MIDC-MIDR+n, '\\');
@@ -240,11 +257,12 @@ blast()
}
void
-moveenemy()
+moveenemy(int sig)
{
double d;
int oldr, oldc;
+ sig = 0;
oldr = row;
oldc = column;
if (fuel > 0){
@@ -267,16 +285,17 @@ moveenemy()
target();
mvaddstr(row, column - 1, "/-\\");
move(LINES-1, 24);
- printw("%3d", torps);
+ printw((char *)(uintptr_t)(const void *)"%3d", torps);
move(LINES-1, 42);
- printw("%3d", fuel);
+ printw((char *)(uintptr_t)(const void *)"%3d", fuel);
move(LINES-1, 57);
- printw("%3d", gclock);
+ printw((char *)(uintptr_t)(const void *)"%3d", gclock);
refresh();
signal(SIGALRM, moveenemy);
alarm(1);
}
+void
endfly()
{
alarm(0);
diff --git a/games/battlestar/getcom.c b/games/battlestar/getcom.c
index fbb5b05aca2c..c815f2f73d0f 100644
--- a/games/battlestar/getcom.c
+++ b/games/battlestar/getcom.c
@@ -39,8 +39,8 @@ static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
-#include <stdio.h>
#include <ctype.h>
+#include "externs.h"
char *
getcom(buf, size, prompt, error)
diff --git a/games/battlestar/globals.c b/games/battlestar/globals.c
index f5ae78adf295..447c193b990a 100644
--- a/games/battlestar/globals.c
+++ b/games/battlestar/globals.c
@@ -217,7 +217,7 @@ const int objcumber[NUMOFOBJECTS] = {
10, 8, 8, 10, 10, 3, 1, 2
};
-int win = 1;
+int bs_win = 1;
int matchcount = 20;
int followgod = -1;
int followfight = -1;
diff --git a/games/battlestar/init.c b/games/battlestar/init.c
index b0de84083981..ea7fe3d344df 100644
--- a/games/battlestar/init.c
+++ b/games/battlestar/init.c
@@ -40,15 +40,19 @@ static const char rcsid[] =
#endif /* not lint */
#include <sys/types.h>
-#include "externs.h"
#include <pwd.h>
#include <string.h>
+#include "externs.h"
+
+static int checkout __P((const char *));
+static void getutmp __P((char *));
+static int wizard __P((const char *));
+void
initialize(startup)
- char startup;
+ int startup;
{
const struct objs *p;
- void die();
puts("Version 4.2, fall 1984.");
puts("First Adventure game written by His Lordship, the honorable");
@@ -74,13 +78,14 @@ initialize(startup)
signal(SIGINT, die);
}
-getutmp(uname)
- char *uname;
+void
+getutmp(battlestar_uname)
+ char *battlestar_uname;
{
struct passwd *ptr;
ptr = getpwuid(getuid());
- strcpy(uname, ptr ? ptr->pw_name : "");
+ strcpy(battlestar_uname, ptr ? ptr->pw_name : "");
}
const char *const list[] = { /* hereditary wizards */
@@ -102,29 +107,29 @@ const char *const badguys[] = {
};
int
-wizard(uname)
- const char *uname;
+wizard(battlestar_uname)
+ const char *battlestar_uname;
{
char flag;
- if (flag = checkout(uname))
- printf("You are the Great wizard %s.\n", uname);
+ if ((flag = checkout(battlestar_uname)) > 0)
+ printf("You are the Great wizard %s.\n", battlestar_uname);
return flag;
}
int
-checkout(uname)
- const char *uname;
+checkout(battlestar_uname)
+ const char *battlestar_uname;
{
const char *const *ptr;
for (ptr = list; *ptr; ptr++)
- if (strcmp(*ptr, uname) == 0)
+ if (strcmp(*ptr, battlestar_uname) == 0)
return 1;
for (ptr = badguys; *ptr; ptr++)
- if (strcmp(*ptr, uname) == 0) {
+ if (strcmp(*ptr, battlestar_uname) == 0) {
printf("You are the Poor anti-wizard %s. Good Luck!\n",
- uname);
+ battlestar_uname);
if (location != NULL) {
CUMBER = 3;
WEIGHT = 9; /* that'll get him! */
diff --git a/games/battlestar/nightfile.c b/games/battlestar/nightfile.c
index 51bd268d14d4..3d1ee17f154f 100644
--- a/games/battlestar/nightfile.c
+++ b/games/battlestar/nightfile.c
@@ -44,115 +44,115 @@ static const char rcsid[] =
struct room nightfile[] = {
{ 0 },
{ "You are in the main hangar.",
- 5, 2, 9, 3, 3, 1, 0, 0,
+ { 5, 2, 9, 3, 3, 1, 0, 0 },
"This is a huge bay where many fighters and cargo craft lie. Alarms are \n\
sounding and fighter pilots are running to their ships. Above is a gallery\n\
overlooking the bay. The scream of turbo engines is coming from +. The rest\n\
of the hangar is +. There is an exit +.*\n" },
{ "This is the landing bay.",
- 1, 0, 10, 0, 0, 0, 0, 0,
+ { 1, 0, 10, 0, 0, 0, 0, 0 },
"Ships are landing here, some heavily damaged. Enemy fighters continually\n\
strafe this vulnerable port. The main hangar is +, *\n\
There is an exit +.*\n" },
{ "You are in the gallery.",
- 4, 0, 0, 0, 0, 0, 1, 0,
+ { 4, 0, 0, 0, 0, 0, 1, 0 },
"From here a view of the entire landing bay reveals that our battlestar\n\
is near destruction. Fires are spreading out of control and laser blasts\n\
lick at the shadows. The control room is +. ***\n" },
{ "You are in the control room.",
- 0, 3, 0, 0, 0, 0, 5, 0,
+ { 0, 3, 0, 0, 0, 0, 5, 0 },
"Several frantic technicians are flipping switches wildly but otherwise\n\
this room seems fairly deserted. A weapons locker has been left open.\n\
A staircase leads down. * There is a way -. ** \n" },
{ "This is the launch room.",
- 6, 1, 7, 0, 4, 1, 0, 0,
+ { 6, 1, 7, 0, 4, 1, 0, 0 },
"From the launch tubes here fighters blast off into space. Only one is left,\n\
and it is guarded by two fierce men. A staircase leads up from here.\n\
There is a cluttered workbench +. From the main hangar come sounds of great\n\
explosions. The main hangar is +. The viper launch tubes are to the -.*\n" },
{ "You are at the workbench.",
- 0, 5, 7, 0, 0, 0, 0, 0,
+ { 0, 5, 7, 0, 0, 0, 0, 0 },
"Strange and unwieldy tools are arranged here including a lunch box \n\
and pneumatic wrenches and turbo sprocket rockets.*\n\
The launch room is +. The remaining viper is +.*\n" },
{ "You are in the viper launch tube.",
- 0, 5, 0, 5, 32, 0, 0, 0,
+ { 0, 5, 0, 5, 32, 0, 0, 0 },
"The two guards are eyeing you warily! ****\n" },
{ "This is a walk in closet.",
- 22, 0, 0, 0, 0, 0, 0, 0,
+ { 22, 0, 0, 0, 0, 0, 0, 0 },
"A wardrobe of immense magnitude greets the eye. Furs and robes of kings\n\
hang on rack after rack. Silken gowns, capes woven with spun gold, and \n\
delicate synthetic fabrics are stowed here. The bedroom is +.***\n" },
{ "You are in a wide hallway leading to the main hangar.",
- 0, 0, 11, 1, 0, 0, 0, 0,
+ { 0, 0, 11, 1, 0, 0, 0, 0 },
"The walls and ceiling here have been blasted through in several places.\n\
It looks as if quite a battle has been fought for possession of the landing bay\n\
Gaping corpses litter the floor.** The hallway continues +.\n\
The main hangar is +.\n" },
{ "You are in a wide hallway leading to the landing bay.",
- 0, 0, 12, 2, 0, 0, 0, 0,
+ { 0, 0, 12, 2, 0, 0, 0, 0 },
"Most of the men and supplies needed in the main hangar come through this\n\
corridor, but the wounded are forced to use it too. It very dank and\n\
crowded here, and the floor is slippery with blood.**\n\
The hallway continues -. The landing bay is +.\n" },
{ "The hallway is very congested with rubble here.",
- 0, 0, 0, 9, 13, 1, 0, 0,
+ { 0, 0, 0, 9, 13, 1, 0, 0 },
"It is too choked with broken steel girders and other debris to continue\n\
on much farther. Above, the ceiling has caved in and it is possible to \n\
climb up. There is not much chance to go -, -, or -.\n\
But the hallway seems clearer +.\n" },
{ "A wide hallway and a more narrow walkway meet here.",
- 14, 15, 0, 10, 0, 0, 0, 0,
+ { 14, 15, 0, 10, 0, 0, 0, 0 },
"The intersection is crowded with the many wounded who have come up\n\
the wide hallway and continued +. The walkway is less crowded +.\n\
The wide hallway goes *-.\n" },
{ "You are in what was once an elegant stateroom.",
- 16, 0, 0, 0, 0, 0, 11, 0,
+ { 16, 0, 0, 0, 0, 0, 11, 0 },
"Whoever lived in this stateroom, he and his female companion\n\
were mercilessly slain in their sleep. Clothes, trinkets and personal\n\
belongings are scattered all across the floor. Through a hole in the\n\
collapsed floor I can see a hallway below. A door is +.***\n" },
{ "You're at the entrance to the sick bay.",
- 17, 12, 18, 0, 0, 0, 0, 0,
+ { 17, 12, 18, 0, 0, 0, 0, 0 },
"The wounded are entering the sick bay in loudly moaning files.\n\
The walkway continues - and +. A doctor is motioning for you to \n\
come to the -. *\n" },
{ "You're in the walkway.",
- 12, 19, 0, 0, 0, 0, 0, 0,
+ { 12, 19, 0, 0, 0, 0, 0, 0 },
"Most of the men and supplies were coming from the armory. The walkway\n\
continues -. The armory is +.**\n" },
{ "These are the executive suites of the battlestar.",
- 20, 13, 21, 22, 23, 1, 24, 0,
+ { 20, 13, 21, 22, 23, 1, 24, 0 },
"Luxurious staterooms carpeted with crushed velvet and adorned with beaten\n\
gold open onto this parlor. A wide staircase with ivory banisters leads\n\
up or down. This parlor leads into a hallway +. The bridal suite is +.\n\
Other rooms lie - and +.\n" },
{ "You're in a long dimly lit hallway.",
- 0, 14, 25, 0, 0, 0, 0, 0,
+ { 0, 14, 25, 0, 0, 0, 0, 0 },
"This part of the walkway is deserted. There is a dead end +. The\n\
entrance to the sickbay is +. The walkway turns sharply -.*\n" },
{ "This is the sick bay.",
- 0, 0, 0, 14, 0, 0, 0, 0,
+ { 0, 0, 0, 14, 0, 0, 0, 0 },
"Sinister nurses with long needles and pitiful aim probe the depths of suffering\n\
here. Only the mortally wounded receive medical attention on a battlestar,\n\
but afterwards they are thrown into the incinerators along with the rest.**\n\
Nothing but death and suffering +. The walkway is +.\n" },
{ "You're in the armory.",
- 15, 26, 0, 0, 0, 0, 0, 0,
+ { 15, 26, 0, 0, 0, 0, 0, 0 },
"An armed guard is stationed here 365 sectars a yarn to protect the magazine.\n\
The walkway is +. The magazine is +.**\n" },
{ "The hallway ends here at the presidential suite.",
- 27, 16, 0, 0, 0, 0, 0, 0,
+ { 27, 16, 0, 0, 0, 0, 0, 0 },
"The door to this suite is made from solid magnesium, and the entryway is\n\
inlaid with diamonds and fire opals. The door is ajar +. The hallway\n\
goes -.**\n" },
{ "This is the maid's utility room.",
- 0, 0, 0, 16, 0, 0, 0, 0,
+ { 0, 0, 0, 16, 0, 0, 0, 0 },
"What a gruesome sight! The maid has been brutally drowned in a bucket of\n\
Pine Sol and repeatedly stabbed in the back with a knife.***\n\
The hallway is +.\n" },
{ "This is a luxurious stateroom.",
- 0, 8, 16, 0, 0, 0, 0, 0,
+ { 0, 8, 16, 0, 0, 0, 0, 0 },
"The floor is carpeted with a soft animal fur and the great wooden furniture\n\
is inlaid with strips of platinum and gold. Electronic equipment built\n\
into the walls and ceiling is flashing wildly. The floor shudders and\n\
@@ -160,1021 +160,1021 @@ the sounds of dull explosions rumble though the room. From a window in\n\
the wall + comes a view of darkest space. There is a small adjoining\n\
room +, and a doorway +.*\n" },
{ "You are at the entrance to the dining hall.",
- 0, 0, 28, 0, 0, 0, 16, 0,
+ { 0, 0, 28, 0, 0, 0, 16, 0 },
"A wide staircase with ebony banisters leads down here.**\n\
The dining hall is to the -.*\n" },
{ "This was once the first class lounge.",
- 0, 0, 29, 0, 16, 1, 0, 0,
+ { 0, 0, 29, 0, 16, 1, 0, 0 },
"There is much rubble and destruction here that was not apparent elsewhere.\n\
The walls and ceilings have broken in in some places. A staircase with\n\
red coral banisters leads up. It is impossible to go - or -.\n\
It seems a little clearer +.*\n" },
{ "You are in a narrow stairwell.",
- 0, 17, 0, 0, 30, 1, 0, 0,
+ { 0, 17, 0, 0, 30, 1, 0, 0 },
"These dusty and decrepit stairs lead up. There is no way -. The\n\
hallway turns sharply -.**\n" },
{ "You are in the magazine.",
- 19, 0, 0, 0, 0, 0, 0, 0,
+ { 19, 0, 0, 0, 0, 0, 0, 0 },
"Rows and rows of neatly stacked ammunition for laser pistols and grenade\n\
launchers are here. The armory is +.***\n" },
{ "You're in the presidential suite.",
- 0, 20, 0, 0, 0, 0, 0, 0,
+ { 0, 20, 0, 0, 0, 0, 0, 0 },
"Apparently the president has been assassinated. A scorched figure lies\n\
face downward on the carpet clutching his chest.*\n\
The hallway leads -.**\n" },
{ "You are in the dining hall.",
- 0, 30, 31, 23, 0, 0, 0, 0,
+ { 0, 30, 31, 23, 0, 0, 0, 0 },
"This was the scene of a mass suicide. Hundreds of ambassadors and assorted\n\
dignitaries sit slumped over their breakfast cereal. I suppose the news\n\
of the cylon attack killed them. There is a strange chill in this room. I\n\
would not linger here. * The kitchen is +. Entrances + and +.\n" },
{ "The debris is very thick here.",
- 0, 11, 0, 24, 0, 0, 0, 0,
+ { 0, 11, 0, 24, 0, 0, 0, 0 },
"Broken furniture, fallen girders, and other rubble block the way.\n\
There is not much chance to continue -, -, or -.\n\
It would be best to go -.\n" },
{ "You are in the kitchen.",
- 28, 0, 0, 0, 0, 0, 0, 0,
+ { 28, 0, 0, 0, 0, 0, 0, 0 },
"This room is full of shining stainless steel and burnished bronze cookware. An \n\
assortment of tropical fruits and vegetables as well as fine meats and cheeses \n\
lies on a sterling platter. The chef, unfortunately, has been skewered like a \n\
side of beef. The dining room is +. ** There is a locked door +.\n" },
{ "You are in an arched entry leading to the dining room.",
- 0, 0, 0, 28, 0, 0, 0, 0,
+ { 0, 0, 0, 28, 0, 0, 0, 0 },
"The door leading out is bolted shut from the outside and is very strong.***\n\
The dining room is +.\n" },
{ "You are in space.",
- 33, 34, 35, 36, 37, 1, 33, 1,
+ { 33, 34, 35, 36, 37, 1, 33, 1},
"****\n" },
{ "You are in space.",
- 38, 32, 39, 40, 41, 1, 42, 1,
+ { 38, 32, 39, 40, 41, 1, 42, 1},
"****\n" },
{ "You are in space.",
- 32, 44, 45, 46, 47, 1, 48, 1,
+ { 32, 44, 45, 46, 47, 1, 48, 1},
"****\n" },
{ "You are in space.",
- 40, 45, 49, 32, 50, 1, 51, 1,
+ { 40, 45, 49, 32, 50, 1, 51, 1},
"****\n" },
{ "You are in space.",
- 41, 46, 32, 52, 53, 1, 54, 1,
+ { 41, 46, 32, 52, 53, 1, 54, 1},
"****\n" },
{ "You are in space.",
- 42, 47, 50, 53, 55, 1, 32, 1,
+ { 42, 47, 50, 53, 55, 1, 32, 1},
"****\n" },
{ "You are in space.",
- 43, 48, 51, 54, 32, 1, 56, 1,
+ { 43, 48, 51, 54, 32, 1, 56, 1},
"****\n" },
{ "You are in space.",
- 57, 33, 40, 41, 42, 1, 43, 1,
+ { 57, 33, 40, 41, 42, 1, 43, 1},
"****\n" },
{ "You are in space.",
- 39, 35, 57, 33, 58, 1, 59, 1,
+ { 39, 35, 57, 33, 58, 1, 59, 1},
"****\n" },
{ "You are in space.",
- 39, 36, 33, 59, 60, 1, 61, 1,
+ { 39, 36, 33, 59, 60, 1, 61, 1},
"****\n" },
{ "You are in space.",
- 39, 37, 58, 60, 62, 1, 33, 1,
+ { 39, 37, 58, 60, 62, 1, 33, 1},
"****\n" },
{ "You are in space.",
- 39, 38, 59, 61, 33, 1, 63, 1,
+ { 39, 38, 59, 61, 33, 1, 63, 1},
"****\n" },
{ "You are in space.",
- 34, 64, 45, 46, 47, 1, 48, 1,
+ { 34, 64, 45, 46, 47, 1, 48, 1},
"****\n" },
{ "You are in space.",
- 35, 44, 49, 34, 50, 1, 51, 1,
+ { 35, 44, 49, 34, 50, 1, 51, 1},
"****\n" },
{ "You are in space.",
- 36, 44, 34, 52, 53, 1, 54, 1,
+ { 36, 44, 34, 52, 53, 1, 54, 1},
"****\n" },
{ "You are in space.",
- 37, 44, 50, 53, 55, 1, 34, 1,
+ { 37, 44, 50, 53, 55, 1, 34, 1},
"****\n" },
{ "You are in space.",
- 38, 44, 51, 54, 34, 1, 56, 1,
+ { 38, 44, 51, 54, 34, 1, 56, 1},
"****\n" },
{ "You are in space.",
- 49, 49, 52, 35, 49, 1, 49, 1,
+ { 49, 49, 52, 35, 49, 1, 49, 1},
"****\n" },
{ "You are in space.",
- 58, 47, 49, 37, 55, 1, 35, 1,
+ { 58, 47, 49, 37, 55, 1, 35, 1},
"****\n" },
{ "You are in space.",
- 59, 48, 49, 38, 35, 1, 56, 1,
+ { 59, 48, 49, 38, 35, 1, 56, 1},
"****\n" },
{ "You are in space.",
- 52, 52, 36, 49, 52, 1, 52, 1,
+ { 52, 52, 36, 49, 52, 1, 52, 1},
"****\n" },
{ "You are in space.",
- 60, 46, 37, 52, 55, 1, 36, 1,
+ { 60, 46, 37, 52, 55, 1, 36, 1},
"****\n" },
{ "You are in space.",
- 61, 48, 38, 52, 36, 1, 56, 1,
+ { 61, 48, 38, 52, 36, 1, 56, 1},
"****\n" },
{ "You are in space.",
- 62, 55, 55, 55, 56, 1, 37, 1,
+ { 62, 55, 55, 55, 56, 1, 37, 1},
"****\n" },
{ "You are in space.",
- 56, 56, 56, 56, 38, 1, 55, 1,
+ { 56, 56, 56, 56, 38, 1, 55, 1},
"****\n" },
{ "You are in space.",
- 65, 39, 57, 57, 57, 1, 57, 1,
+ { 65, 39, 57, 57, 57, 1, 57, 1},
"****\n" },
{ "You are in space.",
- 39, 50, 49, 42, 62, 1, 40, 1,
+ { 39, 50, 49, 42, 62, 1, 40, 1},
"****\n" },
{ "You are in space.",
- 39, 51, 49, 43, 40, 1, 63, 1,
+ { 39, 51, 49, 43, 40, 1, 63, 1},
"****\n" },
{ "You are in space.",
- 39, 53, 43, 59, 62, 1, 41, 1,
+ { 39, 53, 43, 59, 62, 1, 41, 1},
"****\n" },
{ "You are in space.",
- 39, 54, 43, 59, 41, 1, 56, 1,
+ { 39, 54, 43, 59, 41, 1, 56, 1},
"****\n" },
{ "You are in space.",
- 39, 55, 62, 62, 56, 1, 42, 1,
+ { 39, 55, 62, 62, 56, 1, 42, 1},
"****\n" },
{ "You are in space.",
- 39, 56, 35, 36, 43, 1, 55, 1,
+ { 39, 56, 35, 36, 43, 1, 55, 1},
"****\n" },
{ "You are in space.",
- 44, 66, 66, 66, 66, 1, 66, 1,
+ { 44, 66, 66, 66, 66, 1, 66, 1},
"****\n" },
{ "You are in space.",
- 67, 57, 67, 67, 67, 1, 67, 1,
+ { 67, 57, 67, 67, 67, 1, 67, 1},
"****\n" },
{ "You are in space.",
- 64, 68, 68, 68, 68, 1, 68, 1,
+ { 64, 68, 68, 68, 68, 1, 68, 1},
"****\n" },
{ "You are orbiting a small blue planet.",
- 67, 67, 67, 67, 65, 1, 69, 1,
+ { 67, 67, 67, 67, 65, 1, 69, 1},
"****\n" },
{ "You are orbiting a tropical planet.",
- 68, 68, 68, 68, 66, 1, 70, 1,
+ { 68, 68, 68, 68, 66, 1, 70, 1},
"****\n" },
{ "You are flying through a dense fog.",
- 69, 69, 69, 69, 69, 1, 69, 1,
+ { 69, 69, 69, 69, 69, 1, 69, 1},
"A cold grey sea of mist is swirling around the windshield and water droplets\n\
are spewing from the wingtips. Ominous shadows loom in the darkness and it\n\
feels as if a trap is closing around us. I have lost all sense of direction.\n\
****\n" },
{ "You are approaching an island.",
- 71, 72, 73, 74, 68, 1, 0, 1,
+ { 71, 72, 73, 74, 68, 1, 0, 1},
"Feather palms outlined by mellow moonlight and a silvery black ocean line\n\
the perimeter of the island. Mighty mountains of emerald and amethyst rise\n\
like jagged teeth from black gums. The land rises sharply +. The shore\n\
line stretches on *+.*\n" },
{ "You are flying over a mountainous region.",
- 75, 73, 76, 77, 68, 1, 0, 1,
+ { 75, 73, 76, 77, 68, 1, 0, 1},
"Below is a shadow filled canyon with luminous waterfalls plummeting down beyond sight and looming spires and pinnacles. **The ocean is +.*\n" },
{ "You are flying over the ocean.",
- 74, 78, 78, 78, 68, 1, 0, 1,
+ { 74, 78, 78, 78, 68, 1, 0, 1},
"You bank over the water and your wingtips dip low to the green waves. The\n\
sea is very shallow here and the white coral beds beneath us teem with \n\
shadowy fish.****\n" },
{ "You are flying over the beach.",
- 71, 72, 79, 74, 68, 1, 80, 1,
+ { 71, 72, 79, 74, 68, 1, 80, 1},
"A warm gentle surf caresses the beach here. The land rises\n\
sharply +.* The beach is lost in low cliffs +.*\n" },
{ "You are flying over a large lagoon.",
- 81, 72, 73, 82, 68, 1, 0, 1,
+ { 81, 72, 73, 82, 68, 1, 0, 1},
"The water's brink winds tortuously inland. There are some lights +.***\n" },
{ "You are flying over a gently sloping plane.",
- 83, 71, 84, 85, 68, 1, 0, 1,
+ { 83, 71, 84, 85, 68, 1, 0, 1},
"The ground appears to be choked with vegetation.* The terrain is more\n\
rugged +.**\n" },
{ "You are flying through a gorge.",
- 0, 0, 86, 71, 68, 1, 102, 1,
+ { 0, 0, 86, 71, 68, 1, 102, 1},
"This is a narrow, steep sided canyon lined with plants. The stars above\n\
glisten through the over hanging trees. The gorge leads to the\n\
sea** +, and to a tumultuous origin +.\n" },
{ "You are flying over a plantation.",
- 85, 81, 71, 88, 68, 1, 89, 1,
+ { 85, 81, 71, 88, 68, 1, 89, 1},
"It might be possible to land here, but not in the dark.* There are some lights\n\
+ and *+.\n" },
{ "You are over the ocean.",
- 72, 78, 79, 74, 68, 1, 0, 1,
+ { 72, 78, 79, 74, 68, 1, 0, 1},
"The deep green swells foam and roll into the shore **+*.\n" },
{ "You are flying along the coast.",
- 86, 72, 90, 73, 68, 1, 91, 1,
+ { 86, 72, 90, 73, 68, 1, 91, 1},
"The coastline here is very rocky. The surf in some places is violent\n\
and explodes in a shower of sparkling, moonlit spray. ****\n" },
{ "This is a beautiful coral beach.",
- 106, 0, 107, 108, 73, 0, 0, 0,
+ { 106, 0, 107, 108, 73, 0, 0, 0 },
"Fine silver sand kissed lightly by warm tropical waters and illuminated\n\
by a huge tropical moon stretches at least 30 meters inland.\n\
Gently swaying palm trees are +.***\n" },
{ "You are flying over a small fishing village.",
- 77, 74, 71, 82, 68, 1, 92, 1,
+ { 77, 74, 71, 82, 68, 1, 92, 1},
"A few thatched huts lit with torches and bonfires line a road below.\n\
The road continues on ***+.\n" },
{ "You are flying over a clearing.",
- 88, 72, 74, 87, 68, 1, 93, 1,
+ { 88, 72, 74, 87, 68, 1, 93, 1},
"There is a dock here (big enough for a seaplane) leading to a clearing.\n\
The still waters of the lagoon reflects our orange turbo thrusters.****\n" },
{ "You are flying over the shore.",
- 94, 75, 95, 96, 68, 1, 0, 1,
+ { 94, 75, 95, 96, 68, 1, 0, 1},
"Rocky lava flows have overtaken the beach here.****\n" },
{ "You are flying in a wide valley.",
- 95, 97, 86, 75, 68, 1, 98, 1,
+ { 95, 97, 86, 75, 68, 1, 98, 1},
"This is a shallow valley yet the floor is obscured by a thick mist.\n\
The valley opens into blackness +. The mist grows thicker +.**\n" },
{ "You are flying near the shore.",
- 96, 77, 75, 99, 68, 1, 0, 1,
+ { 96, 77, 75, 99, 68, 1, 0, 1},
"Very tall trees growing in neatly planted rows march off from the \n\
water here towards the hills and down to the flat lands *+.**\n" },
{ "You are flying around the very tip of the island.",
- 95, 79, 90, 84, 68, 1, 0, 1,
+ { 95, 79, 90, 84, 68, 1, 0, 1},
"Sheer cliffs rise several hundred feet to a tree covered summit. Far below,\n\
the grey sea gnaws voraciously at the roots of these cliffs. The island bends\n\
around +** and +.\n" },
{ "You are flying along the coastline.",
- 99, 82, 88, 100, 68, 1, 101, 1,
+ { 99, 82, 88, 100, 68, 1, 101, 1},
"This is a narrow strip of sand lined with very few trees. The stars above\n\
flicker through wisps of clouds. The beach continues on -.* There\n\
are some lights +.*\n" },
{ "You are flying over several cottages and buildings",
- 99, 82, 77, 87, 68, 1, 103, 1,
+ { 99, 82, 77, 87, 68, 1, 103, 1},
"Directly below is small ornate house lit up with spot lights and decorative\n\
bulbs. A bell tower and a spurting fountain are nearby. Small dirt roads go\n\
+ and +.**\n" },
{ "You are in a field of sugar cane.",
- 109, 110, 111, 112, 77, 0, 0, 0,
+ { 109, 110, 111, 112, 77, 0, 0, 0 },
"These strong, thick canes give little shelter but many cuts and scrapes.\n\
There are some large trees ***+.\n" },
{ "You are flying over the ocean.",
- 95, 78, 90, 86, 68, 1, 0, 1,
+ { 95, 78, 90, 86, 68, 1, 0, 1},
"The water is a placid ebony.****\n" },
{ "You are on the coast road.",
- 113, 114, 115, 116, 79, 0, 0, 0,
+ { 113, 114, 115, 116, 79, 0, 0, 0 },
"The road winds close to the shore here. The trees on either side press close\n\
in the darkness and seem to be watching us.** The road continues -\n\
and -.\n" },
{ "You are on the main street of the village.",
- 117, 118, 119, 120, 81, 0, 0, 0,
+ { 117, 118, 119, 120, 81, 0, 0, 0 },
"The natives are having a festive luau here. Beautiful dancers gyrate in the\n\
torchlight to the rhythm of wooden drums. A suckling pig is sizzling in a\n\
bed of coals and ti leaves are spread with poi and tropical fruits. Several\n\
natives have come over to you and want you to join in the festivities.\n\
There is a light burning in a bungalow +.***\n" },
{ "You are at the sea plane dock.",
- 121, 122, 123, 124, 82, 0, 0, 0,
+ { 121, 122, 123, 124, 82, 0, 0, 0 },
"The clearing is deserted. The grass is wet with the evening dew +.*\n\
There is something set up +.*\n" },
{ "You are flying over the ocean.",
- 94, 83, 95, 96, 68, 1, 0, 1,
+ { 94, 83, 95, 96, 68, 1, 0, 1},
"The black waves surge off shore here. The ocean becomes much calmer +.***\n" },
{ "You are flying along the coast.",
- 94, 84, 86, 83, 68, 1, 0, 1,
+ { 94, 84, 86, 83, 68, 1, 0, 1},
"The land is very low here with a river running into the sea +. There\n\
is a wide valley opening up +, but a strange mist is flowing out of it.\n\
The very tip of the island is +.*\n" },
{ "You are flying along the coast.",
- 94, 85, 83, 99, 68, 1, 0, 1,
+ { 94, 85, 83, 99, 68, 1, 0, 1},
"The coast here is cluttered with rocky outcroppings.****\n" },
{ "You are lost in a sea of fog.",
- 97, 104, 97, 97, 97, 1, 0, 1,
+ { 97, 104, 97, 97, 97, 1, 0, 1},
"What have you gotten us into?\n\
I can't see a thing! ****\n" },
{ "You are on a gravel wash.",
- 125, 126, 127, 128, 84, 0, 0, 0,
+ { 125, 126, 127, 128, 84, 0, 0, 0 },
"It is very dark here. A cool breeze is blowing from +. No moonlight can\n\
reach below a thick canopy of fog above. The sound of cascading water is\n\
coming from +.**\n" },
{ "You are flying over a wide beach.",
- 96, 88, 85, 87, 68, 1, 105, 1,
+ { 96, 88, 85, 87, 68, 1, 105, 1},
"There are some lighted buildings *+. Some trees are growing +.*\n" },
{ "You are flying over the ocean.",
- 100, 100, 87, 100, 68, 1, 0, 1,
+ { 100, 100, 87, 100, 68, 1, 0, 1},
"The black waves surge and splash against the rocky shore.****\n" },
{ "You are on a narrow strip of sand.",
- 129, 130, 131, 0, 87, 0, 0, 0,
+ { 129, 130, 131, 0, 87, 0, 0, 0 },
"Rather coarse sand makes this beach very steep and only a few meters wide.\n\
A fresh ocean breeze is rustling the ferns **+.*\n" },
{ "This is Fern Canyon.",
- 0, 0, 132, 133, 76, 0, 0, 0,
+ { 0, 0, 132, 133, 76, 0, 0, 0 },
"Delicate waving ferns flourish here, suckled by warm water dripping from \n\
every fissure and crevice in the solid rock walls. The stars above sparkle\n\
through a thin mist. The canyon winds **-, and -.\n" },
{ "This is the front lawn.",
- 134, 135, 136, 137, 88, 0, 0, 0,
+ { 134, 135, 136, 137, 88, 0, 0, 0 },
"There is a small fountain lighted with green and yellow bulbs here where\n\
the driveway meets the lawn. Across the driveway, +, is an ornate white\n\
house lit with gas lamps. A bell tower here is awash in pale blue.* There\n\
is a road + which turns into the driveway.*\n" },
{ "You have just crossed the crest of a mountain.",
- 97, 79, 86, 71, 68, 1, 0, 1,
+ { 97, 79, 86, 71, 68, 1, 0, 1},
"The fog vanished mysteriously as we flew over the crest.*\n\
Far + I can see the ocean sparkling in the moonlight.**\n" },
{ "You are on a sandy beach.",
- 138, 139, 140, 0, 99, 0, 0, 0,
+ { 138, 139, 140, 0, 99, 0, 0, 0 },
"Fine coral sand, a fresh sea breeze, and dramatic surf add to this beach's\n\
appeal.** Stone steps lead to a lighted path in the gardens +.*\n" },
{ "You are among palm trees near the shore.",
- 141, 80, 142, 143, 73, 0, 0, 0,
+ { 141, 80, 142, 143, 73, 0, 0, 0 },
"Arching coconut palms laden with fruit provide a canopy for the glistening\n\
white sand and sparse, dew covered grasses growing here. The forest grows\n\
denser +. Crickets are chirping loudly here. The ocean is +.**\n" },
{ "You are walking along the beach.",
- 144, 0, 145, 80, 73, 0, 0, 0,
+ { 144, 0, 145, 80, 73, 0, 0, 0 },
"The warm tropical waters nuzzle your ankles as you walk. Above is a gorgeous\n\
starscape. The battlestar must be up there somewhere. The slope of the sand\n\
is so gentle that the surf only slides up the sand.** There are some rocks\n\
+.*\n" },
{ "You are walking along the beach.",
- 146, 0, 80, 147, 73, 0, 0, 0,
+ { 146, 0, 80, 147, 73, 0, 0, 0 },
"The tide is out very far tonight, and it is possible to explore hidden rocks\n\
and caves not ordinarily accessible. Rich beds of seaweed have been exposed\n\
to the cool night air.****\n" },
{ "You are in a papaya grove.",
- 148, 89, 149, 150, 77, 0, 0, 0,
+ { 148, 89, 149, 150, 77, 0, 0, 0 },
"Slender trees with their large seven lobed leaves bulge with succulent fruit.\n\
There are some tall trees +.***\n" },
{ "You are in a field of pineapple.",
- 89, 151, 152, 153, 77, 0, 0, 0,
+ { 89, 151, 152, 153, 77, 0, 0, 0 },
"The sharp dagger like pineapple leaves can pierce the flesh and hold fast\n\
a skewered victim with tiny barbs.* The field ends +.**\n" },
{ "You are in a field of kiwi plants.",
- 149, 154, 155, 89, 77, 0, 0, 0,
+ { 149, 154, 155, 89, 77, 0, 0, 0 },
"Round hairy fruit hang from staked vines here. There are some trees +\n\
and +. The field ends in a road +.*\n" },
{ "You are in a large grove of coconuts.",
- 150, 153, 89, 156, 77, 0, 0, 0,
+ { 150, 153, 89, 156, 77, 0, 0, 0 },
"These trees are much taller than any growing near the shore and the shadows\n\
are also deeper. It's hard to keep my sense of direction.****\n" },
{ "You are in the woods.",
- 157, 91, 158, 116, 79, 0, 0, 0,
+ { 157, 91, 158, 116, 79, 0, 0, 0 },
"Tropical undergrowth makes the going rough here. Sword ferns give no strong\n\
foot hold and the dangling vines would gladly throttle one. The darkness is\n\
so intense here that we stand in utter blackness.****\n" },
{ "You are at the shore.",
- 91, 0, 159, 145, 79, 0, 160, 0,
+ { 91, 0, 159, 145, 79, 0, 160, 0 },
"The low minus tide tonight might make it possible to climb down to a\n\
small cave entrance below. Large rocks would usually churn the waves\n\
asunder.*** The beach goes -.\n" },
{ "You are on the coast road.",
- 158, 161, 162, 91, 79, 0, 0, 0,
+ { 158, 161, 162, 91, 79, 0, 0, 0 },
"The road is beginning to turn slightly -. I can hear the surf +. The road\n\
continues into the dark forest +.*\n" },
{ "The road winds deeper into the trees.",
- 163, 142, 91, 164, 79, 0, 0, 0,
+ { 163, 142, 91, 164, 79, 0, 0, 0 },
"Only narrow moonbeams filter through the dense foliage above. The moist rich\n\
earth has nurtured a myriad of slugs, snakes, and spiders to grow here. The\n\
road continues - and *- into the shadows.*\n" },
{ "This is the front porch of the bungalow.",
- 165, 92, 0, 0, 81, 0, 0, 0,
+ { 165, 92, 0, 0, 81, 0, 0, 0 },
"The veranda is lit by a small yellow bug light. The door leads -.\n\
The stone walk down to the luau is lined with burning torches +. That\n\
roast pig smells good.**\n" },
{ "You are on a path leading to the lagoon.",
- 92, 166, 167, 168, 81, 0, 0, 0,
+ { 92, 166, 167, 168, 81, 0, 0, 0 },
"This path winds through the underbrush and towards the lagoon *+. The\n\
broad faced moon peeps though the branches above. The sound of drums echos\n\
in the woods.**\n" },
{ "This is a dirt road.",
- 169, 118, 170, 92, 81, 0, 0, 0,
+ { 169, 118, 170, 92, 81, 0, 0, 0 },
"**The road continues on - here for some distance. A bonfire and party light\n\
up the night sky +.\n" },
{ "You are on a dirt road.",
- 171, 118, 92, 172, 81, 0, 0, 0,
+ { 171, 118, 92, 172, 81, 0, 0, 0 },
"**There is a village +. A huge bonfire licks at the trees, and a celebration\n\
of some sort is going on there. The smell of luscious cooking is tantalizing\n\
my flared nostrils. The road continues +.\n" },
{ "You are on a dirt road.",
- 173, 93, 174, 175, 82, 0, 0, 0,
+ { 173, 93, 174, 175, 82, 0, 0, 0 },
"This is a wide grassy clearing bedewed with droplets of evening mist. The\n\
trees alongside the road moan and whisper as we pass. They seem annoyed at\n\
our presence. **The road continues - and -.\n" },
{ "You are at the seaplane dock.",
- 93, 0, 176, 177, 82, 0, 0, 0,
+ { 93, 0, 176, 177, 82, 0, 0, 0 },
"Not a living thing stirs the calm surface of the lagoon. The wooden planks\n\
creak unnaturally as we tread on them. The dock reaches a clearing +.\n\
A dark trail leads around the lagoon **+.\n" },
{ "There are some tables on the lawn here.",
- 121, 122, 123, 93, 82, 0, 0, 0,
+ { 121, 122, 123, 93, 82, 0, 0, 0 },
"Some tables are strewn on the wet lawn.****\n" },
{ "You are nosing around in the bushes.",
- 124, 124, 93, 124, 82, 0, 0, 0,
+ { 124, 124, 93, 124, 82, 0, 0, 0 },
"There is little here but some old beer cans. It is damp and dirty in here.\n\
I think I stepped in something unpleasant. It would be best to go **-.*\n" },
{ "You are walking in a dry stream bed.",
- 178, 98, 179, 0, 84, 0, 0, 0,
+ { 178, 98, 179, 0, 84, 0, 0, 0 },
"The large cobblestones are difficult to walk on. No starlight reaches\n\
below a black canopy of fog seemingly engulfing the whole island. A dirt\n\
path along the wash is **+. The high bank is impossible to climb +.\n" },
{ "You are at the thermal pools.",
- 98, 0, 180, 181, 84, 0, 0, 0,
+ { 98, 0, 180, 181, 84, 0, 0, 0 },
"Odd spluttering and belching water splashes up around the rocks here.\n\
A spectacular waterfall nearby tumbles down as a river of effervescent\n\
bubbles. The air is quite warm and a cave entrance ***+ spews steam.\n" },
{ "You are in the woods.",
- 127, 180, 182, 98, 84, 0, 0, 0,
+ { 127, 180, 182, 98, 84, 0, 0, 0 },
"It is pitch black in the forest here and my pant leg is caught on something.\n\
There may be poison oak here. What was that? A lantern just flickered by in\n\
the dark! The sound of rushing water is coming from *+.**\n" },
{ "You are on a dirt trail.",
- 179, 181, 98, 0, 84, 0, 0, 0,
+ { 179, 181, 98, 0, 84, 0, 0, 0 },
"The trail seems to start here and head towards the forest +.** High, dark\n\
cliffs border the trail +. Some crickets are chirping noisily.\n" },
{ "You are walking along the beach.",
- 183, 101, 184, 0, 87, 0, 0, 0,
+ { 183, 101, 184, 0, 87, 0, 0, 0 },
"The surf is rather tame tonight. The beach continues + and +.**\n" },
{ "You are walking along the beach.",
- 101, 185, 186, 0, 87, 0, 0, 0,
+ { 101, 185, 186, 0, 87, 0, 0, 0 },
"This is not a very nice beach. The coarse sand hurts my feet.****\n" },
{ "You are walking through some ferns.",
- 184, 186, 187, 101, 87, 0, 0, 0,
+ { 184, 186, 187, 101, 87, 0, 0, 0 },
"This is a wide field growing only ferns and small shrubs.** In the dark\n\
it would be all to easy to stumble into a venomous snake. The ocean is\n\
*+.\n" },
{ "You are in a narrow canyon.",
- 0, 0, 188, 102, 76, 0, 0, 0,
+ { 0, 0, 188, 102, 76, 0, 0, 0 },
"The steep sides here squeeze a little freshet through a gauntlet like\n\
series of riffles and pools. The cool mountain air is refreshing.****\n" },
{ "The canyon is much wider here.",
- 0, 0, 102, 189, 76, 0, 0, 0,
+ { 0, 0, 102, 189, 76, 0, 0, 0 },
"The sheer rock walls rise 10 meters into darkness. A slender waterfall\n\
careens away from the face of the rock high above and showers the gravel\n\
floor with sparkling raindrops.** The canyon continues -\n\
and -.\n" },
{ "You are on the front porch of the cottage.",
- 190, 103, 0, 0, 0, 0, 0, 0,
+ { 190, 103, 0, 0, 0, 0, 0, 0 },
"The veranda is deserted. A table and chair are the only things on the porch.\n\
Inside the house is a parlor lighted with an elegant chandelier. The door\n\
leads -. The lawn and fountain are +.**\n" },
{ "You are in a palm grove.",
- 103, 191, 192, 105, 88, 0, 0, 0,
+ { 103, 191, 192, 105, 88, 0, 0, 0 },
"Crickets are chirping in the cool night air.****\n" },
{ "You are on a dirt road.",
- 193, 192, 245, 103, 88, 0, 0, 0,
+ { 193, 192, 245, 103, 88, 0, 0, 0 },
"There are many bright lights +. The road cleaves the darkness +.\n\
A small dirt road goes -, and a drive way peals off +.\n" },
{ "You are in a field of small shrubs.",
- 184, 186, 103, 187, 88, 0, 0, 0,
+ { 184, 186, 103, 187, 88, 0, 0, 0 },
"**Pine and other coniferous saplings are growing here. The rich brown\n\
soil is well watered. Across a large lawn +, there is a small cottage lighted\n\
with spot lights and gas lamps. A cool land breeze is blowing.*\n" },
{ "The beach is pretty rocky here.",
- 194, 105, 195, 0, 96, 0, 0, 0,
+ { 194, 105, 195, 0, 96, 0, 0, 0 },
"The tide is very low tonight. The beach is nicer *+.**\n" },
{ "The beach is almost 10 meters wide here.",
- 105, 183, 196, 0, 99, 0, 0, 0,
+ { 105, 183, 196, 0, 99, 0, 0, 0 },
"The sand has become more coarse and the beach steeper.****\n" },
{ "You are in the gardens.",
- 195, 196, 197, 105, 99, 0, 0, 0,
+ { 195, 196, 197, 105, 99, 0, 0, 0 },
"Shadowy expanses of lawn and leaf have been groomed and manicured here.\n\
The night sky is glowing with a full moon.** A lighted path leads -.\n\
Stone steps lead down to the beach +.\n" },
{ "You are on the coast road.",
- 198, 106, 163, 199, 73, 0, 0, 0,
+ { 198, 106, 163, 199, 73, 0, 0, 0 },
"The forest is dense on either side. The trees seem to be actually squeezing\n\
together to keep us from passing. A feeling of enmity is in the air.**\n\
The road continues - and -.\n" },
{ "You are in the forest.",
- 116, 107, 91, 106, 73, 0, 0, 0,
+ { 116, 107, 91, 106, 73, 0, 0, 0 },
"I suppose there are trees and ferns all around, but it is too dark to see.****\n" },
{ "You are in the forest.",
- 199, 108, 106, 146, 73, 0, 0, 0,
+ { 199, 108, 106, 146, 73, 0, 0, 0 },
"There are shadowy trees and ferns all around.****\n" },
{ "You are in a copse.",
- 142, 107, 145, 80, 0, 0, 0, 0,
+ { 142, 107, 145, 80, 0, 0, 0, 0 },
"This is a secret hidden thicket only noticeable from the beach. In the\n\
moonlight, I can tell that someone has been digging here recently.****\n" },
{ "You are at the tide pools.",
- 91, 0, 114, 107, 79, 0, 0, 0,
+ { 91, 0, 114, 107, 79, 0, 0, 0 },
"These rocks and pools are the home for many sea anemones and crustaceans.\n\
They are exposed because of the low tide. There is a beach ***+.\n" },
{ "You are in the forest.",
- 199, 108, 143, 0, 73, 0, 0, 0,
+ { 199, 108, 143, 0, 73, 0, 0, 0 },
"This is a shallow depression sheltered from the wind by a thick growth of \n\
thorny shrubs. It looks like someone is camping here. There is a fire pit\n\
with warm, crackling flames and coals here.* The beach is +.* The thorny\n\
shrubs block the way -.\n" },
{ "You are at the mouth of the lagoon.",
- 200, 0, 108, 201, 74, 0, 0, 0,
+ { 200, 0, 108, 201, 74, 0, 0, 0 },
"The beach ends here where the coral reef rises to form a wide lagoon.\n\
A path winds around the lagoon to the -.* The beach continues\n\
on -. Only water lies +.\n" },
{ "You are in a breadfruit grove.",
- 202, 109, 203, 204, 77, 0, 0, 0,
+ { 202, 109, 203, 204, 77, 0, 0, 0 },
"The tall trees bend leisurely in the breeze, holding many round breadfruits\n\
close to their large serrated leaves. There are coconut palms +,\n\
*+, and +.\n" },
{ "You are in a grove of mango trees.",
- 203, 111, 205, 109, 77, 0, 0, 0,
+ { 203, 111, 205, 109, 77, 0, 0, 0 },
"The trees are not tall enough to obscure the view and the bright moonlight\n\
makes it fairly easy to see.****\n" },
{ "You are in a grove of coconut palms.",
- 204, 112, 109, 206, 77, 0, 0, 0,
+ { 204, 112, 109, 206, 77, 0, 0, 0 },
"All I can see around us are trees and ominous shapes darting in and out of the\n\
shadows.****\n" },
{ "You are in a coconut grove.",
- 110, 207, 208, 209, 77, 0, 0, 0,
+ { 110, 207, 208, 209, 77, 0, 0, 0 },
"There are countless trees here.****\n" },
{ "You are in a field of pineapple.",
- 154, 208, 210, 110, 77, 0, 0, 0,
+ { 154, 208, 210, 110, 77, 0, 0, 0 },
"The sharp leaves are cutting me to ribbons. There is a road **+.*\n" },
{ "You are in a coconut grove.",
- 112, 209, 110, 211, 77, 0, 0, 0,
+ { 112, 209, 110, 211, 77, 0, 0, 0 },
"There is a field of something **+.*\n" },
{ "You are on the edge of a kiwi and pineapple field.",
- 111, 152, 155, 110, 77, 0, 0, 0,
+ { 111, 152, 155, 110, 77, 0, 0, 0 },
"An irrigation ditch separates the two fields here. There is a road **+.*\n" },
{ "This is a dirt road.",
- 205, 210, 212, 111, 77, 0, 0, 0,
+ { 205, 210, 212, 111, 77, 0, 0, 0 },
"The road runs - and - here. It is very dark in the forest.**\n" },
{ "You are in a palm grove.",
- 206, 211, 112, 213, 77, 0, 0, 0,
+ { 206, 211, 112, 213, 77, 0, 0, 0 },
"There are trees all around us.****\n" },
{ "You are on the edge of a small clearing.",
- 157, 113, 157, 157, 79, 0, 0, 0,
+ { 157, 113, 157, 157, 79, 0, 0, 0 },
"The ground is rather marshy here and the darkness is intense. A swarm of\n\
ravenous mosquitoes has descended upon you and has sent you quaking to your\n\
knees.****\n" },
{ "You are in the woods.",
- 158, 115, 215, 113, 79, 0, 0, 0,
+ { 158, 115, 215, 113, 79, 0, 0, 0 },
"You have walked a long way and found only spider webs. ****\n" },
{ "You are walking along the shore.",
- 115, 0, 214, 114, 86, 0, 0, 0,
+ { 115, 0, 214, 114, 86, 0, 0, 0 },
"You are now about 10 meters above the surf on a gently rising cliffside.**\n\
The land rises +. There is a beach far +.\n" },
{ "You are just inside the entrance to the sea cave.",
- 246, 114, 0, 0, 114, 1, 0, 0,
+ { 246, 114, 0, 0, 114, 1, 0, 0 },
"The sound of water dripping in darkness and the roar of the ocean just outside\n\
create a very unwelcoming atmosphere inside this cave. Only on rare occasions\n\
such as this is it possible to enter the forbidden catacombs... The cave\n\
continues -.***\n" },
{ "You are in a secret nook beside the road.",
- 115, 159, 162, 91, 79, 0, 0, 0,
+ { 115, 159, 162, 91, 79, 0, 0, 0 },
"This little thicket is hidden from the road in the shadows of the forest.\n\
From here we have a clear view of any traffic along the road. A great hollow\n\
tree stuffed with something is nearby. The road is +.***\n" },
{ "You are on the coast road.",
- 215, 214, 0, 115, 86, 0, 0, 0,
+ { 215, 214, 0, 115, 86, 0, 0, 0 },
"The road turns abruptly - here, wandering deeper into the black forest.***\n" },
{ "You are on a dirt road.",
- 216, 116, 113, 141, 79, 0, 0, 0,
+ { 216, 116, 113, 141, 79, 0, 0, 0 },
"We are walking through a tunnel of unfriendly trees and shrubs. The tall\n\
ones bend over the roadway and reach down with their branches to grab us.\n\
Broad leafed plants at the roadside whisper in the darkness. Something\n\
just darted across the road and into the bushes *+. Let's go *-.\n" },
{ "You have discovered a hidden thicket near the road.",
- 163, 142, 116, 106, 73, 0, 0, 0,
+ { 163, 142, 116, 106, 73, 0, 0, 0 },
"I would think it best to stay n the road. The forest seems very unfriendly\n\
at night. The road is **+.*\n" },
{ "You are in the living room.",
- 0, 117, 217, 218, 0, 0, 0, 0,
+ { 0, 117, 217, 218, 0, 0, 0, 0 },
"A decorative entry with fresh flowers and wall to wall carpeting leads into\n\
the living room here where a couch and two chairs converse with an end table.\n\
*The exit is +.* The bedroom is +.\n" },
{ "You are at the lagoon.",
- 118, 0, 167, 168, 81, 0, 0, 0,
+ { 118, 0, 167, 168, 81, 0, 0, 0 },
"A small beach here is deserted except for some fishing nets. It is very\n\
peaceful at the lagoon at night. The sound of native drums is carried on\n\
the night breeze. There are paths leading off into darkness +,\n\
*+, and +.\n" },
{ "You are at the lagoon.",
- 118, 0, 170, 166, 81, 0, 0, 0,
+ { 118, 0, 170, 166, 81, 0, 0, 0 },
"The grass near the water is moist with the refreshing evening dew. Far away,\n\
drums reverberate in the forest.** The path continues + and +.\n" },
{ "You are at the lagoon.",
- 118, 0, 166, 172, 81, 0, 0, 0,
+ { 118, 0, 166, 172, 81, 0, 0, 0 },
"The path meanders through shadows of tussocks of grass, ferns, and thorny\n\
bushes here and continues on **- and -.\n" },
{ "You are in the woods.",
- 219, 119, 220, 92, 81, 0, 0, 0,
+ { 219, 119, 220, 92, 81, 0, 0, 0 },
"There are plenty of ferns and thorny bushes here! Spider webs and probing\n\
branches snare us as we stumble along in the pitch black night.****\n" },
{ "You are on a dirt road.",
- 220, 167, 199, 119, 74, 0, 0, 0,
+ { 220, 167, 199, 119, 74, 0, 0, 0 },
"The road winds rather close to a large lagoon here and many sedges and tall\n\
loom in the darkness *+. The road continues - and -.\n" },
{ "You are in the woods beside the road.",
- 221, 120, 92, 222, 81, 0, 0, 0,
+ { 221, 120, 92, 222, 81, 0, 0, 0 },
"The forest grows darker +. The road is +.**\n" },
{ "The road crosses the lagoon here.",
- 222, 0, 120, 174, 81, 0, 0, 0,
+ { 222, 0, 120, 174, 81, 0, 0, 0 },
"Strange mists rising from the water engulf a rickety old enclosed bridge here.\n\
Spider webs catch our hair as we pass through its rotting timbers. I felt\n\
something drop on my neck. The road delves into the accursed forest\n\
**+ and +.\n" },
{ "You are in a coconut palm grove.",
- 223, 121, 224, 225, 82, 0, 0, 0,
+ { 223, 121, 224, 225, 82, 0, 0, 0 },
"The tall palms are planted about 30 feet apart and the stary sky is clearly\n\
visible above. A low growing grass carpets the ground all around. The grove\n\
continues +.***\n" },
{ "You are walking along a dirt road.",
- 224, 176, 172, 121, 82, 0, 0, 0,
+ { 224, 176, 172, 121, 82, 0, 0, 0 },
"You are near misty patch of the roadway **+. The road continues -.\n" },
{ "You are on a dirt road.",
- 225, 177, 121, 226, 82, 0, 0, 0,
+ { 225, 177, 121, 226, 82, 0, 0, 0 },
"The road turns abruptly - here, splitting a grove of palm trees.* In the\n\
starlight I can also discern that the road continues - toward the lagoon.*\n" },
{ "You are on a trail running around the lagoon.",
- 172, 0, 0, 122, 82, 0, 0, 0,
+ { 172, 0, 0, 122, 82, 0, 0, 0 },
"The dark waters brush the trail here and the path crosses an old bridge\n\
+. There is deep water + and +. The trail continues -.\n" },
{ "This is the mouth of the lagoon.",
- 175, 0, 122, 227, 82, 0, 0, 0,
+ { 175, 0, 122, 227, 82, 0, 0, 0 },
"The coral reef wraps around a natural bay here to create a wide lagoon which\n\
winds tortuously inland.** A trail goes around the lagoon +.\n\
The beach is -.\n" },
{ "You are in a dry stream bed.",
- 0, 125, 0, 0, 84, 0, 0, 0,
+ { 0, 125, 0, 0, 84, 0, 0, 0 },
"The dry wash drains over a tall precipice here into a turbid morass below. The\n\
most noisome stench imaginable is wafting up to defile our nostrils. Above,\n\
the blackness is intense and a strange mist engulfs the island.* Let's go\n\
-.**\n" },
{ "You are on a dirt path along the wash.",
- 0, 128, 125, 228, 84, 0, 0, 0,
+ { 0, 128, 125, 228, 84, 0, 0, 0 },
"The trail winds along the gravel wash and delves into the forest ***+.\n" },
{ "The thermal pools flow into a stream here.",
- 127, 0, 229, 126, 84, 0, 0, 0,
+ { 127, 0, 229, 126, 84, 0, 0, 0 },
"The gurgling hot waters pour over boulders into a swiftly flowing\n\
stream **+. The pools are +.\n" },
{ "You are at the entrance to a cave.",
- 128, 230, 126, 0, 84, 0, 0, 0,
+ { 128, 230, 126, 0, 84, 0, 0, 0 },
"A torch lights the entrance to the cave. Deep inside I can see shadows moving.\n\
A path goes + from here. The entrance is +.**\n" },
{ "You are in the woods.",
- 182, 229, 182, 127, 84, 0, 0, 0,
+ { 182, 229, 182, 127, 84, 0, 0, 0 },
"Thorns tangle your every effort to proceed.* The sound of rushing water is\n\
+.**\n" },
{ "You are walking along the beach.",
- 139, 129, 184, 0, 99, 0, 0, 0,
+ { 139, 129, 184, 0, 99, 0, 0, 0 },
"Some dunes here progress inland and make it impossible to get very far in that\n\
direction. The beach continues - and -.* The ocean is +.\n" },
{ "You are in the dunes.",
- 183, 101, 184, 129, 87, 0, 0, 0,
+ { 183, 101, 184, 129, 87, 0, 0, 0 },
"The endless rolling and pitching sand dunes are enough to make one very queasy!\n\
The sand is cool and the stars are bright at the ocean. The only way I'm going\n\
is ***+.\n" },
{ "This is a lousy beach.",
- 130, 0, 0, 0, 87, 0, 0, 0,
+ { 130, 0, 0, 0, 87, 0, 0, 0 },
"Volcanic and viciously sharp bitted grains of sand here bite like cold steel\n\
into my tender feet. I refuse to continue on. Let's get out of here. The\n\
beach is better +.***\n" },
{ "You are in a field of sparse ferns.",
- 131, 185, 187, 130, 87, 0, 0, 0,
+ { 131, 185, 187, 130, 87, 0, 0, 0 },
"The lava rock outcroppings here will support few plants. There is more \n\
vegetation +.** The ocean is +.\n" },
{ "You are in the woods.",
- 131, 131, 137, 131, 87, 0, 0, 0,
+ { 131, 131, 137, 131, 87, 0, 0, 0 },
"Young trees and tall shrubs grow densely together here.\n\
They grow thicker **+.*\n" },
{ "The canyon is no wider than a foot here.",
- 0, 0, 0, 132, 0, 0, 0, 0,
+ { 0, 0, 0, 132, 0, 0, 0, 0 },
"The freshet is gushing through the narrow trough, but the canyon has grown\n\
too narrow to follow it any farther.*** I guess we'll have to go -.\n" },
{ "You are in a narrow part of the canyon.",
- 0, 0, 133, 232, 76, 0, 0, 0,
+ { 0, 0, 133, 232, 76, 0, 0, 0 },
"The two sheer sides are no more than a few meters apart here. There is a stone\n\
door in the wall +. The gravelly floor runs with tiny rivulets seeping \n\
from the ground itself.* The canyon continues - and -.\n" },
{ "You are in the drawing room.",
- 0, 134, 0, 0, 0, 0, 0, 0,
+ { 0, 134, 0, 0, 0, 0, 0, 0 },
"Exquisitely decorated with plants and antique furniture of superb\n\
craftsmanship, the parlor reflects its owners impeccable taste. The tropical\n\
night air pours in through open shutters *+. There doesn't seem \n\
to be anybody around. A large immaculate oaken desk is visible in the\n\
study and it even has a old fashioned telephone to complete the decor.**\n" },
{ "You are in a palm grove.",
- 135, 191, 233, 191, 88, 0, 0, 0,
+ { 135, 191, 233, 191, 88, 0, 0, 0 },
"Grassy rows of dew covered palms stretch as far as I can see.**\n\
There is a road +.*\n" },
{ "You are on a dirt road.",
- 136, 233, 234, 135, 88, 0, 0, 0,
+ { 136, 233, 234, 135, 88, 0, 0, 0 },
"The road winds through a coconut palm grove here. It continues on - \n\
and -.**\n" },
{ "The road leads to several large buildings here.",
- 235, 136, 236, 237, 88, 0, 0, 0,
+ { 235, 136, 236, 237, 88, 0, 0, 0 },
"There is a lighted clubhouse +,* a large barn and stable +, and a\n\
garage of similar construct to the barn +.\n" },
{ "This part of the beach is impassable.",
- 0, 138, 0, 0, 96, 0, 0, 0,
+ { 0, 138, 0, 0, 96, 0, 0, 0 },
"The see is calm tonight. The beach goes *-.**\n" },
{ "You are in the gardens.",
- 195, 140, 197, 138, 96, 0, 0, 0,
+ { 195, 140, 197, 138, 96, 0, 0, 0 },
"Dew beaded grass sparkles in the moonlight. Tiny lamps beside the path light\n\
the way to the ocean ***+.\n" },
{ "You are in the gardens.",
- 140, 183, 197, 139, 99, 0, 0, 0,
+ { 140, 183, 197, 139, 99, 0, 0, 0 },
"Beautiful flowers and shrubs surround a lighted goldfish pond.****\n" },
{ "You are on a stone walk in the garden.",
- 195, 196, 238, 140, 99, 0, 0, 0,
+ { 195, 196, 238, 140, 99, 0, 0, 0 },
"The walk leads to a road **+.*\n" },
{ "You are in the forest near the road.",
- 198, 141, 216, 198, 73, 0, 0, 0,
+ { 198, 141, 216, 198, 73, 0, 0, 0 },
"There are many thorny bushes here!****\n" },
{ "You are at a fork in the road.",
- 239, 146, 141, 170, 73, 0, 0, 0,
+ { 239, 146, 141, 170, 73, 0, 0, 0 },
"Two roads come together in the darkness here. One runs -,* the other \n\
runs - and -.\n" },
{ "You are on a dirt path around the lagoon.",
- 170, 147, 146, 0, 74, 0, 0, 0,
+ { 170, 147, 146, 0, 74, 0, 0, 0 },
"The still waters reflect bending palms and a stary sky. It looks like\n\
the path runs into a clearing +. The path continues -.**\n" },
{ "You are drowning in the lagoon.",
- 201, 201, 147, 201, 74, 0, 0, 0,
+ { 201, 201, 147, 201, 74, 0, 0, 0 },
"I suggest you get out before you become waterlogged.****\n" },
{ "You are in a coconut palm grove.",
- 202, 148, 203, 204, 77, 0, 0, 0,
+ { 202, 148, 203, 204, 77, 0, 0, 0 },
"****\n" },
{ "You are in a palm grove.",
- 202, 149, 205, 148, 77, 0, 0, 0,
+ { 202, 149, 205, 148, 77, 0, 0, 0 },
"****\n" },
{ "You are in a palm grove.",
- 202, 150, 148, 206, 77, 0, 0, 0,
+ { 202, 150, 148, 206, 77, 0, 0, 0 },
"****\n" },
{ "You are on a dirt road.",
- 203, 155, 212, 149, 77, 0, 0, 0,
+ { 203, 155, 212, 149, 77, 0, 0, 0 },
"*This road ends here at a palm grove but continues on - for quite\n\
some way.**\n" },
{ "You are in a coconut palm grove.",
- 204, 156, 150, 213, 77, 0, 0, 0,
+ { 204, 156, 150, 213, 77, 0, 0, 0 },
"****\n" },
{ "You are in a coconut grove.",
- 151, 219, 208, 209, 77, 0, 0, 0,
+ { 151, 219, 208, 209, 77, 0, 0, 0 },
"*The grove ends +.**\n" },
{ "You are in a coconut grove.",
- 152, 207, 239, 151, 77, 0, 0, 0,
+ { 152, 207, 239, 151, 77, 0, 0, 0 },
"**There is a dirt road +.*\n" },
{ "You are in a coconut grove.",
- 153, 207, 151, 211, 77, 0, 0, 0,
+ { 153, 207, 151, 211, 77, 0, 0, 0 },
"****\n" },
{ "This is a dirt road.",
- 205, 239, 212, 154, 77, 0, 0, 0,
+ { 205, 239, 212, 154, 77, 0, 0, 0 },
"The road continues - and -.**\n" },
{ "You are in a coconut grove.",
- 153, 209, 153, 213, 77, 0, 0, 0,
+ { 153, 209, 153, 213, 77, 0, 0, 0 },
"****\n" },
{ "You are in the woods near the road.",
- 205, 210, 212, 155, 77, 0, 0, 0,
+ { 205, 210, 212, 155, 77, 0, 0, 0 },
"There are many thorny bushes here!****\n" },
{ "You are in a coconut grove.",
- 213, 213, 156, 234, 88, 0, 0, 0,
+ { 213, 213, 156, 234, 88, 0, 0, 0 },
"***The grove ends in a clearing +.\n" },
{ "You are walking along some high cliffs.",
- 162, 0, 0, 159, 86, 0, 0, 0,
+ { 162, 0, 0, 159, 86, 0, 0, 0 },
"The island bends sharply + here with high cliffs -\n\
and -. The cliffs are lower +.\n" },
{ "You are at the coast road turn around.",
- 0, 162, 0, 158, 90, 0, 0, 0,
+ { 0, 162, 0, 158, 90, 0, 0, 0 },
"The coast road ends here in a lookout with a view of the ocean.\n\
Far below, the waves crash against the rocks.\n\
****\n" },
{ "You are in the woods near the road.",
- 216, 163, 216, 198, 79, 0, 257, 0,
+ { 216, 163, 216, 198, 79, 0, 257, 0 },
"These thorny bushes are killing me.****\n" },
{ "You are in the kitchen.",
- 0, 0, 0, 165, 0, 0, 0, 0,
+ { 0, 0, 0, 165, 0, 0, 0, 0 },
"A small gas stove and a refrigerator are all the only appliances here. The\n\
gas oven has been left on and the whole room is reeking with natural gas.\n\
One spark from a match and.... The door out is ***+.\n" },
{ "You are in the bedroom.",
- 0, 0, 165, 0, 0, 0, 0, 0,
+ { 0, 0, 165, 0, 0, 0, 0, 0 },
"A soft feather comforter on top of layers of Answer blankets make this a very\n\
luxurious place to sleep indeed. There are also some end tables and a dresser\n\
here.** The living room is +.*\n" },
{ "You are in the woods.",
- 207, 169, 220, 221, 81, 0, 0, 0,
+ { 207, 169, 220, 221, 81, 0, 0, 0 },
"The darkness is intense, but there seems to be a clearing +.***\n" },
{ "You are in the woods near the road.",
- 219, 170, 239, 169, 81, 0, 0, 0,
+ { 219, 170, 239, 169, 81, 0, 0, 0 },
"*As far as I can tell, there are two roads + and +.*\n" },
{ "You are in the woods.",
- 207, 171, 219, 222, 81, 0, 0, 0,
+ { 207, 171, 219, 222, 81, 0, 0, 0 },
"The spider webs thin out and the forest is clearer +.***\n" },
{ "You are on the lagoon's inland finger.",
- 0, 172, 171, 172, 81, 0, 0, 0,
+ { 0, 172, 171, 172, 81, 0, 0, 0 },
"It is impossible to follow the lagoon any farther inland because of sharp\n\
and very painful sedges.* The road is +.**\n" },
{ "You are in a grassy coconut grove.",
- 240, 173, 224, 241, 82, 0, 0, 0,
+ { 240, 173, 224, 241, 82, 0, 0, 0 },
"The tall palms provide a ghostly canopy for the sandy ground covering.****\n" },
{ "You are near the lagoon's inland finger.",
- 0, 174, 0, 173, 82, 0, 0, 0,
+ { 0, 174, 0, 173, 82, 0, 0, 0 },
"Very sharp sedges make it impossible to follow the lagoon any farther inland.\n\
*There is a road +.**\n" },
{ "You are on a dirt road.",
- 241, 175, 173, 226, 82, 0, 0, 0,
+ { 241, 175, 173, 226, 82, 0, 0, 0 },
"The road winds through a coconut grove here and continues - and -.**\n" },
{ "You are in the woods near the road.",
- 226, 226, 175, 226, 82, 0, 0, 0,
+ { 226, 226, 175, 226, 82, 0, 0, 0 },
"**The road is +.*\n" },
{ "This is a beach?",
- 227, 227, 177, 0, 82, 0, 0, 0,
+ { 227, 227, 177, 0, 82, 0, 0, 0 },
"Hard jagged rocks that pierce with every footstep hardly comprise a beach.**\n\
Let's go -.*\n" },
{ "The trail is lost in the woods here.",
- 241, 241, 179, 241, 84, 0, 0, 0,
+ { 241, 241, 179, 241, 84, 0, 0, 0 },
"The trail goes **-.*\n" },
{ "You are on the bank of a stream.",
- 182, 0, 242, 180, 84, 0, 0, 0,
+ { 182, 0, 242, 180, 84, 0, 0, 0 },
"The stream falls over several small boulders here and continues on **-.*\n" },
{ "You are just inside the cave.",
- 181, 267, 0, 0, 0, 0, 0, 0,
+ { 181, 267, 0, 0, 0, 0, 0, 0 },
"A steamy hot breath is belching from the depths of the earth within.* The\n\
cave continues -.**\n" },
{ "You are just inside the cave entrance.",
- 274, 0, 0, 0, 0, 0, 0, 0,
+ { 274, 0, 0, 0, 0, 0, 0, 0 },
"The air is hot and sticky inside. The cave continues -. There is a \n\
stone door in the wall +. A wooden sign in the dust warns in old elven\n\
runes, \"GSRF KDIRE NLVEMP!\".**\n" },
{ "You are at the edge of a huge chasm.",
- 0, 0, 189, 0, 76, 0, 0, 0,
+ { 0, 0, 189, 0, 76, 0, 0, 0 },
"Several hundred feet down I can see the glimmer of placid water. The\n\
rivulets drain over the edge and trickle down into the depths. It is \n\
impossible to climb down.** The canyon continues -.*\n" },
{ "You are on a dirt road.",
- 192, 241, 240, 191, 88, 0, 0, 0,
+ { 192, 241, 240, 191, 88, 0, 0, 0 },
"The road winds through a coconut grove here. The road continues on into the\n\
shadows - and -.**\n" },
{ "You are in a coconut palm grove near the road.",
- 193, 233, 213, 192, 88, 0, 0, 0,
+ { 193, 233, 213, 192, 88, 0, 0, 0 },
"***The road is +.\n" },
{ "You are at the clubhouse.",
- 0, 193, 0, 0, 0, 0, 0, 0,
+ { 0, 193, 0, 0, 0, 0, 0, 0 },
"The clubhouse is built over the most inland part of the lagoon. Tropical\n\
bananas and fragrant frangipani grow along the grassy shore. Walking across\n\
the short wooden bridge, we enter. Along one wall is a bar crowded with people.\n\
The restaurant and disco dance floor are filled to capacity. A rock group\n\
electrocutes itself to the satisfaction of the audience.****\n" },
{ "You are in the stables.",
- 0, 0, 0, 193, 0, 0, 0, 0,
+ { 0, 0, 0, 193, 0, 0, 0, 0 },
"Neighing horses snacking on hay and oats fill the stalls on both sides of\n\
the barn. It is rather warm in here but that is not the most offensive\n\
part.****\n" },
{ "You are in the old garage.",
- 0, 0, 193, 0, 0, 0, 0, 0,
+ { 0, 0, 193, 0, 0, 0, 0, 0 },
"This is an old wooden building of the same vintage as the stables. Beneath\n\
a sagging roof stand gardening tools and greasy rags. Parked in the center\n\
is an underpowered Plymouth Volare' with a red and white striped golf cart\n\
roof. ****\n" },
{ "You are on a dirt road.",
- 197, 197, 243, 197, 85, 0, 0, 0,
+ { 197, 197, 243, 197, 85, 0, 0, 0 },
"The road leads to a formal garden laced with lighted stone walks and tropical\n\
flowers and trees.** The road continues -. A walk leads -.\n" },
{ "You are on a dirt road.",
- 210, 199, 198, 220, 73, 0, 0, 0,
+ { 210, 199, 198, 220, 73, 0, 0, 0 },
"The road runs - and -.**\n" },
{ "You are in a coconut grove near the road.",
- 234, 223, 234, 233, 88, 0, 0, 0,
+ { 234, 223, 234, 233, 88, 0, 0, 0 },
"***The road is +.\n" },
{ "You are on a dirt road.",
- 233, 225, 223, 226, 82, 0, 0, 0,
+ { 233, 225, 223, 226, 82, 0, 0, 0 },
"The road continues - and -.**\n" },
{ "The stream plummets over a cliff here.",
- 182, 0, 0, 229, 84, 0, 0, 0,
+ { 182, 0, 0, 229, 84, 0, 0, 0 },
"Falling 10 agonizing meters into darkness, only droplets of the stream must\n\
be left to dance off the floor below. There is no way down, even with a\n\
strong rope. ****\n" },
{ "You are on a dirt road.",
- 0, 0, 244, 238, 85, 0, 0, 0,
+ { 0, 0, 244, 238, 85, 0, 0, 0 },
"**The road continues - and -.\n" },
{ "You are on a dirt road.",
- 0, 245, 0, 243, 88, 0, 0, 0,
+ { 0, 245, 0, 243, 88, 0, 0, 0 },
"*The road continues -* and -.\n" },
{ "You are on a dirt road.",
- 244, 234, 213, 136, 88, 0, 0, 0,
+ { 244, 234, 213, 136, 88, 0, 0, 0 },
"The road goes -* and *-.\n" },
{ "You are in a low passage.",
- 247, 160, 0, 0, 0, 0, 0, 0,
+ { 247, 160, 0, 0, 0, 0, 0, 0 },
"The ceiling here sparkles with iridescent gems and minerals. Colorful starfish\n\
and sea anemones cling to the slippery walls and floor. The passage continues\n\
+.***\n" },
{ "The walls are very close together here.",
- 248, 246, 0, 0, 0, 0, 0, 0,
+ { 248, 246, 0, 0, 0, 0, 0, 0 },
"I can barely squeeze through the jagged opening. Slimy sea weeds provide\n\
no footing at all. This tunnel seems to be an ancient lava tube. There is\n\
a large room +.***\n" },
{ "You are in the cathedral room.",
- 249, 247, 250, 251, 0, 0, 0, 0,
+ { 249, 247, 250, 251, 0, 0, 0, 0 },
"Your light casts ghostly shadows on the walls but cannot pierce the \n\
engulfing darkness overhead. The sound of water dripping echoes in the void.\n\
*I can see no passages leading out of this room.*** \n" },
{ "You are walking through a very round tunnel.",
- 252, 248, 0, 0, 252, 1, 0, 0,
+ { 252, 248, 0, 0, 252, 1, 0, 0 },
"The round walls of this tunnel are amazingly smooth to the touch. A little\n\
trickle of water flows down the center. The tunnel climbs steadily +.\n\
There is a large room +.**\n" },
{ "You are in the cathedral anteroom.",
- 0, 0, 0, 248, 253, 1, 0, 0,
+ { 0, 0, 0, 248, 253, 1, 0, 0 },
"This small chamber with a flat stone floor is to one side of the cathedral \n\
room. We appear to be at the bottom of a tall narrow shaft. There are many \n\
puddles of water here. A staircase hewn from solid rock and black lava \n\
leads up.*** The cathedral room is -.\n" },
{ "You are in a wide chamber.",
- 0, 0, 248, 254, 0, 0, 0, 0,
+ { 0, 0, 248, 254, 0, 0, 0, 0 },
"Water is sprinkling from the ceiling here. A shallow pool populated by a \n\
myriad of blind white creatures sparkles in your light. Tiny shrimp and\n\
crabs scurry away, frightened by the blinding rays.** The cave \n\
continues + and +.\n" },
{ "You are at the top of a sloping passage.",
- 0, 249, 255, 256, 257, 1, 249, 0,
+ { 0, 249, 255, 256, 257, 1, 249, 0 },
"There is much algae growing here, both green and brown specimens. I suspect\n\
that we are near the high tide zone, but no light can get in here. The walls\n\
glisten with shiny minerals.** A hallway here runs + and -.\n" },
{ "You are in an elaborately tiled room.",
- 0, 0, 258, 0, 0, 0, 250, 0,
+ { 0, 0, 258, 0, 0, 0, 250, 0 },
"Large colorful tiles plate the floor and walls. The ceiling is a mosaic\n\
of gems set in gold. Hopefully it is only our footsteps that are echoing in\n\
this hollow chamber.** The room continues -. A stone staircase leads\n\
down.*\n" },
{ "You are at a dead end.",
- 0, 0, 251, 0, 0, 0, 0, 0,
+ { 0, 0, 251, 0, 0, 0, 0, 0 },
"The walls here are alive with dark mussels. They click their shells menacingly\n\
if we disturb them.** The only exit is +.*\n" },
{ "The tunnel is very low here.",
- 0, 0, 259, 252, 0, 0, 0, 0,
+ { 0, 0, 259, 252, 0, 0, 0, 0 },
"You practically have to crawl on your knees to pass through this opening. The\n\
air is stiflingly damp, but you can't hear any sounds of water dripping.**\n\
The crawlspace continues -. The tunnel seems wider +.\n" },
{ "This is the supply room.",
- 0, 0, 252, 0, 0, 0, 0, 0,
+ { 0, 0, 252, 0, 0, 0, 0, 0 },
"Picks and shovels line the walls here, as well as hard hats, boxes of\n\
dynamite, and a cartload of very high grade gold and silver ore.** \n\
A tunnel leads off +.*\n" },
{ "You have found a secret entrance to the catacombs",
- 0, 0, 0, 0, 216, 1, 252, 0,
+ { 0, 0, 0, 0, 216, 1, 252, 0 },
"Below is a wet, seaweed covered floor. Above is a way out.****\n" },
{ "You are in the catacombs.",
- 0, 0, 260, 253, 0, 0, 0, 0,
+ { 0, 0, 260, 253, 0, 0, 0, 0 },
"Ornate tombs and piles of treasure line the walls. Long spears with many\n\
blades, fine swords and coats of mail, heaps of coins, jewelry, pottery, \n\
and golden statues are tribute past kings and queens.** The catacombs\n\
continue - and -.\n" },
{ "You are crawling on your stomach.",
- 0, 0, 261, 255, 0, 0, 0, 0,
+ { 0, 0, 261, 255, 0, 0, 0, 0 },
"The passage is quite narrow and jagged, but the rock is no longer lava.\n\
It appears to be a form of granite.** The crawlspace continues -, \n\
but I would just as soon go -.\n" },
{ "You are in the Sepulcher.",
- 0, 0, 0, 258, 0, 0, 0, 0,
+ { 0, 0, 0, 258, 0, 0, 0, 0 },
"A single tomb is here. Encrusted with diamonds and opals, and secured with \n\
straps of a very hard, untarnished silver, this tomb must be of a great king.\n\
Vases overflowing with gold coins stand nearby. A line of verse on the wall\n\
reads, \"Three he made and gave them to his daughters.\"****\n" },
{ "The passage is wider here.",
- 0, 0, 0, 259, 0, 0, 262, 0,
+ { 0, 0, 0, 259, 0, 0, 262, 0 },
"A ladder goes down into darkness here.*** A small crawlspace goes -.\n" },
{ "You are at the bottom of a ladder.",
- 0, 0, 0, 0, 261, 1, 263, 0,
+ { 0, 0, 0, 0, 261, 1, 263, 0 },
"This is a narrow platform to rest on before we continue either up or down this\n\
rickety wooden ladder.****\n" },
{ "You are standing in several inches of water.",
- 264, 0, 265, 266, 262, 1, 0, 0,
+ { 264, 0, 265, 266, 262, 1, 0, 0 },
"This seems to be a working mine. Many different tunnels wander off following\n\
glowing veins of precious metal. The floor is flooded here since we must\n\
be nearly at sea level. A ladder leads up.****\n" },
{ "The tunnel here is blocked by broken rocks.",
- 0, 263, 0, 0, 0, 0, 0, 0,
+ { 0, 263, 0, 0, 0, 0, 0, 0 },
"The way is blocked, but if you had some dynamite, we might be able to blast our\n\
way through.* The passage goes -.**\n" },
{ "The tunnel is too flooded to proceed.",
- 0, 0, 0, 263, 0, 0, 0, 0,
+ { 0, 0, 0, 263, 0, 0, 0, 0 },
"Hidden shafts could swallow us if we tried to continue on down this tunnel.\n\
The flooding is already up to my waist. Large crystals overhead shimmer\n\
rainbows of reflected light.*** Let's go -.\n" },
{ "The mine is less flooded here.",
- 0, 0, 263, 0, 0, 0, 0, 0,
+ { 0, 0, 263, 0, 0, 0, 0, 0 },
"A meandering gold laden vein of quartz and blooming crystals of diamonds\n\
and topaz burst from the walls of the cave. A passage goes -.***\n" },
{ "You are inside the cave.",
- 230, 268, 0, 0, 0, 0, 0, 0,
+ { 230, 268, 0, 0, 0, 0, 0, 0 },
"A hot steam swirls around our heads, and the walls are warm to the touch.\n\
The trail winds - and -.**\n" },
{ "You are in a rather large chamber.",
- 267, 0, 0, 269, 0, 0, 269, 0,
+ { 267, 0, 0, 269, 0, 0, 269, 0 },
"Beds of ferns and palm leaves make several cozy nests along the walls. In the\n\
center of the room is a throne of gold and silver.*** A passageway leads\n\
down and +.\n" },
{ "You are walking along the edge of a huge abyss.",
- 0, 0, 268, 0, 268, 1, 270, 0,
+ { 0, 0, 268, 0, 268, 1, 270, 0 },
"Steam is rising in great clouds from the immeasurable depths. A very narrow\n\
trail winds down.** There is a tunnel -.*\n" },
{ "You are on the edge of a huge abyss.",
- 0, 0, 0, 0, 269, 1, 271, 0,
+ { 0, 0, 0, 0, 269, 1, 271, 0 },
"The trail winds farther down.****\n" },
{ "You are winding your way along the abyss.",
- 0, 0, 0, 0, 270, 1, 272, 0,
+ { 0, 0, 0, 0, 270, 1, 272, 0 },
"The trail continues up and down.****\n" },
{ "You are on a wide shelf near the steamy abyss.",
- 0, 273, 0, 0, 271, 1, 0, 0,
+ { 0, 273, 0, 0, 271, 1, 0, 0 },
"The stifling hot cave seems even hotter to me, staring down into this misty \n\
abyss. A trail winds up.* A passageway leads -.**\n" },
{ "You are in a wide tunnel leading to a fuming abyss.",
- 272, 274, 0, 0, 0, 0, 0, 0,
+ { 272, 274, 0, 0, 0, 0, 0, 0 },
"The passageway winds through many beautiful formations of crystals and\n\
sparkling minerals. The tunnel continues - and -.**\n" },
{ "You are in a tunnel.",
- 273, 231, 0, 0, 0, 0, 0, 0,
+ { 273, 231, 0, 0, 0, 0, 0, 0 },
"It is very warm in here. The smell of steam and hot rocks permeates the place.\n\
The cave continues - and -.**\n" },
{ "You are at the bottom of a pit.",
- 0, 0, 0, 0, 232, 0, 0, 0,
+ { 0, 0, 0, 0, 232, 0, 0, 0 },
"At the top of the pit, a single star can be seen in the night sky. There\n\
doesn't appear to be any way to get out without a rope. I don't remember\n\
how we got here.****\n" },
diff --git a/games/battlestar/nightobjs.c b/games/battlestar/nightobjs.c
index 92bd191c478f..20a374230451 100644
--- a/games/battlestar/nightobjs.c
+++ b/games/battlestar/nightobjs.c
@@ -100,5 +100,5 @@ const struct objs nightobjs[] = {
{ 249, FOOT },
{ 250, FOOT },
{ 93, PAPAYAS },
- 0
+ { 0, 0 }
};
diff --git a/games/battlestar/parse.c b/games/battlestar/parse.c
index 5e761b7ad95d..a5846adb137e 100644
--- a/games/battlestar/parse.c
+++ b/games/battlestar/parse.c
@@ -41,6 +41,11 @@ static const char rcsid[] =
#include "externs.h"
+static int hash __P((const char *));
+static void install __P((struct wlist *));
+struct wlist *lookup __P((const char *));
+
+void
wordinit()
{
struct wlist *w;
@@ -75,6 +80,7 @@ lookup(s)
return NULL;
}
+void
install(wp)
struct wlist *wp;
{
@@ -88,6 +94,7 @@ install(wp)
printf("Multiply defined %s.\n", wp->string);
}
+void
parse()
{
struct wlist *wp;
diff --git a/games/battlestar/room.c b/games/battlestar/room.c
index 8ff4e8f7bab5..4805d93c6ace 100644
--- a/games/battlestar/room.c
+++ b/games/battlestar/room.c
@@ -41,18 +41,19 @@ static const char rcsid[] =
#include "externs.h"
+void
writedes()
{
int compass;
const char *p;
- int c;
+ unsigned int c;
printf("\n\t%s\n", location[position].name);
if (beenthere[position] < 3) {
compass = NORTH;
- for (p = location[position].desc; c = *p++;)
+ for ((p = location[position].desc); (c = *p++);)
if (c != '-' && c != '*' && c != '+')
- putchar(c);
+ putchar((int)c);
else {
if (c != '*')
printf(truedirec(compass, c));
@@ -61,9 +62,10 @@ writedes()
}
}
+void
printobjs()
{
- int *p = location[position].objects;
+ unsigned int *p = location[position].objects;
int n;
printf("\n");
@@ -72,6 +74,7 @@ printobjs()
puts(objdes[n]);
}
+void
whichway(here)
struct room here;
{
@@ -111,7 +114,7 @@ struct room here;
const char *
truedirec(way, option)
int way;
-char option;
+unsigned int option;
{
switch(way) {
@@ -169,6 +172,7 @@ char option;
}
}
+void
newway(thisway)
int thisway;
{
diff --git a/games/battlestar/save.c b/games/battlestar/save.c
index f1031630c9b0..f675b8c98a1e 100644
--- a/games/battlestar/save.c
+++ b/games/battlestar/save.c
@@ -91,7 +91,7 @@ restore()
fread(&meetgirl, sizeof meetgirl, 1, fp);
fread(&followgod, sizeof followgod, 1, fp);
fread(&godready, sizeof godready, 1, fp);
- fread(&win, sizeof win, 1, fp);
+ fread(&bs_win, sizeof bs_win, 1, fp);
fread(&wintime, sizeof wintime, 1, fp);
fread(&matchlight, sizeof matchlight, 1, fp);
fread(&matchcount, sizeof matchcount, 1, fp);
@@ -172,7 +172,7 @@ save()
fwrite(&meetgirl, sizeof meetgirl, 1, fp);
fwrite(&followgod, sizeof followgod, 1, fp);
fwrite(&godready, sizeof godready, 1, fp);
- fwrite(&win, sizeof win, 1, fp);
+ fwrite(&bs_win, sizeof bs_win, 1, fp);
fwrite(&wintime, sizeof wintime, 1, fp);
fwrite(&matchlight, sizeof matchlight, 1, fp);
fwrite(&matchcount, sizeof matchcount, 1, fp);
diff --git a/games/battlestar/words.c b/games/battlestar/words.c
index bba1d05260df..440936ac9b19 100644
--- a/games/battlestar/words.c
+++ b/games/battlestar/words.c
@@ -206,5 +206,5 @@ struct wlist wlist[] = {
{ "move", 0, ADJS },
{ "make", 0, ADJS },
{ "to", 0, ADJS },
- 0
+ { 0, 0, 0 }
};