xref: /original-bsd/games/trek/externs.c (revision a95f03a8)
1 /*
2  * Copyright (c) 1980 Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #ifndef lint
9 static char sccsid[] = "@(#)externs.c	5.4 (Berkeley) 06/01/90";
10 #endif /* not lint */
11 
12 # include	"trek.h"
13 
14 /*
15 **	global variable definitions
16 */
17 
18 struct device	Device[NDEV] =
19 {
20 	"warp drive",		"Scotty",
21 	"S.R. scanners",	"Scotty",
22 	"L.R. scanners",	"Scotty",
23 	"phasers",		"Sulu",
24 	"photon tubes",		"Sulu",
25 	"impulse engines",	"Scotty",
26 	"shield control",	"Sulu",
27 	"computer",		"Spock",
28 	"subspace radio",	"Uhura",
29 	"life support",		"Scotty",
30 	"navigation system",	"Chekov",
31 	"cloaking device",	"Scotty",
32 	"transporter",		"Scotty",
33 	"shuttlecraft",		"Scotty",
34 	"*ERR 14*",		"Nobody",
35 	"*ERR 15*",		"Nobody"
36 };
37 
38 char	*Systemname[NINHAB] =
39 {
40 	"ERROR",
41 	"Talos IV",
42 	"Rigel III",
43 	"Deneb VII",
44 	"Canopus V",
45 	"Icarus I",
46 	"Prometheus II",
47 	"Omega VII",
48 	"Elysium I",
49 	"Scalos IV",
50 	"Procyon IV",
51 	"Arachnid I",
52 	"Argo VIII",
53 	"Triad III",
54 	"Echo IV",
55 	"Nimrod III",
56 	"Nemisis IV",
57 	"Centarurus I",
58 	"Kronos III",
59 	"Spectros V",
60 	"Beta III",
61 	"Gamma Tranguli VI",
62 	"Pyris III",
63 	"Triachus",
64 	"Marcus XII",
65 	"Kaland",
66 	"Ardana",
67 	"Stratos",
68 	"Eden",
69 	"Arrikis",
70 	"Epsilon Eridani IV",
71 	"Exo III"
72 };
73