xref: /netbsd-src/games/battlestar/nightobjs.c (revision e5aeb4ea46bbe6a0522c39af347be4ddcd733a80)
1 /*	$NetBSD: nightobjs.c,v 1.9 2003/08/07 09:37:03 agc Exp $	*/
2 
3 /*
4  * Copyright (c) 1983, 1993
5  *	The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. Neither the name of the University nor the names of its contributors
16  *    may be used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  */
31 
32 #include <sys/cdefs.h>
33 #ifndef lint
34 #if 0
35 static char sccsid[] = "@(#)nightobjs.c	8.2 (Berkeley) 4/28/95";
36 #else
37 __RCSID("$NetBSD: nightobjs.c,v 1.9 2003/08/07 09:37:03 agc Exp $");
38 #endif
39 #endif				/* not lint */
40 
41 #include "extern.h"
42 
43 const struct objs nightobjs[] = {
44 	{218, PAJAMAS},
45 	{235, NATIVE},
46 	{92, PAPAYAS},
47 	{92, PINEAPPLE},
48 	{92, KIWI},
49 	{92, MANGO},
50 	{92, NATIVE},
51 	{92, MAN},
52 	{181, LAMPON},
53 	{236, LAMPON},
54 	{92, LAMPON},
55 	{216, WOODSMAN},
56 	{216, DEADWOOD},
57 	{216, MALLET},
58 	{168, WOODSMAN},
59 	{168, DEADWOOD},
60 	{168, MALLET},
61 	{170, WOODSMAN},
62 	{170, DEADWOOD},
63 	{170, MALLET},
64 	{124, SHIELD},
65 	{124, HALBERD},
66 	{124, ELF},
67 	{144, SHIELD},
68 	{144, HALBERD},
69 	{144, ELF},
70 	{113, SHIELD},
71 	{113, HALBERD},
72 	{113, ELF},
73 	{161, SHIELD},
74 	{161, HALBERD},
75 	{161, ELF},
76 	{169, SHIELD},
77 	{169, HALBERD},
78 	{169, ELF},
79 	{182, SHIELD},
80 	{182, HALBERD},
81 	{182, ELF},
82 	{198, SHIELD},
83 	{198, HALBERD},
84 	{198, ELF},
85 	{212, SHIELD},
86 	{212, HALBERD},
87 	{212, ELF},
88 	{216, SHIELD},
89 	{216, HALBERD},
90 	{216, ELF},
91 	{226, SHIELD},
92 	{226, HALBERD},
93 	{226, ELF},
94 	{228, SHIELD},
95 	{228, HALBERD},
96 	{228, ELF},
97 	{68, CYLON},
98 	{144, SHOVEL},
99 	{249, FOOT},
100 	{250, FOOT},
101 	{93, PAPAYAS},
102 	{0, 0}
103 };
104