]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - battlestar/globals.c
Remove extra blank line in copyright.
[bsdgames-darwin.git] / battlestar / globals.c
index 1b3fc71cefd88d4ad7efd02f6e8c65b33bb78366..2b00f9afdc80ce1aeaaeedbeb7c46df57f0be578 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: globals.c,v 1.6 1997/10/11 02:07:23 lukem Exp $        */
+/*     $NetBSD: globals.c,v 1.8 1999/07/14 17:42:13 hubertf Exp $      */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)globals.c  8.2 (Berkeley) 4/28/95";
 #else
-__RCSID("$NetBSD: globals.c,v 1.6 1997/10/11 02:07:23 lukem Exp $");
+__RCSID("$NetBSD: globals.c,v 1.8 1999/07/14 17:42:13 hubertf Exp $");
 #endif
 #endif                         /* not lint */
 
@@ -47,12 +47,12 @@ __RCSID("$NetBSD: globals.c,v 1.6 1997/10/11 02:07:23 lukem Exp $");
 int     WEIGHT = MAXWEIGHT;
 int     CUMBER = MAXCUMBER;
 
-char   *objdes[NUMOFOBJECTS] = {
+const char   *const objdes[NUMOFOBJECTS] = {
        "There is a knife here",
        "There is an exquisitely crafted sword and scabbard here.",
        0,                      /* can land from here */
        "There is a fierce woodsman here brandishing a heavy mallet.",
-       "There is an unweildly two-handed sword here.",
+       "There is an unwieldy two-handed sword here.",
        "There is a bloody meat cleaver here.",
        "A rusty broadsword is lying here.",
        "There is an ancient coat of finely woven mail here.",
@@ -96,7 +96,7 @@ char   *objdes[NUMOFOBJECTS] = {
        "There is a colorful pink potion in a small crystal vial here.",
        "A gold bracelet is on the ground here.",
        "A swarthy woman with stern features pulls you aside from the crowd,\n'I must talk to you -- but not here.  Meet me at midnight in the gardens.'",
-       "The swarthy woman has been awaiting you anxiousy. 'I must warn you that the\nIsland has anticipated your Quest.  You will not be welcomed. The Darkness is\nstrong where you must search.  Seek not the shadows save only at night, for\nthen are they the weakest.  In the mountains far from here a canyon winds\nwith ferns and streams and forgotten vines.  There you must go. Take this\nrope.'",
+       "The swarthy woman has been awaiting you anxiously. 'I must warn you that the\nIsland has anticipated your Quest.  You will not be welcomed. The Darkness is\nstrong where you must search.  Seek not the shadows save only at night, for\nthen are they the weakest.  In the mountains far from here a canyon winds\nwith ferns and streams and forgotten vines.  There you must go. Take this\nrope.'",
        "Out from the shadows a figure leaps!  His black cape swirls around, and he\nholds a laser sword at your chest.  'So, you have come to fulfill the Quest.\nHa! Your weapons are no match for me!'",
        "An old timer with one eye missing and no money for a drink sits at the bar.",
        "You are flying through an asteroid field!",
@@ -115,7 +115,7 @@ char   *objdes[NUMOFOBJECTS] = {
 
 };
 
-char   *objsht[NUMOFOBJECTS] = {
+const char   *const objsht[NUMOFOBJECTS] = {
        "knife",
        "fine sword",
        0,
@@ -182,7 +182,7 @@ char   *objsht[NUMOFOBJECTS] = {
        "diamond block"
 };
 
-char   *ouch[NUMOFINJURIES] = {
+const char   *const ouch[NUMOFINJURIES] = {
        "some minor abrasions",
        "some minor lacerations",
        "a minor puncture wound",
@@ -198,7 +198,7 @@ char   *ouch[NUMOFINJURIES] = {
        "a broken neck"
 };
 
-int     objwt[NUMOFOBJECTS] = {
+const int     objwt[NUMOFOBJECTS] = {
        1, 5, 0, 10, 15, 2, 10, 10,
        3, 5, 50, 2500, 2, 1, 100, 1,
        2, 1, 1, 1, 60, 10, 5, 0,
@@ -209,7 +209,7 @@ int     objwt[NUMOFOBJECTS] = {
        50, 45, 45, 100, 2000, 30, 20, 10
 };
 
-int     objcumber[NUMOFOBJECTS] = {
+const int     objcumber[NUMOFOBJECTS] = {
        1, 5, 0, 150, 10, 1, 5, 2,
        2, 1, 5, 10, 1, 1, 10, 1,
        1, 1, 1, 1, 7, 5, 4, 0,