xref: /original-bsd/games/trek/externs.c (revision e188a54c)
1 /*
2  * Copyright (c) 1980 Regents of the University of California.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted
6  * provided that the above copyright notice and this paragraph are
7  * duplicated in all such forms and that any documentation,
8  * advertising materials, and other materials related to such
9  * distribution and use acknowledge that the software was developed
10  * by the University of California, Berkeley.  The name of the
11  * University may not be used to endorse or promote products derived
12  * from this software without specific prior written permission.
13  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
16  */
17 
18 #ifndef lint
19 static char sccsid[] = "@(#)externs.c	5.3 (Berkeley) 06/18/88";
20 #endif /* not lint */
21 
22 # include	"trek.h"
23 
24 /*
25 **	global variable definitions
26 */
27 
28 struct device	Device[NDEV] =
29 {
30 	"warp drive",		"Scotty",
31 	"S.R. scanners",	"Scotty",
32 	"L.R. scanners",	"Scotty",
33 	"phasers",		"Sulu",
34 	"photon tubes",		"Sulu",
35 	"impulse engines",	"Scotty",
36 	"shield control",	"Sulu",
37 	"computer",		"Spock",
38 	"subspace radio",	"Uhura",
39 	"life support",		"Scotty",
40 	"navigation system",	"Chekov",
41 	"cloaking device",	"Scotty",
42 	"transporter",		"Scotty",
43 	"shuttlecraft",		"Scotty",
44 	"*ERR 14*",		"Nobody",
45 	"*ERR 15*",		"Nobody"
46 };
47 
48 char	*Systemname[NINHAB] =
49 {
50 	"ERROR",
51 	"Talos IV",
52 	"Rigel III",
53 	"Deneb VII",
54 	"Canopus V",
55 	"Icarus I",
56 	"Prometheus II",
57 	"Omega VII",
58 	"Elysium I",
59 	"Scalos IV",
60 	"Procyon IV",
61 	"Arachnid I",
62 	"Argo VIII",
63 	"Triad III",
64 	"Echo IV",
65 	"Nimrod III",
66 	"Nemisis IV",
67 	"Centarurus I",
68 	"Kronos III",
69 	"Spectros V",
70 	"Beta III",
71 	"Gamma Tranguli VI",
72 	"Pyris III",
73 	"Triachus",
74 	"Marcus XII",
75 	"Kaland",
76 	"Ardana",
77 	"Stratos",
78 	"Eden",
79 	"Arrikis",
80 	"Epsilon Eridani IV",
81 	"Exo III"
82 };
83