games/battlestar WARNS6 patch

Peter Avalos pavalos at theshell.com
Fri Aug 4 11:42:17 PDT 2006


This cleans up 1441 warnings from games/battlestar.

--Peter
Index: games/battlestar/Makefile
===================================================================
RCS file: /ftp/pub/DragonFly/dcvs/src/games/battlestar/Makefile,v
retrieving revision 1.2
diff -u -r1.2 Makefile
--- games/battlestar/Makefile	17 Jun 2003 04:25:22 -0000	1.2
+++ games/battlestar/Makefile	4 Aug 2006 15:59:59 -0000
@@ -7,10 +7,10 @@
 	init.c cypher.c getcom.c parse.c room.c save.c fly.c misc.c \
 	globals.c dayfile.c nightfile.c dayobjs.c nightobjs.c words.c
 MAN=	battlestar.6
-DPADD=	${LIBCURSES} ${LIBTERMCAP} ${LIBCOMPAT}
-LDADD=	-lcurses -ltermcap -lcompat
+DPADD=	${LIBCURSES} ${LIBTERMCAP}
+LDADD=	-lcurses -ltermcap
 HIDEGAME=hidegame
-#CFLAGS+= -Wall -W
+WARNS?=	6
 
 beforeinstall:
 .if !exists(${DESTDIR}/var/games/battlestar.log)
Index: games/battlestar/battlestar.c
===================================================================
RCS file: /ftp/pub/DragonFly/dcvs/src/games/battlestar/battlestar.c,v
retrieving revision 1.2
diff -u -r1.2 battlestar.c
--- games/battlestar/battlestar.c	17 Jun 2003 04:25:22 -0000	1.2
+++ games/battlestar/battlestar.c	4 Aug 2006 15:59:59 -0000
@@ -46,9 +46,7 @@
 #include "externs.h"
 
 int
-main(argc,argv)
-int  argc;
-char **argv;
+main(int argc, char **argv)
 {
 	char mainbuf[LINELENGTH];
 	char *next;
@@ -89,5 +87,5 @@
 		default:
 			exit(1); /* Shouldn't happen */
 	}
-	exit(1);
+	return(1);
 }
Index: games/battlestar/com1.c
===================================================================
RCS file: /ftp/pub/DragonFly/dcvs/src/games/battlestar/com1.c,v
retrieving revision 1.3
diff -u -r1.3 com1.c
--- games/battlestar/com1.c	12 Nov 2003 14:53:52 -0000	1.3
+++ games/battlestar/com1.c	4 Aug 2006 15:59:59 -0000
@@ -37,11 +37,10 @@
 
 #include "externs.h"
 
-void	 convert (int);
+static void	 convert(int);
 
 int
