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