-battlestar_move(thataway, token)
-int thataway, token;
+battlestar_move(int thataway, int token)
 {
 	wordnumber++;
 	if ((!notes[CANTMOVE] && !notes[LAUNCHED]) ||
@@ -65,10 +64,13 @@
 	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.		*/
+/*
+ * Converts day to night and vice versa.  Day objects are permanent.  Night
+ * objects are added at dusk, and subtracted at dawn.
+ */
+static void
+convert(int tothis)
+{
 	const struct objs *p;
 	int i, j;
 
@@ -90,7 +92,7 @@
 }
 
 void
-news()
+news(void)
 {
 	int n;
 	int hurt;
@@ -225,7 +227,7 @@
 }
 
 void
-crash()
+crash(void)
 {
 	int hurt1,hurt2;
 
Index: games/battlestar/com2.c
===================================================================
RCS file: /ftp/pub/DragonFly/dcvs/src/games/battlestar/com2.c,v
retrieving revision 1.2
diff -u -r1.2 com2.c
--- games/battlestar/com2.c	17 Jun 2003 04:25:22 -0000	1.2
+++ games/battlestar/com2.c	4 Aug 2006 15:59:59 -0000
@@ -38,7 +38,7 @@
 #include "externs.h"
 
 int
-wearit()		/* synonyms = {sheathe, sheath} */
+wearit(void)		/* synonyms = {sheathe, sheath} */
 {
 	int n;
 	int firstnumber, value;
@@ -99,7 +99,7 @@
 }
 
 int
-put()		/* synonyms = {buckle, strap, tie} */
+put(void)	/* synonyms = {buckle, strap, tie} */
 {
 	if (wordvalue[wordnumber + 1] == ON){
 		wordvalue[++wordnumber] = PUTON;
@@ -115,13 +115,13 @@
 }
 
 int
-draw() 			/* synonyms = {pull, carry} */
+draw(void)		/* synonyms = {pull, carry} */
 {
 	return(take(wear));
 }
 
 int
-use()
+use(void)
 {
 	while (wordtype[++wordnumber] == ADJS && wordnumber < wordcount);
 	if (wordvalue[wordnumber] == AMULET && testbit(inven,AMULET) && position != FINAL){
@@ -160,7 +160,7 @@
 }
 
 void
-murder()
+murder(void)
 {
 	int n;
 
@@ -227,7 +227,7 @@
 }
 
 void
-ravage()
+ravage(void)
 {
 	while (wordtype[++wordnumber] != NOUNS && wordnumber <= wordcount);
 	if (wordtype[wordnumber] == NOUNS && testbit(location[position].objects,wordvalue[wordnumber])){
@@ -277,7 +277,7 @@
 }
 
 int
-follow()
+follow(void)
 {
 	if (followfight == gtime){
 		puts("The Dark Lord leaps away and runs down secret tunnels and corridors.");
Index: games/battlestar/com3.c
===================================================================
RCS file: /ftp/pub/DragonFly/dcvs/src/games/battlestar/com3.c,v
retrieving revision 1.2
diff -u -r1.2 com3.c
--- games/battlestar/com3.c	17 Jun 2003 04:25:22 -0000	1.2
+++ games/battlestar/com3.c	4 Aug 2006 15:59:59 -0000
@@ -38,7 +38,7 @@
 #include "externs.h"
 
 void
-dig()
+dig(void)
 {
 	if (testbit(inven,SHOVEL)){
 		puts("OK");
@@ -63,7 +63,7 @@
 }
 
 int
-jump()
+jump(void)
 {
 	int n;
 
@@ -103,7 +103,7 @@
 }
 
 void
-bury()
+bury(void)
 {
 	int value;
 
@@ -167,7 +167,7 @@
 }
 
 void
-drink()
+drink(void)
 {
 	int n;
 
@@ -188,7 +188,7 @@
 }
 
 int
-shoot()
+shoot(void)
 {
 	int firstnumber, value;
 	int n;
Index: games/battlestar/com4.c
===================================================================
RCS file: /ftp/pub/DragonFly/dcvs/src/games/battlestar/com4.c,v
retrieving revision 1.2
diff -u -r1.2 com4.c
--- games/battlestar/com4.c	17 Jun 2003 04:25:22 -0000	1.2
+++ games/battlestar/com4.c	4 Aug 2006 15:59:59 -0000
@@ -35,12 +35,10 @@
  * $DragonFly: src/games/battlestar/com4.c,v 1.2 2003/06/17 04:25:22 dillon Exp $
  */
 
-#include <string.h>
 #include "externs.h"
 
 int
-take(from)
-unsigned int from[];
+take(unsigned int from[])
 {
 	int firstnumber, heavy, bulky, value;
 	int n;
@@ -184,8 +182,7 @@
 }
 
 int
-throw(name)
-	const char *name;
+throw(const char *name)
 {
 	int n;
 	int deposit = 0;
@@ -265,8 +262,7 @@
 }
 
 int
-drop(name)
-const char *name;
+drop(const char *name)
 {
 
 	int firstnumber, value;
@@ -317,21 +313,21 @@
 }
 
 int
-takeoff()
+takeoff(void)
 {
 	wordnumber = take(wear);
 	return(drop("Dropped"));
 }
 
 int
-puton()
+puton(void)
 {
 	wordnumber = take(location[position].objects);
 	return(wearit());
 }
 
 int
-eat()
+eat(void)
 {
 	int firstnumber, value;
 
Index: games/battlestar/com5.c
===================================================================
RCS file: /ftp/pub/DragonFly/dcvs/src/games/battlestar/com5.c,v
retrieving revision 1.2
diff -u -r1.2 com5.c
--- games/battlestar/com5.c	17 Jun 2003 04:25:22 -0000	1.2
+++ games/battlestar/com5.c	4 Aug 2006 15:59:59 -0000
@@ -38,7 +38,7 @@
 #include "externs.h"
 
 void
-kiss()
+kiss(void)
 {
 	while (wordtype[++wordnumber] != NOUNS && wordnumber <= wordcount);
 	if (wordtype[wordnumber] == NOUNS && testbit(location[position].objects,wordvalue[wordnumber])){
@@ -78,7 +78,7 @@
 }
 
 void
-love()
+love(void)
 {
 	int n;
 
@@ -124,7 +124,7 @@
 }
 
 int
-zzz()
+zzz(void)
 {
 	int oldtime;
 	int n;
@@ -180,7 +180,7 @@
 }
 
 void
-chime()
+chime(void)
 {
 	if ((gtime / CYCLE + 1) % 2 && OUTSIDE)
 		switch((gtime % CYCLE)/(CYCLE / 7)){
@@ -235,7 +235,7 @@
 }
 
 int
-give()
+give(void)
 {
 	int obj = -1, result = -1, person = 0, firstnumber;
 	int last1 = 0, last2 = 0;
Index: games/battlestar/com6.c
===================================================================
RCS file: /ftp/pub/DragonFly/dcvs/src/games/battlestar/com6.c,v
retrieving revision 1.3
diff -u -r1.3 com6.c
--- games/battlestar/com6.c	12 Nov 2003 14:53:52 -0000	1.3
+++ games/battlestar/com6.c	4 Aug 2006 15:59:59 -0000
@@ -42,7 +42,7 @@
 static void post (unsigned int ch);
 
 int
-launch()
+launch(void)
 {
 	if (testbit(location[position].objects,VIPER) && !notes[CANTLAUNCH]){
 		if (fuel > 4){
@@ -64,7 +64,7 @@
 }
 
 int
-land()
+land(void)
 {
 	if (notes[LAUNCHED] && testbit(location[position].objects,LAND) && location[position].down){
 		notes[LAUNCHED] = 0;
@@ -81,8 +81,7 @@
 }
 
 void
-die(sig)	/* endgame */
-	int sig;
+die(int sig)	/* endgame */
 {
 	sig = 0;
 	printf("bye.\nYour rating was %s.\n", rate());
@@ -91,7 +90,7 @@
 }
 
 void
-live()
+live(void)
 {
 	puts("\nYou win!");
 	post('!');
@@ -103,15 +102,14 @@
 static FILE *score_fp;
 
 void
-open_score_file()
+open_score_file(void)
 {
 	if ((score_fp = fopen(_PATH_SCORE,"a")) == NULL)
 		perror(_PATH_SCORE);
 }
 
 static void
-post(ch)
-unsigned int ch;
+post(unsigned int ch)
 {
 	struct timeval tv;
 	char *date;
@@ -140,7 +138,7 @@
 }
 
 const char *
-rate()
+rate(void)
 {
 	int score;
 
@@ -177,7 +175,7 @@
 }
 
 int
-drive()
+drive(void)
 {
 	if (testbit(location[position].objects,CAR)){
 		puts("You hop in the car and turn the key.  There is a perceptible grating noise,");
@@ -195,7 +193,7 @@
 }
 
 int
-ride()
+ride(void)
 {
 	if (testbit(location[position].objects,HORSE)){
 		puts("You climb onto the stallion and kick it in the guts.  The stupid steed launches");
@@ -218,7 +216,7 @@
 }
 
 void
-light()		/* synonyms = {strike, smoke} */
+light(void)	/* synonyms = {strike, smoke} */
 {		/* for matches, cigars */
 	if (testbit(inven,MATCHES) && matchcount){
 		puts("Your match splutters to life.");
Index: games/battlestar/com7.c
===================================================================
RCS file: /ftp/pub/DragonFly/dcvs/src/games/battlestar/com7.c,v
retrieving revision 1.2
diff -u -r1.2 com7.c
--- games/battlestar/com7.c	17 Jun 2003 04:25:22 -0000	1.2
+++ games/battlestar/com7.c	4 Aug 2006 15:59:59 -0000
@@ -38,8 +38,7 @@
 #include "externs.h"
 
 int
-fight(enemy,strength)
-int enemy,strength;
+fight(int enemy, int strength)
 {
 	int lifeline = 0;
 	int hurt;
Index: games/battlestar/cypher.c
===================================================================
RCS file: /ftp/pub/DragonFly/dcvs/src/games/battlestar/cypher.c,v
retrieving revision 1.2
diff -u -r1.2 cypher.c
--- games/battlestar/cypher.c	17 Jun 2003 04:25:22 -0000	1.2
+++ games/battlestar/cypher.c	4 Aug 2006 15:59:59 -0000
@@ -38,7 +38,7 @@
 #include "externs.h"
 
 int
-cypher()
+cypher(void)
 {
 	int n;
 	int junk;
Index: games/battlestar/dayfile.c
===================================================================
RCS file: /ftp/pub/DragonFly/dcvs/src/games/battlestar/dayfile.c,v
retrieving revision 1.2
diff -u -r1.2 dayfile.c
--- games/battlestar/dayfile.c	17 Jun 2003 04:25:22 -0000	1.2
+++ games/battlestar/dayfile.c	4 Aug 2006 15:59:59 -0000
@@ -38,115 +38,115 @@
 #include "externs.h"
 
 struct room dayfile[] = {
-	{ 0 },
+	{ 0, { 0 }, 0, { 0 } },
 	{ "You are in the main hangar.",
 	{ 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" },
+of the hangar is +. There is an exit +.*\n", { 0 } },
 	{ "This is the landing bay.",
 	{ 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" },
+There is an exit +.*\n", { 0 } },
 	{ "You are in the gallery.",
 	{ 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" },
+lick at the shadows. The control room is +. ***\n", { 0 } },
 	{ "You are in the control room.",
 	{ 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" },
+A staircase leads down. * There is a way -. **        \n", { 0 } },
 	{ "This is the launch room.",
 	{ 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" },
+explosions.  The main hangar is +. The viper launch tubes are to the -.*\n", { 0 } },
 	{ "You are at the workbench.",
 	{ 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" },
+The launch room is +. The remaining viper is +.*\n", { 0 } },
 	{ "You are in the viper launch tube.",
 	{ 0, 5, 0, 5, 32, 0, 0, 0 },
-"The two guards are eyeing you warily! ****\n" },
+"The two guards are eyeing you warily! ****\n", { 0 } },
 	{ "This is a walk in closet.",
 	{ 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" },
+delicate synthetic fabrics are stowed here.  The bedroom is +.***\n", { 0 } },
 	{ "You are in a wide hallway leading to the main hangar.",
 	{ 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" },
+The main hangar is +.\n", { 0 } },
 	{ "You are in a wide hallway leading to the landing bay.",
 	{ 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 continues -. The landing bay is +.\n", { 0 } },
 	{ "The hallway is very congested with rubble here.",
 	{ 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" },
+But the hallway seems clearer +.\n", { 0 } },
 	{ "A wide hallway and a more narrow walkway meet here.",
 	{ 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" },
+The wide hallway goes *-.\n", { 0 } },
 	{ "You are in what was once an elegant stateroom.",
 	{ 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" },
+collapsed floor I can see a hallway below.  A door is +.***\n", { 0 } },
 	{ "You're at the entrance to the sick bay.",
 	{ 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" },
+come to the -. *\n", { 0 } },
 	{ "You're in the walkway.",
 	{ 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" },
+continues -. The armory is +.**\n", { 0 } },
 	{ "These are the executive suites of the battlestar.",
 	{ 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" },
+Other rooms lie - and +.\n", { 0 } },
 	{ "You're in a long dimly lit hallway.",
 	{ 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" },
+entrance to the sickbay is +. The walkway turns sharply -.*\n", { 0 } },
 	{ "This is the sick bay.",
 	{ 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" },
+Nothing but death and suffering +.  The walkway is +.\n", { 0 } },
 	{ "You're in the armory.",
 	{ 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 walkway is +. The magazine is +.**\n", { 0 } },
 	{ "The hallway ends here at the presidential suite.",
 	{ 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" },
+goes -.**\n", { 0 } },
 	{ "This is the maid's utility room.",
 	{ 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" },
+The hallway is +.\n", { 0 } },
 	{ "This is a luxurious stateroom.",
 	{ 0, 8, 16, 0, 0, 0, 0, 0 },
 "The floor is carpeted with a soft animal fur and the great wooden furniture\n\
@@ -154,1052 +154,1052 @@
 into the walls and ceiling is flashing wildly.  The floor shudders and\n\
 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" },
+room +, and a doorway +.*\n", { 0 } },
 	{ "You are at the entrance to the dining hall.",
 	{ 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" },
+The dining hall is to the -.*\n", { 0 } },
 	{ "This was once the first class lounge.",
 	{ 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" },
+It seems a little clearer +.*\n", { 0 } },
 	{ "You are in a narrow stairwell.",
 	{ 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" },
+hallway turns sharply -.**\n", { 0 } },
 	{ "You are in the magazine.",
 	{ 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" },
+launchers are here. The armory is +.***\n", { 0 } },
 	{ "You're in the presidential suite.",
 	{ 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" },
+The hallway leads -.**\n", { 0 } },
 	{ "You are in the dining hall.",
 	{ 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" },
+would not linger here. * The kitchen is +. Entrances + and +.\n", { 0 } },
 	{ "The debris is very thick here.",
 	{ 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" },
+It would be best to go -.\n", { 0 } },
 	{ "You are in the kitchen.",
 	{ 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" },
+side of beef. The dining room is +. ** There is a locked door +.\n", { 0 } },
 	{ "You are in an arched entry leading to the dining room.",
 	{ 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" },
+The dining room is +.\n", { 0 } },
 	{ "You are in space.",
 	{ 33, 34, 35, 36, 37, 1, 33, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 38, 32, 39, 40, 41, 1, 42, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 32, 44, 45, 46, 47, 1, 48, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 40, 45, 49, 32, 50, 1, 51, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 41, 46, 32, 52, 53, 1, 54, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 42, 47, 50, 53, 55, 1, 32, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 43, 48, 51, 54, 32, 1, 56, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 57, 33, 40, 41, 42, 1, 43, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 39, 35, 57, 33, 58, 1, 59, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 39, 36, 33, 59, 60, 1, 61, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 39, 37, 58, 60, 62, 1, 33, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 39, 38, 59, 61, 33, 1, 63, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 34, 64, 45, 46, 47, 1, 48, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 35, 44, 49, 34, 50, 1, 51, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 36, 44, 34, 52, 53, 1, 54, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 37, 44, 50, 53, 55, 1, 34, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 38, 44, 51, 54, 34, 1, 56, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 49, 49, 52, 35, 49, 1, 49, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 58, 47, 49, 37, 55, 1, 35, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 59, 48, 49, 38, 35, 1, 56, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 52, 52, 36, 49, 52, 1, 52, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 60, 46, 37, 52, 55, 1, 36, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 61, 48, 38, 52, 36, 1, 56, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 62, 55, 55, 55, 56, 1, 37, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 56, 56, 56, 56, 38, 1, 55, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 65, 39, 57, 57, 57, 1, 57, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 39, 50, 49, 42, 62, 1, 40, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 39, 51, 49, 43, 40, 1, 63, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 39, 53, 43, 59, 62, 1, 41, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 39, 54, 43, 59, 41, 1, 56, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 39, 55, 62, 62, 56, 1, 42, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 39, 56, 35, 36, 43, 1, 55, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 44, 66, 66, 66, 66, 1, 66, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 67, 57, 67, 67, 67, 1, 67, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 64, 68, 68, 68, 68, 1, 68, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are orbiting a small blue planet.",
 	{ 67, 67, 67, 67, 65, 1, 69, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are orbiting a tropical planet.",
 	{ 68, 68, 68, 68, 66, 1, 70, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are flying through a dense fog.",
 	{ 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" },
+****\n", { 0 } },
 	{ "You are approaching an island.",
 	{ 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" },
+sea. The land rises sharply +. There is a nice beach* +.*\n", { 0 } },
 	{ "You are flying over a mountainous region.",
 	{ 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" },
+is carpeted with a tropical green.* The ocean is +.**\n", { 0 } },
 	{ "You are flying over the ocean.",
 	{ 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" },
+colorful fish.****\n", { 0 } },
 	{ "You are flying over the beach.",
 	{ 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" },
+sharply +.* The beach is lost in low cliffs and rocks +.*\n", { 0 } },
 	{ "You are flying over a large lagoon.",
 	{ 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" },
+There looks like a small village +.***\n", { 0 } },
 	{ "You are flying over a gently sloping plane.",
 	{ 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" },
+impossible to land safely here.* The terrain is more rugged +.**\n", { 0 } },
 	{ "You are flying through a gorge.",
 	{ 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" },
+The gorge leads to the sea** +, and to a tumultuous origin +.\n", { 0 } },
 	{ "You are flying over a plantation.",
 	{ 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\
-and *+.\n" },
+and *+.\n", { 0 } },
 	{ "You are over the ocean.",
 	{ 72, 78, 79, 74, 68, 1, 0, 1},
-"The deep green swells foam and roll into the shore **+*.\n" },
+"The deep green swells foam and roll into the shore **+*.\n", { 0 } },
 	{ "You are flying along the coast.",
 	{ 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" },
+There is a winding road below which closely follows the shore. ****\n", { 0 } },
 	{ "This is a beautiful coral beach.",
 	{ 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" },
+30 meters here from the ocean to under gently swaying palms +.***\n", { 0 } },
 	{ "You are flying over a small fishing village.",
 	{ 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" },
+continues on ***+.\n", { 0 } },
 	{ "You are flying over a clearing.",
 	{ 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" },
+a good landing site. ****\n", { 0 } },
 	{ "You are flying over the shore.",
 	{ 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" },
+sparse herbs and weeds.****\n", { 0 } },
 	{ "You are flying in a wide valley.",
 	{ 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" },
+The valley opens to the sea +. The mist grows thicker +.**\n", { 0 } },
 	{ "You are flying near the shore.",
 	{ 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" },
+There is a nice beach +.\n", { 0 } },
 	{ "You are flying around the very tip of the island.",
 	{ 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" },
+the roots of these cliffs. The island bends around +** and +.\n", { 0 } },
 	{ "You are flying along the coastline.",
 	{ 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" },
+on -.* There are some buildings +.*\n", { 0 } },
 	{ "You are flying over several cottages and buildings",
 	{ 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" },
+Small dirt roads go + and +.**\n", { 0 } },
 	{ "You are in a field of sugar cane.",
 	{ 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" },
+There are some large trees ***+.\n", { 0 } },
 	{ "You are flying over the ocean.",
 	{ 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" },
+many fathoms below are clearly visible.****\n", { 0 } },
 	{ "You are on the coast road.",
 	{ 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" },
+deafening.* The water is +. The road continues - and -.\n", { 0 } },
 	{ "You are on the main street of the village.",
 	{ 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" },
+There is an open bungalow +.*  The road continues - and -.\n", { 0 } },
 	{ "You are at the sea plane dock.",
 	{ 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" },
++*.  There are some tables set up +.*\n", { 0 } },
 	{ "You are flying over the ocean.",
 	{ 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" },
+much deeper +.***\n", { 0 } },
 	{ "You are flying along the coast.",
 	{ 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" },
+is a wide valley opening up +. The very tip of the island is +.*\n", { 0 } },
 	{ "You are flying along the coast.",
 	{ 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" },
+outcroppings of lava to land. There is a nicer beach ***+.\n", { 0 } },
 	{ "You are lost in a sea of fog.",
 	{ 97, 104, 97, 97, 97, 1, 0, 1},
 "What have you gotten us into?\n\
-I can't see a thing! ****\n" },
+I can't see a thing! ****\n", { 0 } },
 	{ "You are on a gravel wash.",
 	{ 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" },
+of steam are rising *+.**\n", { 0 } },
 	{ "You are flying over a wide beach.",
 	{ 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" },
+There are some buildings +. Some trees are growing +.*\n", { 0 } },
 	{ "You are flying over the ocean.",
 	{ 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" },
+incline.****\n", { 0 } },
 	{ "You are on a narrow strip of sand.",
 	{ 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" },
+A fresh ocean breeze is rustling the ferns **+.*\n", { 0 } },
 	{ "This is Fern Canyon.",
 	{ 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" },
+The canyon winds **-, and -.\n", { 0 } },
 	{ "This is the front lawn.",
 	{ 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" },
+road + which turns into the driveway.*\n", { 0 } },
 	{ "You have just crossed the crest of a mountain.",
 	{ 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" },
+Far + I can see the ocean.**\n", { 0 } },
 	{ "You are on a sandy beach.",
 	{ 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" },
+Stone steps lead to the gardens +.*\n", { 0 } },
 	{ "You are among palm trees near the shore.",
 	{ 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" },
+The ocean is +.**\n", { 0 } },
 	{ "You are walking along the beach.",
 	{ 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" },
+offshore the water is only knee deep.** There are some rocks +.*\n", { 0 } },
 	{ "You are walking along the beach.",
 	{ 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" },
+deadly cone shells.****\n", { 0 } },
 	{ "You are in a papaya grove.",
 	{ 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" },
+orange succulent fruit. There are some tall trees +.***\n", { 0 } },
 	{ "You are in a field of pineapple.",
 	{ 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" },
+a skewered victim with tiny barbs.* The field ends +.**\n", { 0 } },
 	{ "You are in a field of kiwi plants.",
 	{ 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" },
+and +. The field ends in a dirt road +.*\n", { 0 } },
 	{ "You are in a large grove of coconuts.",
 	{ 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" },
++, +, *and +.\n", { 0 } },
 	{ "You are in the woods.",
 	{ 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" },
+noises are coming from somewhere +.***\n", { 0 } },
 	{ "You are at the shore.",
 	{ 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" },
+minus tides would it be possible to enter.***  The beach is better +.\n", { 0 } },
 	{ "You are on the coast road.",
 	{ 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" },
+continues +.*\n", { 0 } },
 	{ "The road winds deeper into the trees.",
 	{ 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" },
+road continues - and *- from here.*\n", { 0 } },
 	{ "This is the front porch of the bungalow.",
 	{ 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" },
+A stone walk leads to the main street +.**\n", { 0 } },
 	{ "You are on a path leading to the lagoon.",
 	{ 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" },
+way.* The water is +.**\n", { 0 } },
 	{ "This is a dirt road.",
 	{ 169, 118, 170, 92, 81, 0, 0, 0 },
-"**The road continues on - here for some distance. A village is +.\n" },
+"**The road continues on - here for some distance. A village is +.\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 171, 118, 92, 172, 81, 0, 0, 0 },
-"**There is a small village +. The road continues +.\n" },
+"**There is a small village +. The road continues +.\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 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" },
+The road continues - and -.\n", { 0 } },
 	{ "You are at the seaplane dock.",
 	{ 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 is a clearing +.* A trail runs around the lagoon + and +.\n", { 0 } },
 	{ "There are some tables on the lawn here.",
 	{ 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" },
+conversing and talking excitedly****.\n", { 0 } },
 	{ "You are nosing around in the bushes.",
 	{ 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" },
+us in front of the other guests.** It would be best to go -.*\n", { 0 } },
 	{ "You are walking in a dry stream bed.",
 	{ 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" },
+along the wash is +. A high bank is impossible to climb +.\n", { 0 } },
 	{ "You are at the thermal pools.",
 	{ 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" },
+to a cave +.\n", { 0 } },
 	{ "You are in the woods.",
 	{ 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" },
+*The sound of rushing water is coming from +.**\n", { 0 } },
 	{ "You are on a dirt trail.",
 	{ 179, 181, 98, 0, 84, 0, 0, 0 },
 "The trail seems to start here and head -.** High cliffs border the \n\
-trail +.\n" },
+trail +.\n", { 0 } },
 	{ "You are  walking along the beach.",
 	{ 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" },
+spray on the steep incline. The beach continues + and +.**\n", { 0 } },
 	{ "You are walking along the beach.",
 	{ 101, 185, 186, 0, 87, 0, 0, 0 },
-"This is not a very nice beach. The coarse sand hurts my feet.****\n" },
+"This is not a very nice beach. The coarse sand hurts my feet.****\n", { 0 } },
 	{ "You are walking through some ferns.",
 	{ 184, 186, 187, 101, 87, 0, 0, 0 },
 "This is a wide field growing only ferns and small shrubs.** The \n\
-ocean is *+.\n" },
+ocean is *+.\n", { 0 } },
 	{ "You are in a narrow canyon.",
 	{ 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" },
+series of riffles and pools.****\n", { 0 } },
 	{ "The canyon is much wider here.",
 	{ 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" },
+and -.\n", { 0 } },
 	{ "You are on the front porch of the cottage.",
 	{ 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" },
+door leads -.  The lawn and fountain are +.**\n", { 0 } },
 	{ "You are in a palm grove.",
 	{ 103, 191, 192, 105, 88, 0, 0, 0 },
-"****\n" },
+"****\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 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" },
+A small dirt road goes -, and a drive way peals off +.\n", { 0 } },
 	{ "You are in a field of small shrubs.",
 	{ 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" },
+cottage +. I can feel a delicious sea breeze blowing from +.\n", { 0 } },
 	{ "The beach is pretty rocky here.",
 	{ 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 nicer* +.**\n", { 0 } },
 	{ "The beach is almost 10 meters wide here.",
 	{ 105, 183, 196, 0, 99, 0, 0, 0 },
 "The sand has become more coarse and the beach steeper.* It gets \n\
-worse +.**\n" },
+worse +.**\n", { 0 } },
 	{ "You are in the gardens.",
 	{ 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" },
+can see.** A path leads -. Stone steps lead down to the beach +.\n", { 0 } },
 	{ "You are on the coast road.",
 	{ 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" },
+approaching it.**  The road continues - and -.\n", { 0 } },
 	{ "You are in the forest.",
 	{ 116, 107, 91, 106, 73, 0, 0, 0 },
-"There are trees and ferns all around.****\n" },
+"There are trees and ferns all around.****\n", { 0 } },
 	{ "You are in the forest.",
 	{ 199, 108, 106, 146, 73, 0, 0, 0 },
-"There are trees and ferns all around.****\n" },
+"There are trees and ferns all around.****\n", { 0 } },
 	{ "You are in a copse.",
 	{ 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" },
+has been digging here recently.****\n", { 0 } },
 	{ "You are at the tide pools.",
 	{ 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" },
+**The surf is very rough +. There is a nice beach +.\n", { 0 } },
 	{ "You are in the forest.",
 	{ 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" },
+shrubs block the way -.\n", { 0 } },
 	{ "You are at the mouth of the lagoon.",
 	{ 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" },
+The beach continues on -. Only water lies +.\n", { 0 } },
 	{ "You are in a breadfruit grove.",
 	{ 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" },
+*+, and +.\n", { 0 } },
 	{ "You are in a grove of mango trees.",
 	{ 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" },
+some coconut palms +. There are some vines +. There is a road +.*\n", { 0 } },
 	{ "You are in a grove of coconut palms.",
 	{ 204, 112, 109, 206, 77, 0, 0, 0 },
-"All I can see around us are palm trees.****\n" },
+"All I can see around us are palm trees.****\n", { 0 } },
 	{ "You are in a coconut grove.",
 	{ 110, 207, 208, 209, 77, 0, 0, 0 },
-"There are countless trees here.****\n" },
+"There are countless trees here.****\n", { 0 } },
 	{ "You are in a field of pineapple.",
 	{ 154, 208, 210, 110, 77, 0, 0, 0 },
 "The sharp leaves are cutting me to ribbons. There is a road **+.\n\
-More pineapple +.\n" },
+More pineapple +.\n", { 0 } },
 	{ "You are in a coconut grove.",
 	{ 112, 209, 110, 211, 77, 0, 0, 0 },
-"There is a field of pineapple **+.*\n" },
+"There is a field of pineapple **+.*\n", { 0 } },
 	{ "You are on the edge of a kiwi and pineapple field.",
 	{ 111, 152, 155, 110, 77, 0, 0, 0 },
-"An irrigation ditch separates the two fields here. There is a road **+.*\n" },
+"An irrigation ditch separates the two fields here. There is a road **+.*\n", { 0 } },
 	{ "This is a dirt road.",
 	{ 205, 210, 212, 111, 77, 0, 0, 0 },
-"The road runs - and - here.**\n" },
+"The road runs - and - here.**\n", { 0 } },
 	{ "You are in a palm grove.",
 	{ 206, 211, 112, 213, 77, 0, 0, 0 },
-"There are palm trees all around us.****\n" },
+"There are palm trees all around us.****\n", { 0 } },
 	{ "You are on the edge of a small clearing.",
 	{ 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" },
+is a flock of wild chicken like fowl.****\n", { 0 } },
 	{ "You are in the woods.",
 	{ 158, 115, 215, 113, 79, 0, 0, 0 },
-"You have walked a long way and found only trees. ****\n" },
+"You have walked a long way and found only trees. ****\n", { 0 } },
 	{ "You are walking along the shore.",
 	{ 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" },
+The land rises +. There is a beach far +.\n", { 0 } },
 	{ "You are just inside the entrance to the sea cave.",
 	{ 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" },
+continues -.***\n", { 0 } },
 	{ "You are in a secret nook beside the road.",
 	{ 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" },
+back to the road +.***\n", { 0 } },
 	{ "You are on the coast road.",
 	{ 215, 214, 0, 115, 86, 0, 0, 0 },
 "The road turns abruptly - here, avoiding the cliffs near the shore\n\
-+ and +.*\n" },
++ and +.*\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 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" },
+forming a canopy. The road continues *- and *-.\n", { 0 } },
 	{ "You have discovered a hidden thicket near the road.",
 	{ 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" },
+The road is +.*\n", { 0 } },
 	{ "You are in the living room.",
 	{ 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" },
+*The exit is +.* The bedroom is +.\n", { 0 } },
 	{ "You are at the lagoon.",
 	{ 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" },
+off -*, -, and -.\n", { 0 } },
 	{ "You are at the lagoon.",
 	{ 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" },
+in the water close to shore here.** The path continues - and -. \n", { 0 } },
 	{ "You are at the lagoon.",
 	{ 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" },
+and continues on **- and -.\n", { 0 } },
 	{ "You are in the woods.",
 	{ 219, 119, 220, 92, 81, 0, 0, 0 },
-"There are plenty of ferns and thorny bushes here! ****\n" },
+"There are plenty of ferns and thorny bushes here! ****\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 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" },
+grasses line the shoulder *+. The road continues - and -.\n", { 0 } },
 	{ "You are in the woods beside the road.",
 	{ 221, 120, 92, 222, 81, 0, 0, 0 },
-"The forest grows darker +. The road is +.**\n" },
+"The forest grows darker +. The road is +.**\n", { 0 } },
 	{ "The road crosses the lagoon here.",
 	{ 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" },
+of the lagoon.* The water is +. The road continues - and -.\n", { 0 } },
 	{ "You are in a coconut palm grove.",
 	{ 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" },
+grove continues -. There is a road +.**\n", { 0 } },
 	{ "You are walking along a dirt road.",
 	{ 224, 176, 172, 121, 82, 0, 0, 0 },
-"You are nearing the lagoon.** The road continues - and -.\n" },
+"You are nearing the lagoon.** The road continues - and -.\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 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" },
+also continues - toward the lagoon.*\n", { 0 } },
 	{ "You are on a trail running around the lagoon.",
 	{ 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" },
+There is deep water + and +. The trail continues -.\n", { 0 } },
 	{ "This is the mouth of the lagoon.",
 	{ 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" },
+is +.\n", { 0 } },
 	{ "You are in a dry stream bed.",
 	{ 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" },
+I'm going is -.**\n", { 0 } },
 	{ "You are on a dirt path along the wash.",
 	{ 0, 128, 125, 228, 84, 0, 0, 0 },
-"This path looks more like a deer trail. It scampers away ***+.\n" },
+"This path looks more like a deer trail. It scampers away ***+.\n", { 0 } },
 	{ "The thermal pools flow into a stream here.",
 	{ 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" },
+stream **+. The pools are +.\n", { 0 } },
 	{ "You are at the entrance to a cave.",
 	{ 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" },
+leads - and -. The pools are +.*\n", { 0 } },
 	{ "You are in the woods.",
 	{ 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" },
+proceed.* The sound of rushing water is +.**\n", { 0 } },
 	{ "You are walking along the beach.",
 	{ 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" },
+direction. The beach continues - and -.* The ocean is +.\n", { 0 } },
 	{ "You are in the dunes.",
 	{ 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" },
+The only way I'm going is ***+.\n", { 0 } },
 	{ "This is a lousy beach.",
 	{ 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" },
+beach is better +.***\n", { 0 } },
 	{ "You are in a field of sparse ferns.",
 	{ 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" },
+vegetation +. There is a nice beach +.* The ocean is +.\n", { 0 } },
 	{ "You are in the woods.",
 	{ 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" },
+shore.** The trees grow thicker +.*\n", { 0 } },
 	{ "The canyon is no wider than a foot here.",
 	{ 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" },
+too narrow to follow it any farther.*** I guess we'll have to go -.\n", { 0 } },
 	{ "You are in a narrow part of the canyon.",
 	{ 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" },
+from the ground itself.* The canyon continues - and -.\n", { 0 } },
 	{ "You are in the drawing room.",
 	{ 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" },
+study and it even has a old fashioned telephone to complete the decor.**\n", { 0 } },
 	{ "You are in a palm grove.",
 	{ 135, 191, 233, 191, 88, 0, 0, 0 },
-"Grassy rows of palms stretch as far as I can see.** There is a road +.*\n" },
+"Grassy rows of palms stretch as far as I can see.** There is a road +.*\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 136, 233, 234, 135, 88, 0, 0, 0 },
 "The road winds through a coconut palm grove here. It continues on - \n\
-and -.**\n" },
+and -.**\n", { 0 } },
 	{ "The road leads to several large buildings here.",
 	{ 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" },
+similar construct to the barn +.\n", { 0 } },
 	{ "This part of the beach is impassable.",
 	{ 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" },
+in an instant.* The only direction I'm going is -.**\n", { 0 } },
 	{ "You are in the gardens.",
 	{ 195, 140, 197, 138, 96, 0, 0, 0 },
-"So much green grass is a pleasure to the eyes.****\n" },
+"So much green grass is a pleasure to the eyes.****\n", { 0 } },
 	{ "You are in the gardens.",
 	{ 140, 183, 197, 139, 99, 0, 0, 0 },
-"Beautiful flowers and shrubs surround a little goldfish pond.****\n" },
+"Beautiful flowers and shrubs surround a little goldfish pond.****\n", { 0 } },
 	{ "You are on a stone walk in the garden.",
 	{ 195, 196, 238, 140, 99, 0, 0, 0 },
-"The walk leads to a road **+.*\n" },
+"The walk leads to a road **+.*\n", { 0 } },
 	{ "You are in the forest near the road.",
 	{ 198, 141, 216, 198, 73, 0, 0, 0 },
-"There are many thorny bushes here!****\n" },
+"There are many thorny bushes here!****\n", { 0 } },
 	{ "You are at a fork in the road.",
 	{ 239, 146, 141, 170, 73, 0, 0, 0 },
 "Two roads come together in the forest here. One runs -,* the other \n\
-runs - and -.\n" },
+runs - and -.\n", { 0 } },
 	{ "You are on a dirt path around the lagoon.",
 	{ 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" },
+the path runs into a clearing +. The path continues -.**\n", { 0 } },
 	{ "You are drowning in the lagoon.",
 	{ 201, 201, 147, 201, 74, 0, 0, 0 },
-"I suggest you get out before you become waterlogged.****\n" },
+"I suggest you get out before you become waterlogged.****\n", { 0 } },
 	{ "You are in a coconut palm grove.",
 	{ 202, 148, 203, 204, 77, 0, 0, 0 },
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in a palm grove.",
 	{ 202, 149, 205, 148, 77, 0, 0, 0 },
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in a palm grove.",
 	{ 202, 150, 148, 206, 77, 0, 0, 0 },
-"****\n" },
+"****\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 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" },
+some way.**\n", { 0 } },
 	{ "You are in a coconut palm grove.",
 	{ 204, 156, 150, 213, 77, 0, 0, 0 },
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in a coconut grove.",
 	{ 151, 219, 208, 209, 77, 0, 0, 0 },
-"*The grove ends +.**\n" },
+"*The grove ends +.**\n", { 0 } },
 	{ "You are in a coconut grove.",
 	{ 152, 207, 239, 151, 77, 0, 0, 0 },
-"**There is a dirt road +.*\n" },
+"**There is a dirt road +.*\n", { 0 } },
 	{ "You are in a coconut grove.",
 	{ 153, 207, 151, 211, 77, 0, 0, 0 },
-"****\n" },
+"****\n", { 0 } },
 	{ "This is a dirt road.",
 	{ 205, 239, 212, 154, 77, 0, 0, 0 },
-"The road continues - and -.**\n" },
+"The road continues - and -.**\n", { 0 } },
 	{ "You are in a coconut grove.",
 	{ 153, 209, 153, 213, 77, 0, 0, 0 },
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in the woods near the road.",
 	{ 205, 210, 212, 155, 77, 0, 0, 0 },
-"There are many thorny bushes here!****\n" },
+"There are many thorny bushes here!****\n", { 0 } },
 	{ "You are in a coconut grove.",
 	{ 213, 213, 156, 234, 88, 0, 0, 0 },
-"***The grove ends in a clearing +.\n" },
+"***The grove ends in a clearing +.\n", { 0 } },
 	{ "You are walking along some high cliffs.",
 	{ 162, 0, 0, 159, 86, 0, 0, 0 },
 "The island bends sharply + here with high cliffs -\n\
-and -. The cliffs are lower +.\n" },
+and -. The cliffs are lower +.\n", { 0 } },
 	{ "You are at the coast road turn around.",
 	{ 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" },
+****\n", { 0 } },
 	{ "You are in the woods near the road.",
 	{ 216, 163, 216, 198, 79, 0, 257, 0 },
-"These thorny bushes are killing me.****\n" },
+"These thorny bushes are killing me.****\n", { 0 } },
 	{ "You are in the kitchen.",
 	{ 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" },
+One spark from a match and.... The door out is ***+.\n", { 0 } },
 	{ "You are in the bedroom.",
 	{ 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" },
+here.** The living room is +.*\n", { 0 } },
 	{ "You are in the woods.",
 	{ 207, 169, 220, 221, 81, 0, 0, 0 },
-"There seems to be a clearing +.***\n" },
+"There seems to be a clearing +.***\n", { 0 } },
 	{ "You are in the woods near the road.",
 	{ 219, 170, 239, 169, 81, 0, 0, 0 },
-"*As far as I can tell, there are two roads + and +.*\n" },
+"*As far as I can tell, there are two roads + and +.*\n", { 0 } },
 	{ "You are in the woods.",
 	{ 207, 171, 219, 222, 81, 0, 0, 0 },
-"The forest is clearer +.***\n" },
+"The forest is clearer +.***\n", { 0 } },
 	{ "You are on the lagoon's inland finger.",
 	{ 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" },
+and very painful sedges.* The road is +.**\n", { 0 } },
 	{ "You are in a grassy coconut grove.",
 	{ 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" },
+There is a road +.\n", { 0 } },
 	{ "You are near the lagoon's inland finger.",
 	{ 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" },
+*There is a road +.**\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 241, 175, 173, 226, 82, 0, 0, 0 },
-"The road winds through a coconut grove here and continues - and -.**\n" },
+"The road winds through a coconut grove here and continues - and -.**\n", { 0 } },
 	{ "You are in the woods near the road.",
 	{ 226, 226, 175, 226, 82, 0, 0, 0 },
-"**The road is +.*\n" },
+"**The road is +.*\n", { 0 } },
 	{ "This is a beach?",
 	{ 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" },
+Let's go -.*\n", { 0 } },
 	{ "The trail is lost in the woods here.",
 	{ 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" },
+when they get this far into the woods.** The trail goes -.*\n", { 0 } },
 	{ "You are on the bank of a stream.",
 	{ 182, 0, 242, 180, 84, 0, 0, 0 },
-"The stream falls over several small boulders here and continues on **-.*\n" },
+"The stream falls over several small boulders here and continues on **-.*\n", { 0 } },
 	{ "You are just inside the cave.",
 	{ 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" },
+cave  continues -.**\n", { 0 } },
 	{ "You are just inside the cave entrance.",
 	{ 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" },
+runes, \"GSRF KDIRE NLVEMP!\".**\n", { 0 } },
 	{ "You are at the edge of a huge chasm.",
 	{ 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" },
+impossible to climb down without a rope.** The canyon continues -.*\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 192, 241, 240, 191, 88, 0, 0, 0 },
 "The road winds through a coconut grove here. The road continues on -\n\
-and -.**\n" },
+and -.**\n", { 0 } },
 	{ "You are in a coconut palm grove near the road.",
 	{ 193, 233, 213, 192, 88, 0, 0, 0 },
-"***The road is +.\n" },
+"***The road is +.\n", { 0 } },
 	{ "You are at the clubhouse.",
 	{ 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" },
+a 2 inch nylon rope. ****\n", { 0 } },
 	{ "You are in the stables.",
 	{ 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" },
+My nose is beginning to itch. ****\n", { 0 } },
 	{ "You are in the old garage.",
 	{ 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" },
+roof. ****\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 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" },
+flowers and trees.** The road continues -. A walk leads -.\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 210, 199, 198, 220, 73, 0, 0, 0 },
-"The road runs - and -.**\n" },
+"The road runs - and -.**\n", { 0 } },
 	{ "You are in a coconut grove near the road.",
 	{ 234, 223, 234, 233, 88, 0, 0, 0 },
-"***The road is +.\n" },
+"***The road is +.\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 233, 225, 223, 226, 82, 0, 0, 0 },
-"The road continues - and -.**\n" },
+"The road continues - and -.**\n", { 0 } },
 	{ "The stream plummets over a cliff here.",
 	{ 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" },
+even with a strong rope. ****\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 0, 0, 244, 238, 85, 0, 0, 0 },
-"**The road continues - and -.\n" },
+"**The road continues - and -.\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 0, 245, 0, 243, 88, 0, 0, 0 },
-"*The road continues -* and -.\n" },
+"*The road continues -* and -.\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 244, 234, 213, 136, 88, 0, 0, 0 },
-"The road goes -* and *-.\n" },
+"The road goes -* and *-.\n", { 0 } },
 	{ "You are in a low passage.",
 	{ 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 passage continues -.***\n", { 0 } },
 	{ "The walls are very close together here.",
 	{ 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" },
+a large room -.***\n", { 0 } },
 	{ "You are in the cathedral room.",
 	{ 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" },
+come too far.*** \n", { 0 } },
 	{ "You are walking through a very round tunnel.",
 	{ 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" },
+The cave is beginning to flood again!  Let's get out of here! ***\n", { 0 } },
 	{ "You are in the cathedral anteroom.",
 	{ 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" },
+leads up.*** The cathedral room is +.\n", { 0 } },
 	{ "You are in a wide chamber.",
 	{ 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" },
+continues - and -.\n", { 0 } },
 	{ "You are at the top of a sloping passage.",
 	{ 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" },
+and -.\n", { 0 } },
 	{ "You are in an elaborately tiled room.",
 	{ 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" },
+leads down.*\n", { 0 } },
 	{ "You are at a dead end.",
 	{ 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" },
+if we disturb them. ** The only exit is +.*\n", { 0 } },
 	{ "The tunnel is very low here.",
 	{ 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" },
+The crawlspace continues -. The tunnel seems wider +.\n", { 0 } },
 	{ "This is the supply room.",
 	{ 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" },
+A tunnel leads off +.*\n", { 0 } },
 	{ "You have found a secret entrance to the catacombs.",
 	{ 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" },
+Below is a wet, seaweed covered floor. Above is a way out. ****\n", { 0 } },
 	{ "You are in the catacombs.",
 	{ 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" },
+continue - and -.\n", { 0 } },
 	{ "You are crawling on your stomach.",
 	{ 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" },
+but I would just as soon go -.\n", { 0 } },
 	{ "You are in the Sepulcher.",
 	{ 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" },
+reads, \"Three he made and gave them to his daughters.\"****\n", { 0 } },
 	{ "The passage is wider here.",
 	{ 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" },
+down into water here.***  A small crawlspace goes -.\n", { 0 } },
 	{ "You are at the bottom of a ladder.",
 	{ 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" },
+rickety wooden ladder.****\n", { 0 } },
 	{ "You are standing in several inches of water.",
 	{ 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" },
+be nearly at sea level.  A ladder leads up. ****\n", { 0 } },
 	{ "The tunnel here is blocked by broken rocks.",
 	{ 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" },
+way through.*  The passage goes -.**\n", { 0 } },
 	{ "The tunnel is too flooded to proceed.",
 	{ 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" },
+rainbows of reflected light.***  Let's go -.\n", { 0 } },
 	{ "The mine is less flooded here.",
 	{ 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" },
+and topaz burst from the walls of the cave.  A passage goes -.***\n", { 0 } },
 	{ "You are inside the cave.",
 	{ 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" },
+The trail winds + and +.**\n", { 0 } },
 	{ "You are in a rather large chamber.",
 	{ 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" },
+of enormous size.***  A passageway leads down to the -.\n", { 0 } },
 	{ "You are walking along the edge of a huge abyss.",
 	{ 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" },
+trail winds down.**  There is a tunnel +.*\n", { 0 } },
 	{ "You are on the edge of a huge abyss.",
 	{ 0, 0, 0, 0, 269, 1, 271, 0 },
-"The trail winds farther down.****\n" },
+"The trail winds farther down.****\n", { 0 } },
 	{ "You are winding your way along the abyss.",
 	{ 0, 0, 0, 0, 270, 1, 272, 0 },
-"The trail continues up and down.****\n" },
+"The trail continues up and down.****\n", { 0 } },
 	{ "You are on a wide shelf near the steamy abyss.",
 	{ 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" },
+abyss.  A trail winds up.*  A passageway leads -.**\n", { 0 } },
 	{ "You are in a wide tunnel leading to a fuming abyss.",
 	{ 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" },
+sparkling minerals.  The tunnel continues - and -.**\n", { 0 } },
 	{ "You are in a tunnel.",
 	{ 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" },
+The cave continues - and -.**\n", { 0 } },
 	{ "You are at the bottom of a pit.",
 	{ 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" },
+If you had a rope it might be possible to climb out. ****\n", { 0 } },
 };
Index: games/battlestar/externs.h
===================================================================
RCS file: /ftp/pub/DragonFly/dcvs/src/games/battlestar/externs.h,v
retrieving revision 1.3
diff -u -r1.3 externs.h
--- games/battlestar/externs.h	12 Nov 2003 14:53:52 -0000	1.3
+++ games/battlestar/externs.h	4 Aug 2006 15:59:59 -0000
@@ -39,9 +39,9 @@
 #include <errno.h>
 #include <sys/param.h>
 #include <sys/signal.h>
-#include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <string.h>
 #include <unistd.h>
 
 #define BITS (8)
Index: games/battlestar/fly.c
===================================================================
RCS file: /ftp/pub/DragonFly/dcvs/src/games/battlestar/fly.c,v
retrieving revision 1.3
diff -u -r1.3 fly.c
--- games/battlestar/fly.c	12 Nov 2003 14:53:52 -0000	1.3
+++ games/battlestar/fly.c	4 Aug 2006 15:59:59 -0000
@@ -38,7 +38,6 @@
 #include "externs.h"
 #undef UP
 #include <curses.h>
-#include <string.h>
 
 #define abs(a)	((a) < 0 ? -(a) : (a))
 #define MIDR  (LINES/2 - 1)
@@ -59,11 +58,9 @@
 static void	screen (void);
 static void	target (void);
 
-void
-succumb(sig)
-	int sig;
+static void
+succumb(int sig)
 {
-
 	sig = 0;
 	if (oldsig == SIG_DFL) {
 		endfly();
@@ -76,9 +73,8 @@
 }
 
 int
-visual()
+visual(void)
 {
-
 	destroyed = 0;
 	if(initscr() == NULL){
 		puts("Whoops!  No more memory...");
@@ -187,8 +183,8 @@
 	return(1);
 }
 
-void
-screen()
+static void
+screen(void)
 {
 	int r,c,n;
 	int i;
@@ -204,8 +200,8 @@
 	refresh();
 }
 
-void
-target()
+static void
+target(void)
 {
 	int n;
 
@@ -217,8 +213,8 @@
 	}
 }
 
-void
-notarget()
+static void
+notarget(void)
 {
 	int n;
 
@@ -230,8 +226,8 @@
 	}
 }
 
-void
-blast()
+static void
+blast(void)
 {
 	int n;
 
@@ -252,7 +248,7 @@
 	alarm(1);
 }
 
-void
+static void
 moveenemy(int sig)
 {
 	double d;
@@ -291,8 +287,8 @@
 	alarm(1);
 }
 
-void
-endfly()
+static void
+endfly(void)
 {
 	alarm(0);
 	signal(SIGALRM, SIG_DFL);
Index: games/battlestar/getcom.c
===================================================================
RCS file: /ftp/pub/DragonFly/dcvs/src/games/battlestar/getcom.c,v
retrieving revision 1.2
diff -u -r1.2 getcom.c
--- games/battlestar/getcom.c	17 Jun 2003 04:25:22 -0000	1.2
+++ games/battlestar/getcom.c	4 Aug 2006 15:59:59 -0000
@@ -39,10 +39,7 @@
 #include "externs.h"
 
 char *
-getcom(buf, size, prompt, error)
-	char *buf;
-	int size;
-	const char *prompt, *error;
+getcom(char *buf, int size, const char *prompt, const char *error)
 {
 	for (;;) {
 		fputs(prompt, stdout);
@@ -66,9 +63,7 @@
  * and leaves it unchanged if flag = 0
  */
 char *
-getword(buf1, buf2, flag)
-	char   *buf1, *buf2;
-	int     flag;
+getword(char *buf1, char *buf2, int flag)
 {
 	while (isspace(*buf1))
 		buf1++;
Index: games/battlestar/init.c
===================================================================
RCS file: /ftp/pub/DragonFly/dcvs/src/games/battlestar/init.c,v
retrieving revision 1.3
diff -u -r1.3 init.c
--- games/battlestar/init.c	12 Nov 2003 14:53:52 -0000	1.3
+++ games/battlestar/init.c	4 Aug 2006 15:59:59 -0000
@@ -35,9 +35,7 @@
  * $DragonFly: src/games/battlestar/init.c,v 1.3 2003/11/12 14:53:52 eirikn Exp $
  */
 
-#include <sys/types.h>
 #include <pwd.h>
-#include <string.h>
 #include "externs.h"
 
 static int	 checkout (const char *);
@@ -45,8 +43,7 @@
 static int	 wizard (const char *);
 
 void
-initialize(startup)
-	int  startup;
+initialize(int startup)
 {
 	const struct objs *p;
 
@@ -74,9 +71,8 @@
 	signal(SIGINT, die);
 }
 
-void
-getutmp(battlestar_uname)
-	char *battlestar_uname;
+static void
+getutmp(char *battlestar_uname)
 {
 	struct passwd *ptr;
 
@@ -102,9 +98,8 @@
 	0
 };
 
-int
-wizard(battlestar_uname)
-	const char *battlestar_uname;
+static int
+wizard(const char *battlestar_uname)
 {
 	char flag;
 
@@ -113,9 +108,8 @@
 	return flag;
 }
 
-int
-checkout(battlestar_uname)
-	const char *battlestar_uname;
+static int
+checkout(const char *battlestar_uname)
 {
 	const char *const *ptr;
 
Index: games/battlestar/misc.c
===================================================================
RCS file: /ftp/pub/DragonFly/dcvs/src/games/battlestar/misc.c,v
retrieving revision 1.2
diff -u -r1.2 misc.c
--- games/battlestar/misc.c	17 Jun 2003 04:25:22 -0000	1.2
+++ games/battlestar/misc.c	4 Aug 2006 15:59:59 -0000
@@ -38,9 +38,7 @@
 #include "externs.h"
 
 int
-card(array, size)		/* for beenthere, injuries */
-	const char *array;
-	int size;
+card(const char *array, int size)	/* for beenthere, injuries */
 {
 	const char *end = array + size;
 	int i = 0;
@@ -52,8 +50,7 @@
 }
 
 int
-ucard(array)
-	const unsigned int *array;
+ucard(const unsigned int *array)
 {
 	int j = 0, n;
 
Index: games/battlestar/nightfile.c
===================================================================
RCS file: /ftp/pub/DragonFly/dcvs/src/games/battlestar/nightfile.c,v
retrieving revision 1.2
diff -u -r1.2 nightfile.c
--- games/battlestar/nightfile.c	17 Jun 2003 04:25:22 -0000	1.2
+++ games/battlestar/nightfile.c	4 Aug 2006 15:59:59 -0000
@@ -38,115 +38,115 @@
 #include "externs.h"
 
 struct room nightfile[] = {
-	{ 0 },
+	{ 0, { 0 }, 0, { 0 } },
 	{ "You are in the main hangar.",
 	{ 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" },
+of the hangar is +. There is an exit +.*\n", { 0 } },
 	{ "This is the landing bay.",
 	{ 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" },
+There is an exit +.*\n", { 0 } },
 	{ "You are in the gallery.",
 	{ 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" },
+lick at the shadows. The control room is +. ***\n", { 0 } },
 	{ "You are in the control room.",
 	{ 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" },
+A staircase leads down. * There is a way -. **        \n", { 0 } },
 	{ "This is the launch room.",
 	{ 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" },
+explosions.  The main hangar is +. The viper launch tubes are to the -.*\n", { 0 } },
 	{ "You are at the workbench.",
 	{ 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" },
+The launch room is +. The remaining viper is +.*\n", { 0 } },
 	{ "You are in the viper launch tube.",
 	{ 0, 5, 0, 5, 32, 0, 0, 0 },
-"The two guards are eyeing you warily! ****\n" },
+"The two guards are eyeing you warily! ****\n", { 0 } },
 	{ "This is a walk in closet.",
 	{ 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" },
+delicate synthetic fabrics are stowed here.  The bedroom is +.***\n", { 0 } },
 	{ "You are in a wide hallway leading to the main hangar.",
 	{ 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" },
+The main hangar is +.\n", { 0 } },
 	{ "You are in a wide hallway leading to the landing bay.",
 	{ 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 continues -. The landing bay is +.\n", { 0 } },
 	{ "The hallway is very congested with rubble here.",
 	{ 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" },
+But the hallway seems clearer +.\n", { 0 } },
 	{ "A wide hallway and a more narrow walkway meet here.",
 	{ 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" },
+The wide hallway goes *-.\n", { 0 } },
 	{ "You are in what was once an elegant stateroom.",
 	{ 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" },
+collapsed floor I can see a hallway below.  A door is +.***\n", { 0 } },
 	{ "You're at the entrance to the sick bay.",
 	{ 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" },
+come to the -. *\n", { 0 } },
 	{ "You're in the walkway.",
 	{ 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" },
+continues -. The armory is +.**\n", { 0 } },
 	{ "These are the executive suites of the battlestar.",
 	{ 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" },
+Other rooms lie - and +.\n", { 0 } },
 	{ "You're in a long dimly lit hallway.",
 	{ 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" },
+entrance to the sickbay is +. The walkway turns sharply -.*\n", { 0 } },
 	{ "This is the sick bay.",
 	{ 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" },
+Nothing but death and suffering +.  The walkway is +.\n", { 0 } },
 	{ "You're in the armory.",
 	{ 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 walkway is +. The magazine is +.**\n", { 0 } },
 	{ "The hallway ends here at the presidential suite.",
 	{ 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" },
+goes -.**\n", { 0 } },
 	{ "This is the maid's utility room.",
 	{ 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" },
+The hallway is +.\n", { 0 } },
 	{ "This is a luxurious stateroom.",
 	{ 0, 8, 16, 0, 0, 0, 0, 0 },
 "The floor is carpeted with a soft animal fur and the great wooden furniture\n\
@@ -154,1024 +154,1024 @@
 into the walls and ceiling is flashing wildly.  The floor shudders and\n\
 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" },
+room +, and a doorway +.*\n", { 0 } },
 	{ "You are at the entrance to the dining hall.",
 	{ 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" },
+The dining hall is to the -.*\n", { 0 } },
 	{ "This was once the first class lounge.",
 	{ 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" },
+It seems a little clearer +.*\n", { 0 } },
 	{ "You are in a narrow stairwell.",
 	{ 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" },
+hallway turns sharply -.**\n", { 0 } },
 	{ "You are in the magazine.",
 	{ 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" },
+launchers are here. The armory is +.***\n", { 0 } },
 	{ "You're in the presidential suite.",
 	{ 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" },
+The hallway leads -.**\n", { 0 } },
 	{ "You are in the dining hall.",
 	{ 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" },
+would not linger here. * The kitchen is +. Entrances + and +.\n", { 0 } },
 	{ "The debris is very thick here.",
 	{ 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" },
+It would be best to go -.\n", { 0 } },
 	{ "You are in the kitchen.",
 	{ 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" },
+side of beef. The dining room is +. ** There is a locked door +.\n", { 0 } },
 	{ "You are in an arched entry leading to the dining room.",
 	{ 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" },
+The dining room is +.\n", { 0 } },
 	{ "You are in space.",
 	{ 33, 34, 35, 36, 37, 1, 33, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 38, 32, 39, 40, 41, 1, 42, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 32, 44, 45, 46, 47, 1, 48, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 40, 45, 49, 32, 50, 1, 51, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 41, 46, 32, 52, 53, 1, 54, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 42, 47, 50, 53, 55, 1, 32, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 43, 48, 51, 54, 32, 1, 56, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 57, 33, 40, 41, 42, 1, 43, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 39, 35, 57, 33, 58, 1, 59, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 39, 36, 33, 59, 60, 1, 61, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 39, 37, 58, 60, 62, 1, 33, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 39, 38, 59, 61, 33, 1, 63, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 34, 64, 45, 46, 47, 1, 48, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 35, 44, 49, 34, 50, 1, 51, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 36, 44, 34, 52, 53, 1, 54, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 37, 44, 50, 53, 55, 1, 34, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 38, 44, 51, 54, 34, 1, 56, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 49, 49, 52, 35, 49, 1, 49, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 58, 47, 49, 37, 55, 1, 35, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 59, 48, 49, 38, 35, 1, 56, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 52, 52, 36, 49, 52, 1, 52, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 60, 46, 37, 52, 55, 1, 36, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 61, 48, 38, 52, 36, 1, 56, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 62, 55, 55, 55, 56, 1, 37, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 56, 56, 56, 56, 38, 1, 55, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 65, 39, 57, 57, 57, 1, 57, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 39, 50, 49, 42, 62, 1, 40, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 39, 51, 49, 43, 40, 1, 63, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 39, 53, 43, 59, 62, 1, 41, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 39, 54, 43, 59, 41, 1, 56, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 39, 55, 62, 62, 56, 1, 42, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 39, 56, 35, 36, 43, 1, 55, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 44, 66, 66, 66, 66, 1, 66, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 67, 57, 67, 67, 67, 1, 67, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in space.",
 	{ 64, 68, 68, 68, 68, 1, 68, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are orbiting a small blue planet.",
 	{ 67, 67, 67, 67, 65, 1, 69, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are orbiting a tropical planet.",
 	{ 68, 68, 68, 68, 66, 1, 70, 1},
-"****\n" },
+"****\n", { 0 } },
 	{ "You are flying through a dense fog.",
 	{ 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" },
+****\n", { 0 } },
 	{ "You are approaching an island.",
 	{ 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" },
+line stretches on *+.*\n", { 0 } },
 	{ "You are flying over a mountainous region.",
 	{ 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" },
+"Below is a shadow filled canyon with luminous waterfalls plummeting down beyond sight and looming spires and pinnacles.  **The ocean is +.*\n", { 0 } },
 	{ "You are flying over the ocean.",
 	{ 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" },
+shadowy fish.****\n", { 0 } },
 	{ "You are flying over the beach.",
 	{ 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" },
+sharply +.* The beach is lost in low cliffs +.*\n", { 0 } },
 	{ "You are flying over a large lagoon.",
 	{ 81, 72, 73, 82, 68, 1, 0, 1},
-"The water's brink winds tortuously inland.  There are some lights +.***\n" },
+"The water's brink winds tortuously inland.  There are some lights +.***\n", { 0 } },
 	{ "You are flying over a gently sloping plane.",
 	{ 83, 71, 84, 85, 68, 1, 0, 1},
 "The ground appears to be choked with vegetation.*  The terrain is more\n\
-rugged +.**\n" },
+rugged +.**\n", { 0 } },
 	{ "You are flying through a gorge.",
 	{ 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" },
+sea** +, and to a tumultuous origin +.\n", { 0 } },
 	{ "You are flying over a plantation.",
 	{ 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" },
++ and *+.\n", { 0 } },
 	{ "You are over the ocean.",
 	{ 72, 78, 79, 74, 68, 1, 0, 1},
-"The deep green swells foam and roll into the shore **+*.\n" },
+"The deep green swells foam and roll into the shore **+*.\n", { 0 } },
 	{ "You are flying along the coast.",
 	{ 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" },
+and explodes in a shower of sparkling, moonlit spray. ****\n", { 0 } },
 	{ "This is a beautiful coral beach.",
 	{ 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" },
+Gently swaying palm trees are +.***\n", { 0 } },
 	{ "You are flying over a small fishing village.",
 	{ 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" },
+The road continues on ***+.\n", { 0 } },
 	{ "You are flying over a clearing.",
 	{ 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" },
+The still waters of the lagoon reflects our orange turbo thrusters.****\n", { 0 } },
 	{ "You are flying over the shore.",
 	{ 94, 75, 95, 96, 68, 1, 0, 1},
-"Rocky lava flows have overtaken the beach here.****\n" },
+"Rocky lava flows have overtaken the beach here.****\n", { 0 } },
 	{ "You are flying in a wide valley.",
 	{ 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" },
+The valley opens into blackness +. The mist grows thicker +.**\n", { 0 } },
 	{ "You are flying near the shore.",
 	{ 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" },
+water here towards the hills and down to the flat lands *+.**\n", { 0 } },
 	{ "You are flying around the very tip of the island.",
 	{ 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" },
+around +** and +.\n", { 0 } },
 	{ "You are flying along the coastline.",
 	{ 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" },
+are some lights +.*\n", { 0 } },
 	{ "You are flying over several cottages and buildings",
 	{ 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" },
++ and +.**\n", { 0 } },
 	{ "You are in a field of sugar cane.",
 	{ 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" },
+There are some large trees ***+.\n", { 0 } },
 	{ "You are flying over the ocean.",
 	{ 95, 78, 90, 86, 68, 1, 0, 1},
-"The water is a placid ebony.****\n" },
+"The water is a placid ebony.****\n", { 0 } },
 	{ "You are on the coast road.",
 	{ 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" },
+and -.\n", { 0 } },
 	{ "You are on the main street of the village.",
 	{ 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" },
+There is a light burning in a bungalow +.***\n", { 0 } },
 	{ "You are at the sea plane dock.",
 	{ 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" },
+There is something set up +.*\n", { 0 } },
 	{ "You are flying over the ocean.",
 	{ 94, 83, 95, 96, 68, 1, 0, 1},
-"The black waves surge off shore here.  The ocean becomes much calmer +.***\n" },
+"The black waves surge off shore here.  The ocean becomes much calmer +.***\n", { 0 } },
 	{ "You are flying along the coast.",
 	{ 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" },
+The very tip of the island is +.*\n", { 0 } },
 	{ "You are flying along the coast.",
 	{ 94, 85, 83, 99, 68, 1, 0, 1},
-"The coast here is cluttered with rocky outcroppings.****\n" },
+"The coast here is cluttered with rocky outcroppings.****\n", { 0 } },
 	{ "You are lost in a sea of fog.",
 	{ 97, 104, 97, 97, 97, 1, 0, 1},
 "What have you gotten us into?\n\
-I can't see a thing! ****\n" },
+I can't see a thing! ****\n", { 0 } },
 	{ "You are on a gravel wash.",
 	{ 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" },
+coming from +.**\n", { 0 } },
 	{ "You are flying over a wide beach.",
 	{ 96, 88, 85, 87, 68, 1, 105, 1},
-"There are some lighted buildings *+.  Some trees are growing +.*\n" },
+"There are some lighted buildings *+.  Some trees are growing +.*\n", { 0 } },
 	{ "You are flying over the ocean.",
 	{ 100, 100, 87, 100, 68, 1, 0, 1},
-"The black waves surge and splash against the rocky shore.****\n" },
+"The black waves surge and splash against the rocky shore.****\n", { 0 } },
 	{ "You are on a narrow strip of sand.",
 	{ 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" },
+A fresh ocean breeze is rustling the ferns **+.*\n", { 0 } },
 	{ "This is Fern Canyon.",
 	{ 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" },
+through a thin mist.  The canyon winds **-, and -.\n", { 0 } },
 	{ "This is the front lawn.",
 	{ 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" },
+is a road + which turns into the driveway.*\n", { 0 } },
 	{ "You have just crossed the crest of a mountain.",
 	{ 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" },
+Far + I can see the ocean sparkling in the moonlight.**\n", { 0 } },
 	{ "You are on a sandy beach.",
 	{ 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" },
+appeal.**  Stone steps lead to a lighted path in the gardens +.*\n", { 0 } },
 	{ "You are among palm trees near the shore.",
 	{ 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" },
+denser +.  Crickets are chirping loudly here.  The ocean is +.**\n", { 0 } },
 	{ "You are walking along the beach.",
 	{ 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" },
++.*\n", { 0 } },
 	{ "You are walking along the beach.",
 	{ 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" },
+to the cool night air.****\n", { 0 } },
 	{ "You are in a papaya grove.",
 	{ 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" },
+There are some tall trees +.***\n", { 0 } },
 	{ "You are in a field of pineapple.",
 	{ 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" },
+a skewered victim with tiny barbs.* The field ends +.**\n", { 0 } },
 	{ "You are in a field of kiwi plants.",
 	{ 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" },
+and +. The field ends in a road +.*\n", { 0 } },
 	{ "You are in a large grove of coconuts.",
 	{ 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" },
+are also deeper.  It's hard to keep my sense of direction.****\n", { 0 } },
 	{ "You are in the woods.",
 	{ 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" },
+so intense here that we stand in utter blackness.****\n", { 0 } },
 	{ "You are at the shore.",
 	{ 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" },
+asunder.***  The beach goes -.\n", { 0 } },
 	{ "You are on the coast road.",
 	{ 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" },
+continues into the dark forest +.*\n", { 0 } },
 	{ "The road winds deeper into the trees.",
 	{ 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" },
+road continues - and *- into the shadows.*\n", { 0 } },
 	{ "This is the front porch of the bungalow.",
 	{ 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" },
+roast pig smells good.**\n", { 0 } },
 	{ "You are on a path leading to the lagoon.",
 	{ 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" },
+in the woods.**\n", { 0 } },
 	{ "This is a dirt road.",
 	{ 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" },
+up the night sky +.\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 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" },
+my flared nostrils.  The road continues +.\n", { 0 } },
 	{ "You are on a dirt road.",
 "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" },
+our presence.  **The road continues - and -.\n", { 0 } },
 	{ "You are at the seaplane dock.",
 	{ 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" },
+A dark trail leads around the lagoon **+.\n", { 0 } },
 	{ "There are some tables on the lawn here.",
 	{ 121, 122, 123, 93, 82, 0, 0, 0 },
-"Some tables are strewn on the wet lawn.****\n" },
+"Some tables are strewn on the wet lawn.****\n", { 0 } },
 	{ "You are nosing around in the bushes.",
 	{ 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" },
+I think I stepped in something unpleasant. It would be best to go **-.*\n", { 0 } },
 	{ "You are walking in a dry stream bed.",
 	{ 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" },
+path along the wash is **+.  The high bank is impossible to climb +.\n", { 0 } },
 	{ "You are at the thermal pools.",
 	{ 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" },
+bubbles.  The air is quite warm and a cave entrance ***+ spews steam.\n", { 0 } },
 	{ "You are in the woods.",
 	{ 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" },
+the dark!  The sound of rushing water is coming from *+.**\n", { 0 } },
 	{ "You are on a dirt trail.",
 	{ 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" },
+cliffs border the trail +.  Some crickets are chirping noisily.\n", { 0 } },
 	{ "You are  walking along the beach.",
 	{ 183, 101, 184, 0, 87, 0, 0, 0 },
-"The surf is rather tame tonight.  The beach continues + and +.**\n" },
+"The surf is rather tame tonight.  The beach continues + and +.**\n", { 0 } },
 	{ "You are walking along the beach.",
 	{ 101, 185, 186, 0, 87, 0, 0, 0 },
-"This is not a very nice beach. The coarse sand hurts my feet.****\n" },
+"This is not a very nice beach. The coarse sand hurts my feet.****\n", { 0 } },
 	{ "You are walking through some ferns.",
 	{ 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" },
+*+.\n", { 0 } },
 	{ "You are in a narrow canyon.",
 	{ 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" },
+series of riffles and pools.  The cool mountain air is refreshing.****\n", { 0 } },
 	{ "The canyon is much wider here.",
 	{ 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" },
+and -.\n", { 0 } },
 	{ "You are on the front porch of the cottage.",
 	{ 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" },
+leads -.  The lawn and fountain are +.**\n", { 0 } },
 	{ "You are in a palm grove.",
 	{ 103, 191, 192, 105, 88, 0, 0, 0 },
-"Crickets are chirping in the cool night air.****\n" },
+"Crickets are chirping in the cool night air.****\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 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" },
+A small dirt road goes -, and a drive way peals off +.\n", { 0 } },
 	{ "You are in a field of small shrubs.",
 	{ 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" },
+with spot lights and gas lamps.  A cool land breeze is blowing.*\n", { 0 } },
 	{ "The beach is pretty rocky here.",
 	{ 194, 105, 195, 0, 96, 0, 0, 0 },
-"The tide is very low tonight.  The beach is nicer *+.**\n" },
+"The tide is very low tonight.  The beach is nicer *+.**\n", { 0 } },
 	{ "The beach is almost 10 meters wide here.",
 	{ 105, 183, 196, 0, 99, 0, 0, 0 },
-"The sand has become more coarse and the beach steeper.****\n" },
+"The sand has become more coarse and the beach steeper.****\n", { 0 } },
 	{ "You are in the gardens.",
 	{ 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" },
+Stone steps lead down to the beach +.\n", { 0 } },
 	{ "You are on the coast road.",
 	{ 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" },
+The road continues - and -.\n", { 0 } },
 	{ "You are in the forest.",
 	{ 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" },
+"I suppose there are trees and ferns all around, but it is too dark to see.****\n", { 0 } },
 	{ "You are in the forest.",
 	{ 199, 108, 106, 146, 73, 0, 0, 0 },
-"There are shadowy trees and ferns all around.****\n" },
+"There are shadowy trees and ferns all around.****\n", { 0 } },
 	{ "You are in a copse.",
 	{ 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" },
+moonlight, I can tell that someone has been digging here recently.****\n", { 0 } },
 	{ "You are at the tide pools.",
 	{ 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" },
+They are exposed because of the low tide.  There is a beach ***+.\n", { 0 } },
 	{ "You are in the forest.",
 	{ 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" },
+shrubs block the way -.\n", { 0 } },
 	{ "You are at the mouth of the lagoon.",
 	{ 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" },
+on -. Only water lies +.\n", { 0 } },
 	{ "You are in a breadfruit grove.",
 	{ 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" },
+*+, and +.\n", { 0 } },
 	{ "You are in a grove of mango trees.",
 	{ 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" },
+makes it fairly easy to see.****\n", { 0 } },
 	{ "You are in a grove of coconut palms.",
 	{ 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" },
+shadows.****\n", { 0 } },
 	{ "You are in a coconut grove.",
 	{ 110, 207, 208, 209, 77, 0, 0, 0 },
-"There are countless trees here.****\n" },
+"There are countless trees here.****\n", { 0 } },
 	{ "You are in a field of pineapple.",
 	{ 154, 208, 210, 110, 77, 0, 0, 0 },
-"The sharp leaves are cutting me to ribbons. There is a road **+.*\n" },
+"The sharp leaves are cutting me to ribbons. There is a road **+.*\n", { 0 } },
 	{ "You are in a coconut grove.",
 	{ 112, 209, 110, 211, 77, 0, 0, 0 },
-"There is a field of something **+.*\n" },
+"There is a field of something **+.*\n", { 0 } },
 	{ "You are on the edge of a kiwi and pineapple field.",
 	{ 111, 152, 155, 110, 77, 0, 0, 0 },
-"An irrigation ditch separates the two fields here. There is a road **+.*\n" },
+"An irrigation ditch separates the two fields here. There is a road **+.*\n", { 0 } },
 	{ "This is a dirt road.",
 	{ 205, 210, 212, 111, 77, 0, 0, 0 },
-"The road runs - and - here.  It is very dark in the forest.**\n" },
+"The road runs - and - here.  It is very dark in the forest.**\n", { 0 } },
 	{ "You are in a palm grove.",
 	{ 206, 211, 112, 213, 77, 0, 0, 0 },
-"There are trees all around us.****\n" },
+"There are trees all around us.****\n", { 0 } },
 	{ "You are on the edge of a small clearing.",
 	{ 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" },
+knees.****\n", { 0 } },
 	{ "You are in the woods.",
 	{ 158, 115, 215, 113, 79, 0, 0, 0 },
-"You have walked a long way and found only spider webs. ****\n" },
+"You have walked a long way and found only spider webs. ****\n", { 0 } },
 	{ "You are walking along the shore.",
 	{ 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" },
+The land rises +. There is a beach far +.\n", { 0 } },
 	{ "You are just inside the entrance to the sea cave.",
 	{ 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" },
+continues -.***\n", { 0 } },
 	{ "You are in a secret nook beside the road.",
 	{ 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" },
+tree stuffed with something is nearby.  The road is +.***\n", { 0 } },
 	{ "You are on the coast road.",
 	{ 215, 214, 0, 115, 86, 0, 0, 0 },
-"The road turns abruptly - here, wandering deeper into the black forest.***\n" },
+"The road turns abruptly - here, wandering deeper into the black forest.***\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 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" },
+just darted across the road and into the bushes *+.  Let's go *-.\n", { 0 } },
 	{ "You have discovered a hidden thicket near the road.",
 	{ 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" },
+at night.  The road is **+.*\n", { 0 } },
 	{ "You are in the living room.",
 	{ 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" },
+*The exit is +.* The bedroom is +.\n", { 0 } },
 	{ "You are at the lagoon.",
 	{ 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" },
+*+, and +.\n", { 0 } },
 	{ "You are at the lagoon.",
 	{ 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" },
+drums reverberate in the forest.**  The path continues + and +.\n", { 0 } },
 	{ "You are at the lagoon.",
 	{ 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" },
+bushes here and continues on **- and -.\n", { 0 } },
 	{ "You are in the woods.",
 	{ 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" },
+branches snare us as we stumble along in the pitch black night.****\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 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" },
+loom in the darkness *+. The road continues - and -.\n", { 0 } },
 	{ "You are in the woods beside the road.",
 	{ 221, 120, 92, 222, 81, 0, 0, 0 },
-"The forest grows darker +. The road is +.**\n" },
+"The forest grows darker +. The road is +.**\n", { 0 } },
 	{ "The road crosses the lagoon here.",
 	{ 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" },
+**+ and +.\n", { 0 } },
 	{ "You are in a coconut palm grove.",
 	{ 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" },
+continues +.***\n", { 0 } },
 	{ "You are walking along a dirt road.",
 	{ 224, 176, 172, 121, 82, 0, 0, 0 },
-"You are near misty patch of the roadway **+.  The road continues -.\n" },
+"You are near misty patch of the roadway **+.  The road continues -.\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 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" },
+starlight I can also discern that the road continues - toward the lagoon.*\n", { 0 } },
 	{ "You are on a trail running around the lagoon.",
 	{ 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" },
++.  There is deep water + and +. The trail continues -.\n", { 0 } },
 	{ "This is the mouth of the lagoon.",
 	{ 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" },
+The beach is -.\n", { 0 } },
 	{ "You are in a dry stream bed.",
 	{ 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" },
+-.**\n", { 0 } },
 	{ "You are on a dirt path along the wash.",
 	{ 0, 128, 125, 228, 84, 0, 0, 0 },
-"The trail winds along the gravel wash and delves into the forest ***+.\n" },
+"The trail winds along the gravel wash and delves into the forest ***+.\n", { 0 } },
 	{ "The thermal pools flow into a stream here.",
 	{ 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" },
+stream **+. The pools are +.\n", { 0 } },
 	{ "You are at the entrance to a cave.",
 	{ 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" },
+A path goes + from here.  The entrance is +.**\n", { 0 } },
 	{ "You are in the woods.",
 	{ 182, 229, 182, 127, 84, 0, 0, 0 },
 "Thorns tangle your every effort to proceed.*  The sound of rushing water is\n\
-+.**\n" },
++.**\n", { 0 } },
 	{ "You are walking along the beach.",
 	{ 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" },
+direction.  The beach continues - and -.*  The ocean is +.\n", { 0 } },
 	{ "You are in the dunes.",
 	{ 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" },
+is ***+.\n", { 0 } },
 	{ "This is a lousy beach.",
 	{ 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" },
+beach is better +.***\n", { 0 } },
 	{ "You are in a field of sparse ferns.",
 	{ 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" },
+vegetation +.**  The ocean is +.\n", { 0 } },
 	{ "You are in the woods.",
 	{ 131, 131, 137, 131, 87, 0, 0, 0 },
 "Young trees and tall shrubs grow densely together here.\n\
-They grow thicker **+.*\n" },
+They grow thicker **+.*\n", { 0 } },
 	{ "The canyon is no wider than a foot here.",
 	{ 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" },
+too narrow to follow it any farther.***  I guess we'll have to go -.\n", { 0 } },
 	{ "You are in a narrow part of the canyon.",
 	{ 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" },
+from the ground itself.* The canyon continues - and -.\n", { 0 } },
 	{ "You are in the drawing room.",
 	{ 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" },
+study and it even has a old fashioned telephone to complete the decor.**\n", { 0 } },
 	{ "You are in a palm grove.",
 	{ 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" },
+There is a road +.*\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 136, 233, 234, 135, 88, 0, 0, 0 },
 "The road winds through a coconut palm grove here. It continues on - \n\
-and -.**\n" },
+and -.**\n", { 0 } },
 	{ "The road leads to several large buildings here.",
 	{ 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" },
+garage of similar construct to the barn +.\n", { 0 } },
 	{ "This part of the beach is impassable.",
 	{ 0, 138, 0, 0, 96, 0, 0, 0 },
-"The see is calm tonight.  The beach goes *-.**\n" },
+"The see is calm tonight.  The beach goes *-.**\n", { 0 } },
 	{ "You are in the gardens.",
 	{ 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" },
+the way to the ocean ***+.\n", { 0 } },
 	{ "You are in the gardens.",
 	{ 140, 183, 197, 139, 99, 0, 0, 0 },
-"Beautiful flowers and shrubs surround a lighted goldfish pond.****\n" },
+"Beautiful flowers and shrubs surround a lighted goldfish pond.****\n", { 0 } },
 	{ "You are on a stone walk in the garden.",
 	{ 195, 196, 238, 140, 99, 0, 0, 0 },
-"The walk leads to a road **+.*\n" },
+"The walk leads to a road **+.*\n", { 0 } },
 	{ "You are in the forest near the road.",
 	{ 198, 141, 216, 198, 73, 0, 0, 0 },
-"There are many thorny bushes here!****\n" },
+"There are many thorny bushes here!****\n", { 0 } },
 	{ "You are at a fork in the road.",
 	{ 239, 146, 141, 170, 73, 0, 0, 0 },
 "Two roads come together in the darkness here. One runs -,* the other \n\
-runs - and -.\n" },
+runs - and -.\n", { 0 } },
 	{ "You are on a dirt path around the lagoon.",
 	{ 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" },
+the path runs into a clearing +. The path continues -.**\n", { 0 } },
 	{ "You are drowning in the lagoon.",
 	{ 201, 201, 147, 201, 74, 0, 0, 0 },
-"I suggest you get out before you become waterlogged.****\n" },
+"I suggest you get out before you become waterlogged.****\n", { 0 } },
 	{ "You are in a coconut palm grove.",
 	{ 202, 148, 203, 204, 77, 0, 0, 0 },
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in a palm grove.",
 	{ 202, 149, 205, 148, 77, 0, 0, 0 },
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in a palm grove.",
 	{ 202, 150, 148, 206, 77, 0, 0, 0 },
-"****\n" },
+"****\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 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" },
+some way.**\n", { 0 } },
 	{ "You are in a coconut palm grove.",
 	{ 204, 156, 150, 213, 77, 0, 0, 0 },
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in a coconut grove.",
 	{ 151, 219, 208, 209, 77, 0, 0, 0 },
-"*The grove ends +.**\n" },
+"*The grove ends +.**\n", { 0 } },
 	{ "You are in a coconut grove.",
 	{ 152, 207, 239, 151, 77, 0, 0, 0 },
-"**There is a dirt road +.*\n" },
+"**There is a dirt road +.*\n", { 0 } },
 	{ "You are in a coconut grove.",
 	{ 153, 207, 151, 211, 77, 0, 0, 0 },
-"****\n" },
+"****\n", { 0 } },
 	{ "This is a dirt road.",
 	{ 205, 239, 212, 154, 77, 0, 0, 0 },
-"The road continues - and -.**\n" },
+"The road continues - and -.**\n", { 0 } },
 	{ "You are in a coconut grove.",
 	{ 153, 209, 153, 213, 77, 0, 0, 0 },
-"****\n" },
+"****\n", { 0 } },
 	{ "You are in the woods near the road.",
 	{ 205, 210, 212, 155, 77, 0, 0, 0 },
-"There are many thorny bushes here!****\n" },
+"There are many thorny bushes here!****\n", { 0 } },
 	{ "You are in a coconut grove.",
 	{ 213, 213, 156, 234, 88, 0, 0, 0 },
-"***The grove ends in a clearing +.\n" },
+"***The grove ends in a clearing +.\n", { 0 } },
 	{ "You are walking along some high cliffs.",
 	{ 162, 0, 0, 159, 86, 0, 0, 0 },
 "The island bends sharply + here with high cliffs -\n\
-and -. The cliffs are lower +.\n" },
+and -. The cliffs are lower +.\n", { 0 } },
 	{ "You are at the coast road turn around.",
 	{ 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" },
+****\n", { 0 } },
 	{ "You are in the woods near the road.",
 	{ 216, 163, 216, 198, 79, 0, 257, 0 },
-"These thorny bushes are killing me.****\n" },
+"These thorny bushes are killing me.****\n", { 0 } },
 	{ "You are in the kitchen.",
 	{ 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" },
+One spark from a match and.... The door out is ***+.\n", { 0 } },
 	{ "You are in the bedroom.",
 	{ 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" },
+here.** The living room is +.*\n", { 0 } },
 	{ "You are in the woods.",
 	{ 207, 169, 220, 221, 81, 0, 0, 0 },
-"The darkness is intense, but there seems to be a clearing +.***\n" },
+"The darkness is intense, but there seems to be a clearing +.***\n", { 0 } },
 	{ "You are in the woods near the road.",
 	{ 219, 170, 239, 169, 81, 0, 0, 0 },
-"*As far as I can tell, there are two roads + and +.*\n" },
+"*As far as I can tell, there are two roads + and +.*\n", { 0 } },
 	{ "You are in the woods.",
 	{ 207, 171, 219, 222, 81, 0, 0, 0 },
-"The spider webs thin out and the forest is clearer +.***\n" },
+"The spider webs thin out and the forest is clearer +.***\n", { 0 } },
 	{ "You are on the lagoon's inland finger.",
 	{ 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" },
+and very painful sedges.* The road is +.**\n", { 0 } },
 	{ "You are in a grassy coconut grove.",
 	{ 240, 173, 224, 241, 82, 0, 0, 0 },
-"The tall palms provide a ghostly canopy for the sandy ground covering.****\n" },
+"The tall palms provide a ghostly canopy for the sandy ground covering.****\n", { 0 } },
 	{ "You are near the lagoon's inland finger.",
 	{ 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" },
+*There is a road +.**\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 241, 175, 173, 226, 82, 0, 0, 0 },
-"The road winds through a coconut grove here and continues - and -.**\n" },
+"The road winds through a coconut grove here and continues - and -.**\n", { 0 } },
 	{ "You are in the woods near the road.",
 	{ 226, 226, 175, 226, 82, 0, 0, 0 },
-"**The road is +.*\n" },
+"**The road is +.*\n", { 0 } },
 	{ "This is a beach?",
 	{ 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" },
+Let's go -.*\n", { 0 } },
 	{ "The trail is lost in the woods here.",
 	{ 241, 241, 179, 241, 84, 0, 0, 0 },
-"The trail goes **-.*\n" },
+"The trail goes **-.*\n", { 0 } },
 	{ "You are on the bank of a stream.",
 	{ 182, 0, 242, 180, 84, 0, 0, 0 },
-"The stream falls over several small boulders here and continues on **-.*\n" },
+"The stream falls over several small boulders here and continues on **-.*\n", { 0 } },
 	{ "You are just inside the cave.",
 	{ 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" },
+cave  continues -.**\n", { 0 } },
 	{ "You are just inside the cave entrance.",
 	{ 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" },
+runes, \"GSRF KDIRE NLVEMP!\".**\n", { 0 } },
 	{ "You are at the edge of a huge chasm.",
 	{ 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" },
+impossible to climb down.**  The canyon continues -.*\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 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" },
+shadows - and -.**\n", { 0 } },
 	{ "You are in a coconut palm grove near the road.",
 	{ 193, 233, 213, 192, 88, 0, 0, 0 },
-"***The road is +.\n" },
+"***The road is +.\n", { 0 } },
 	{ "You are at the clubhouse.",
 	{ 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" },
+electrocutes itself to the satisfaction of the audience.****\n", { 0 } },
 	{ "You are in the stables.",
 	{ 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" },
+part.****\n", { 0 } },
 	{ "You are in the old garage.",
 	{ 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" },
+roof. ****\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 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" },
+flowers and trees.** The road continues -. A walk leads -.\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 210, 199, 198, 220, 73, 0, 0, 0 },
-"The road runs - and -.**\n" },
+"The road runs - and -.**\n", { 0 } },
 	{ "You are in a coconut grove near the road.",
 	{ 234, 223, 234, 233, 88, 0, 0, 0 },
-"***The road is +.\n" },
+"***The road is +.\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 233, 225, 223, 226, 82, 0, 0, 0 },
-"The road continues - and -.**\n" },
+"The road continues - and -.**\n", { 0 } },
 	{ "The stream plummets over a cliff here.",
 	{ 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" },
+strong rope. ****\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 0, 0, 244, 238, 85, 0, 0, 0 },
-"**The road continues - and -.\n" },
+"**The road continues - and -.\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 0, 245, 0, 243, 88, 0, 0, 0 },
-"*The road continues -* and -.\n" },
+"*The road continues -* and -.\n", { 0 } },
 	{ "You are on a dirt road.",
 	{ 244, 234, 213, 136, 88, 0, 0, 0 },
-"The road goes -* and *-.\n" },
+"The road goes -* and *-.\n", { 0 } },
 	{ "You are in a low passage.",
 	{ 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" },
++.***\n", { 0 } },
 	{ "The walls are very close together here.",
 	{ 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" },
+a large room +.***\n", { 0 } },
 	{ "You are in the cathedral room.",
 	{ 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" },
+*I can see no passages leading out of this room.*** \n", { 0 } },
 	{ "You are walking through a very round tunnel.",
 	{ 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" },
+There is a large room +.**\n", { 0 } },
 	{ "You are in the cathedral anteroom.",
 	{ 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" },
+leads up.***  The cathedral room is -.\n", { 0 } },
 	{ "You are in a wide chamber.",
 	{ 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" },
+continues + and +.\n", { 0 } },
 	{ "You are at the top of a sloping passage.",
 	{ 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" },
+glisten with shiny minerals.**  A hallway here runs + and -.\n", { 0 } },
 	{ "You are in an elaborately tiled room.",
 	{ 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" },
+down.*\n", { 0 } },
 	{ "You are at a dead end.",
 	{ 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" },
+if we disturb them.**  The only exit is +.*\n", { 0 } },
 	{ "The tunnel is very low here.",
 	{ 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" },
+The crawlspace continues -.  The tunnel seems wider +.\n", { 0 } },
 	{ "This is the supply room.",
 	{ 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" },
+A tunnel leads off +.*\n", { 0 } },
 	{ "You have found a secret entrance to the catacombs",
 	{ 0, 0, 0, 0, 216, 1, 252, 0 },
-"Below is a wet, seaweed covered floor.  Above is a way out.****\n" },
+"Below is a wet, seaweed covered floor.  Above is a way out.****\n", { 0 } },
 	{ "You are in the catacombs.",
 	{ 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" },
+continue - and -.\n", { 0 } },
 	{ "You are crawling on your stomach.",
 	{ 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" },
+but I would just as soon go -.\n", { 0 } },
 	{ "You are in the Sepulcher.",
 	{ 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" },
+reads, \"Three he made and gave them to his daughters.\"****\n", { 0 } },
 	{ "The passage is wider here.",
 	{ 0, 0, 0, 259, 0, 0, 262, 0 },
-"A ladder goes down into darkness here.***  A small crawlspace goes -.\n" },
+"A ladder goes down into darkness here.***  A small crawlspace goes -.\n", { 0 } },
 	{ "You are at the bottom of a ladder.",
 	{ 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" },
+rickety wooden ladder.****\n", { 0 } },
 	{ "You are standing in several inches of water.",
 	{ 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" },
+be nearly at sea level.  A ladder leads up.****\n", { 0 } },
 	{ "The tunnel here is blocked by broken rocks.",
 	{ 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" },
+way through.*  The passage goes -.**\n", { 0 } },
 	{ "The tunnel is too flooded to proceed.",
 	{ 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" },
+rainbows of reflected light.***  Let's go -.\n", { 0 } },
 	{ "The mine is less flooded here.",
 	{ 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" },
+and topaz burst from the walls of the cave.  A passage goes -.***\n", { 0 } },
 	{ "You are inside the cave.",
 	{ 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" },
+The trail winds - and -.**\n", { 0 } },
 	{ "You are in a rather large chamber.",
 	{ 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" },
+down and +.\n", { 0 } },
 	{ "You are walking along the edge of a huge abyss.",
 	{ 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" },
+trail winds down.**  There is a tunnel -.*\n", { 0 } },
 	{ "You are on the edge of a huge abyss.",
 	{ 0, 0, 0, 0, 269, 1, 271, 0 },
-"The trail winds farther down.****\n" },
+"The trail winds farther down.****\n", { 0 } },
 	{ "You are winding your way along the abyss.",
 	{ 0, 0, 0, 0, 270, 1, 272, 0 },
-"The trail continues up and down.****\n" },
+"The trail continues up and down.****\n", { 0 } },
 	{ "You are on a wide shelf near the steamy abyss.",
 	{ 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" },
+abyss.  A trail winds up.*  A passageway leads -.**\n", { 0 } },
 	{ "You are in a wide tunnel leading to a fuming abyss.",
 	{ 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" },
+sparkling minerals.  The tunnel continues - and -.**\n", { 0 } },
 	{ "You are in a tunnel.",
 	{ 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" },
+The cave continues - and -.**\n", { 0 } },
 	{ "You are at the bottom of a pit.",
 	{ 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" },
+how we got here.****\n", { 0 } },
 };
Index: games/battlestar/parse.c
===================================================================
RCS file: /ftp/pub/DragonFly/dcvs/src/games/battlestar/parse.c,v
retrieving revision 1.3
diff -u -r1.3 parse.c
--- games/battlestar/parse.c	12 Nov 2003 14:53:52 -0000	1.3
+++ games/battlestar/parse.c	4 Aug 2006 15:59:59 -0000
@@ -39,10 +39,10 @@
 
 static int 	 hash  (const char *);
 static void 	 install (struct wlist *);
-struct wlist 	*lookup (const char *);
+static struct wlist 	*lookup (const char *);
 
 void
-wordinit()
+wordinit(void)
 {
 	struct wlist *w;
 
@@ -50,9 +50,8 @@
 		install(w);
 }
 
-int
-hash(s)
-	const char *s;
+static int
+hash(const char *s)
 {
 	int hashval = 0;
 
@@ -64,9 +63,8 @@
 	return hashval;
 }
 
-struct wlist *
-lookup(s)
-	const char *s;
+static struct wlist *
+lookup(const char *s)
 {
 	struct wlist *wp;
 
@@ -76,9 +74,8 @@
 	return NULL;
 }
 
-void
-install(wp)
-	struct wlist *wp;
+static void
+install(struct wlist *wp)
 {
 	int hashval;
 
@@ -91,7 +88,7 @@
 }
 
 void
-parse()
+parse(void)
 {
 	struct wlist *wp;
 	int n;
Index: games/battlestar/room.c
===================================================================
RCS file: /ftp/pub/DragonFly/dcvs/src/games/battlestar/room.c,v
retrieving revision 1.2
diff -u -r1.2 room.c
--- games/battlestar/room.c	17 Jun 2003 04:25:23 -0000	1.2
+++ games/battlestar/room.c	4 Aug 2006 15:59:59 -0000
@@ -38,7 +38,7 @@
 #include "externs.h"
 
 void
-writedes()
+writedes(void)
 {
 	int compass;
 	const char *p;
@@ -59,7 +59,7 @@
 }
 
 void
-printobjs()
+printobjs(void)
 {
 	unsigned int *p = location[position].objects;
 	int n;
@@ -71,8 +71,7 @@
 }
 
 void
-whichway(here)
-struct room here;
+whichway(struct room here)
 {
 	switch(direction) {
 
@@ -108,9 +107,7 @@
 }
 
 const char *
-truedirec(way, option)
-int way;
-unsigned int option;
+truedirec(int way, unsigned int option)
 {
 	switch(way) {
 
@@ -169,8 +166,7 @@
 }
 
 void
-newway(thisway)
-int thisway;
+newway(int thisway)
 {
 	switch(direction){
 
Index: games/battlestar/save.c
===================================================================
RCS file: /ftp/pub/DragonFly/dcvs/src/games/battlestar/save.c,v
retrieving revision 1.2
diff -u -r1.2 save.c
--- games/battlestar/save.c	17 Jun 2003 04:25:23 -0000	1.2
+++ games/battlestar/save.c	4 Aug 2006 15:59:59 -0000
@@ -35,16 +35,13 @@
  * $DragonFly: src/games/battlestar/save.c,v 1.2 2003/06/17 04:25:23 dillon Exp $
  */
 
-#include <sys/types.h>
 #include <sys/stat.h>
-#include <sys/param.h>			/* MAXPATHLEN */
 #include <fcntl.h>
-#include <stdlib.h>
 #include <err.h>
 #include "externs.h"
 
 void
-restore()
+restore(void)
 {
 	char *home;
 	char home1[MAXPATHLEN];
@@ -101,7 +98,7 @@
 }
 
 void
-save()
+save(void)
 {
 	struct stat sbuf;
 	char *home;
Index: games/battlestar/words.c
===================================================================
RCS file: /ftp/pub/DragonFly/dcvs/src/games/battlestar/words.c,v
retrieving revision 1.2
diff -u -r1.2 words.c
--- games/battlestar/words.c	17 Jun 2003 04:25:23 -0000	1.2
+++ games/battlestar/words.c	4 Aug 2006 15:59:59 -0000
@@ -38,169 +38,169 @@
 #include "externs.h"
 
 struct wlist wlist[] = {
-	{ "knife",	KNIFE,		OBJECT },
-	{ "sword",	SWORD,		NOUNS },
-	{ "scabbard",	SWORD,		OBJECT },
-	{ "two-handed",	TWO_HANDED,	OBJECT },
-	{ "cleaver",	CLEAVER,	OBJECT },
-	{ "broadsword",	BROAD,		OBJECT },
-	{ "mail",	MAIL,		OBJECT },
-	{ "coat",	MAIL,		OBJECT },
-	{ "helmet",	HELM,		OBJECT },
-	{ "shield",	SHIELD,		OBJECT },
-	{ "maid",	MAID,		OBJECT },
-	{ "maid's",	MAID,		OBJECT },
-	{ "body",	BODY,		NOUNS },
-	{ "viper",	VIPER,		OBJECT },
-	{ "lamp",	LAMPON,		OBJECT },
-	{ "lantern",	LAMPON,		OBJECT },
-	{ "shoes",	SHOES,		OBJECT },
-	{ "pajamas",	PAJAMAS,	OBJECT },
-	{ "robe",	ROBE,		OBJECT },
-	{ "amulet",	AMULET,		NOUNS },
-	{ "medallion",	MEDALION,	NOUNS },
-	{ "talisman",	TALISMAN,	NOUNS },
-	{ "woodsman",	DEADWOOD,	OBJECT },
-	{ "woodsman's",	DEADWOOD,	OBJECT },
-	{ "mallet",	MALLET,		OBJECT },
-	{ "laser",	LASER,		OBJECT },
-	{ "pistol",	LASER,		OBJECT },
-	{ "blaster",	LASER,		OBJECT },
-	{ "gun",	LASER,		OBJECT },
-	{ "goddess",	NORMGOD,	NOUNS },
-	{ "grenade",	GRENADE,	OBJECT },
-	{ "chain",	CHAIN,		OBJECT },
-	{ "rope",	ROPE,		OBJECT },
-	{ "levis",	LEVIS,		OBJECT },
-	{ "pants",	LEVIS,		OBJECT },
-	{ "mace",	MACE,		OBJECT },
-	{ "shovel",	SHOVEL,		OBJECT },
-	{ "halberd",	HALBERD,	OBJECT },
-	{ "compass",	COMPASS,	OBJECT },
-	{ "elf",	ELF,		OBJECT },
-	{ "coins",	COINS,		OBJECT },
-	{ "matches",	MATCHES,	OBJECT },
-	{ "match",	MATCHES,	OBJECT },
-	{ "book",	MATCHES,	OBJECT },
-	{ "man",	MAN,		NOUNS },
-	{ "papayas",	PAPAYAS,	OBJECT },
-	{ "pineapple",	PINEAPPLE,	OBJECT },
-	{ "kiwi",	KIWI,		OBJECT },
-	{ "coconuts",	COCONUTS,	OBJECT },
-	{ "mango",	MANGO,		OBJECT },
-	{ "ring",	RING,		OBJECT },
-	{ "potion",	POTION,		OBJECT },
-	{ "bracelet",	BRACELET,	OBJECT },
-	{ "timer",	TIMER,		NOUNS },
-	{ "bomb",	BOMB,		OBJECT },
-	{ "warhead",	BOMB,		OBJECT },
-	{ "girl",	NATIVE,		NOUNS },
-	{ "native",	NATIVE,		NOUNS },
-	{ "horse",	HORSE,		OBJECT },
-	{ "stallion",	HORSE,		OBJECT },
-	{ "car",	CAR,		OBJECT },
-	{ "volare",	CAR,		OBJECT },
-	{ "pot",	POT,		OBJECT },
-	{ "jewels",	POT,		OBJECT },
-	{ "bar",	BAR,		OBJECT },
-	{ "diamond",	BLOCK,		OBJECT },
-	{ "block",	BLOCK,		OBJECT },
-	{ "up",		UP,		VERB },
-	{ "u",		UP,		VERB },
-	{ "down",	DOWN,		VERB },
-	{ "d",		DOWN,		VERB },
-	{ "ahead",	AHEAD,		VERB },
-	{ "a",		AHEAD,		VERB },
-	{ "back",	BACK,		VERB },
-	{ "b",		BACK,		VERB },
-	{ "right",	RIGHT,		VERB },
-	{ "r",		RIGHT,		VERB },
-	{ "left",	LEFT,		VERB },
-	{ "l",		LEFT,		VERB },
-	{ "take",	TAKE,		VERB },
-	{ "get",	TAKE,		VERB },
-	{ "use",	USE,		VERB },
-	{ "look",	LOOK,		VERB },
-	{ "lo",		LOOK,		VERB },
-	{ "quit",	QUIT,		VERB },
-	{ "q",		QUIT,		VERB },
-	{ "su",		SU,		VERB },
-	{ "drop",	DROP,		VERB },
-	{ "draw",	DRAW,		VERB },
-	{ "pull",	DRAW,		VERB },
-	{ "carry",	DRAW,		VERB },
-	{ "wear",	WEARIT,		VERB },
-	{ "sheathe",	WEARIT,		VERB },
-	{ "put",	PUT,		VERB },
-	{ "buckle",	PUT,		VERB },
-	{ "strap",	PUT,		VERB },
-	{ "tie",	PUT,		VERB },
-	{ "inven",	INVEN,		VERB },
-	{ "i",		INVEN,		VERB },
-	{ "everything",	EVERYTHING,	OBJECT },
-	{ "all",	EVERYTHING,	OBJECT },
-	{ "and",	AND,		CONJ },
-	{ "kill",	KILL,		VERB },
-	{ "fight",	KILL,		VERB },
-	{ "ravage",	RAVAGE,		VERB },
-	{ "rape",	RAVAGE,		VERB },
-	{ "undress",	UNDRESS,	VERB },
-	{ "throw",	THROW,		VERB },
-	{ "launch",	LAUNCH,		VERB },
-	{ "land",	LANDIT,		VERB },
-	{ "light",	LIGHT,		VERB },
-	{ "strike",	LIGHT,		VERB },
-	{ "follow",	FOLLOW,		VERB },
-	{ "chase",	FOLLOW,		VERB },
-	{ "kiss",	KISS,		VERB },
-	{ "love",	LOVE,		VERB },
-	{ "fuck",	LOVE,		VERB },
-	{ "give",	GIVE,		VERB },
-	{ "smite",	SMITE,		VERB },
-	{ "attack",	SMITE,		VERB },
-	{ "swing",	SMITE,		VERB },
-	{ "stab",	SMITE,		VERB },
-	{ "slice",	SMITE,		VERB },
-	{ "cut",	SMITE,		VERB },
-	{ "hack",	SMITE,		VERB },
-	{ "shoot",	SHOOT,		VERB },
-	{ "blast",	SHOOT,		VERB },
-	{ "on",		ON,		PREPS },
-	{ "off",	OFF,		PREPS },
-	{ "time",	TIME,		VERB },
-	{ "sleep",	SLEEP,		VERB },
-	{ "dig",	DIG,		VERB },
-	{ "eat",	EAT,		VERB },
-	{ "swim",	SWIM,		VERB },
-	{ "drink",	DRINK,		VERB },
-	{ "door",	DOOR,		NOUNS },
-	{ "save",	SAVE,		VERB },
-	{ "ride",	RIDE,		VERB },
-	{ "mount",	RIDE,		VERB },
-	{ "drive",	DRIVE,		VERB },
-	{ "start",	DRIVE,		VERB },
-	{ "score",	SCORE,		VERB },
-	{ "points",	SCORE,		VERB },
-	{ "bury",	BURY,		VERB },
-	{ "jump",	JUMP,		VERB },
-	{ "kick",	KICK,		VERB },
-	{ "kerosene",	0,		ADJS },
-	{ "plumed",	0,		ADJS },
-	{ "ancient",	0,		ADJS },
-	{ "golden",	0,		ADJS },
-	{ "gold",	0,		ADJS },
-	{ "ostrich",	0,		ADJS },
-	{ "rusty",	0,		ADJS },
-	{ "old",	0,		ADJS },
-	{ "dented",	0,		ADJS },
-	{ "blue",	0,		ADJS },
-	{ "purple",	0,		ADJS },
-	{ "kingly",	0,		ADJS },
-	{ "the",	0,		ADJS },
-	{ "climb",	0,		ADJS },
-	{ "move",	0,		ADJS },
-	{ "make",	0,		ADJS },
-	{ "to",		0,		ADJS },
-	{ 0,		0,		0 }
+	{ "knife",	KNIFE,		OBJECT,		NULL },
+	{ "sword",	SWORD,		NOUNS,		NULL },
+	{ "scabbard",	SWORD,		OBJECT,		NULL },
+	{ "fine",	SWORD,		OBJECT,		NULL },
+	{ "two-handed",	TWO_HANDED,	OBJECT,		NULL },
+	{ "cleaver",	CLEAVER,	OBJECT,		NULL },
+	{ "broadsword",	BROAD,		OBJECT,		NULL },
+	{ "mail",	MAIL,		OBJECT,		NULL },
+	{ "coat",	MAIL,		OBJECT,		NULL },
+	{ "helmet",	HELM,		OBJECT,		NULL },
+	{ "shield",	SHIELD,		OBJECT,		NULL },
+	{ "maid",	MAID,		OBJECT,		NULL },
+	{ "maid's",	MAID,		OBJECT,		NULL },
+	{ "body",	BODY,		NOUNS,		NULL },
+	{ "viper",	VIPER,		OBJECT,		NULL },
+	{ "lamp",	LAMPON,		OBJECT,		NULL },
+	{ "lantern",	LAMPON,		OBJECT,		NULL },
+	{ "shoes",	SHOES,		OBJECT,		NULL },
+	{ "pajamas",	PAJAMAS,	OBJECT,		NULL },
+	{ "robe",	ROBE,		OBJECT,		NULL },
+	{ "amulet",	AMULET,		NOUNS,		NULL },
+	{ "medallion",	MEDALION,	NOUNS,		NULL },
+	{ "talisman",	TALISMAN,	NOUNS,		NULL },
+	{ "woodsman",	DEADWOOD,	OBJECT,		NULL },
+	{ "woodsman's",	DEADWOOD,	OBJECT,		NULL },
+	{ "mallet",	MALLET,		OBJECT,		NULL },
+	{ "laser",	LASER,		OBJECT,		NULL },
+	{ "pistol",	LASER,		OBJECT,		NULL },
+	{ "blaster",	LASER,		OBJECT,		NULL },
+	{ "gun",	LASER,		OBJECT,		NULL },
+	{ "goddess",	NORMGOD,	NOUNS,		NULL },
+	{ "grenade",	GRENADE,	OBJECT,		NULL },
+	{ "chain",	CHAIN,		OBJECT,		NULL },
+	{ "rope",	ROPE,		OBJECT,		NULL },
+	{ "levis",	LEVIS,		OBJECT,		NULL },
+	{ "pants",	LEVIS,		OBJECT,		NULL },
+	{ "mace",	MACE,		OBJECT,		NULL },
+	{ "shovel",	SHOVEL,		OBJECT,		NULL },
+	{ "halberd",	HALBERD,	OBJECT,		NULL },
+	{ "compass",	COMPASS,	OBJECT,		NULL },
+	{ "elf",	ELF,		OBJECT,		NULL },
+	{ "coins",	COINS,		OBJECT,		NULL },
+	{ "matches",	MATCHES,	OBJECT,		NULL },
+	{ "match",	MATCHES,	OBJECT,		NULL },
+	{ "book",	MATCHES,	OBJECT,		NULL },
+	{ "man",	MAN,		NOUNS,		NULL },
+	{ "papayas",	PAPAYAS,	OBJECT,		NULL },
+	{ "pineapple",	PINEAPPLE,	OBJECT,		NULL },
+	{ "kiwi",	KIWI,		OBJECT,		NULL },
+	{ "coconuts",	COCONUTS,	OBJECT,		NULL },
+	{ "mango",	MANGO,		OBJECT,		NULL },
+	{ "ring",	RING,		OBJECT,		NULL },
+	{ "potion",	POTION,		OBJECT,		NULL },
+	{ "bracelet",	BRACELET,	OBJECT,		NULL },
+	{ "timer",	TIMER,		NOUNS,		NULL },
+	{ "bomb",	BOMB,		OBJECT,		NULL },
+	{ "warhead",	BOMB,		OBJECT,		NULL },
+	{ "girl",	NATIVE,		NOUNS,		NULL },
+	{ "native",	NATIVE,		NOUNS,		NULL },
+	{ "horse",	HORSE,		OBJECT,		NULL },
+	{ "stallion",	HORSE,		OBJECT,		NULL },
+	{ "car",	CAR,		OBJECT,		NULL },
+	{ "volare",	CAR,		OBJECT,		NULL },
+	{ "pot",	POT,		OBJECT,		NULL },
+	{ "jewels",	POT,		OBJECT,		NULL },
+	{ "bar",	BAR,		OBJECT,		NULL },
+	{ "diamond",	BLOCK,		OBJECT,		NULL },
+	{ "block",	BLOCK,		OBJECT,		NULL },
+	{ "up",		UP,		VERB,		NULL },
+	{ "u",		UP,		VERB,		NULL },
+	{ "down",	DOWN,		VERB,		NULL },
+	{ "d",		DOWN,		VERB,		NULL },
+	{ "ahead",	AHEAD,		VERB,		NULL },
+	{ "a",		AHEAD,		VERB,		NULL },
+	{ "back",	BACK,		VERB,		NULL },
+	{ "b",		BACK,		VERB,		NULL },
+	{ "right",	RIGHT,		VERB,		NULL },
+	{ "r",		RIGHT,		VERB,		NULL },
+	{ "left",	LEFT,		VERB,		NULL },
+	{ "l",		LEFT,		VERB,		NULL },
+	{ "take",	TAKE,		VERB,		NULL },
+	{ "get",	TAKE,		VERB,		NULL },
+	{ "use",	USE,		VERB,		NULL },
+	{ "look",	LOOK,		VERB,		NULL },
+	{ "lo",		LOOK,		VERB,		NULL },
+	{ "quit",	QUIT,		VERB,		NULL },
+	{ "q",		QUIT,		VERB,		NULL },
+	{ "su",		SU,		VERB,		NULL },
+	{ "drop",	DROP,		VERB,		NULL },
+	{ "draw",	DRAW,		VERB,		NULL },
+	{ "pull",	DRAW,		VERB,		NULL },
+	{ "carry",	DRAW,		VERB,		NULL },
+	{ "wear",	WEARIT,		VERB,		NULL },
+	{ "sheathe",	WEARIT,		VERB,		NULL },
+	{ "put",	PUT,		VERB,		NULL },
+	{ "buckle",	PUT,		VERB,		NULL },
+	{ "strap",	PUT,		VERB,		NULL },
+	{ "tie",	PUT,		VERB,		NULL },
+	{ "inven",	INVEN,		VERB,		NULL },
+	{ "i",		INVEN,		VERB,		NULL },
+	{ "everything",	EVERYTHING,	OBJECT,		NULL },
+	{ "all",	EVERYTHING,	OBJECT,		NULL },
+	{ "and",	AND,		CONJ,		NULL },
+	{ "kill",	KILL,		VERB,		NULL },
+	{ "fight",	KILL,		VERB,		NULL },
+	{ "ravage",	RAVAGE,		VERB,		NULL },
+	{ "rape",	RAVAGE,		VERB,		NULL },
+	{ "undress",	UNDRESS,	VERB,		NULL },
+	{ "throw",	THROW,		VERB,		NULL },
+	{ "launch",	LAUNCH,		VERB,		NULL },
+	{ "land",	LANDIT,		VERB,		NULL },
+	{ "light",	LIGHT,		VERB,		NULL },
+	{ "strike",	LIGHT,		VERB,		NULL },
+	{ "follow",	FOLLOW,		VERB,		NULL },
+	{ "chase",	FOLLOW,		VERB,		NULL },
+	{ "kiss",	KISS,		VERB,		NULL },
+	{ "love",	LOVE,		VERB,		NULL },
+	{ "fuck",	LOVE,		VERB,		NULL },
+	{ "give",	GIVE,		VERB,		NULL },
+	{ "smite",	SMITE,		VERB,		NULL },
+	{ "attack",	SMITE,		VERB,		NULL },
+	{ "swing",	SMITE,		VERB,		NULL },
+	{ "stab",	SMITE,		VERB,		NULL },
+	{ "slice",	SMITE,		VERB,		NULL },
+	{ "cut",	SMITE,		VERB,		NULL },
+	{ "hack",	SMITE,		VERB,		NULL },
+	{ "shoot",	SHOOT,		VERB,		NULL },
+	{ "blast",	SHOOT,		VERB,		NULL },
+	{ "on",		ON,		PREPS,		NULL },
+	{ "off",	OFF,		PREPS,		NULL },
+	{ "time",	TIME,		VERB,		NULL },
+	{ "sleep",	SLEEP,		VERB,		NULL },
+	{ "dig",	DIG,		VERB,		NULL },
+	{ "eat",	EAT,		VERB,		NULL },
+	{ "swim",	SWIM,		VERB,		NULL },
+	{ "drink",	DRINK,		VERB,		NULL },
+	{ "door",	DOOR,		NOUNS,		NULL },
+	{ "save",	SAVE,		VERB,		NULL },
+	{ "ride",	RIDE,		VERB,		NULL },
+	{ "mount",	RIDE,		VERB,		NULL },
+	{ "drive",	DRIVE,		VERB,		NULL },
+	{ "start",	DRIVE,		VERB,		NULL },
+	{ "score",	SCORE,		VERB,		NULL },
+	{ "points",	SCORE,		VERB,		NULL },
+	{ "bury",	BURY,		VERB,		NULL },
+	{ "jump",	JUMP,		VERB,		NULL },
+	{ "kick",	KICK,		VERB,		NULL },
+	{ "kerosene",	0,		ADJS,		NULL },
+	{ "plumed",	0,		ADJS,		NULL },
+	{ "ancient",	0,		ADJS,		NULL },
+	{ "golden",	0,		ADJS,		NULL },
+	{ "gold",	0,		ADJS,		NULL },
+	{ "ostrich",	0,		ADJS,		NULL },
+	{ "rusty",	0,		ADJS,		NULL },
+	{ "old",	0,		ADJS,		NULL },
+	{ "dented",	0,		ADJS,		NULL },
+	{ "blue",	0,		ADJS,		NULL },
+	{ "purple",	0,		ADJS,		NULL },
+	{ "kingly",	0,		ADJS,		NULL },
+	{ "the",	0,		ADJS,		NULL },
+	{ "climb",	0,		ADJS,		NULL },
+	{ "move",	0,		ADJS,		NULL },
+	{ "make",	0,		ADJS,		NULL },
+	{ "to",		0,		ADJS,		NULL },
+	{ 0,		0,		0,		NULL }
 };
Attachment:
pgp00004.pgp
-------------- next part --------------
A non-text attachment was scrubbed...
Name: pgp00004.pgp
Type: application/octet-stream
Size: 189 bytes
Desc: "Description: PGP signature"
URL: <http://lists.dragonflybsd.org/pipermail/submit/attachments/20060804/6d7fe62b/attachment-0012.obj>


More information about the Submit mailing list