xref: /openbsd/games/battlestar/dayobjs.c (revision 7a09557b)
1 /*	$OpenBSD: dayobjs.c,v 1.6 2003/06/03 03:01:38 millert Exp $	*/
2 /*	$NetBSD: dayobjs.c,v 1.3 1995/03/21 15:07:22 cgd Exp $	*/
3 
4 /*
5  * Copyright (c) 1983, 1993
6  *	The Regents of the University of California.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. Neither the name of the University nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  */
32 
33 #ifndef lint
34 #if 0
35 static char sccsid[] = "@(#)dayobjs.c	8.2 (Berkeley) 4/28/95";
36 #else
37 static char rcsid[] = "$OpenBSD: dayobjs.c,v 1.6 2003/06/03 03:01:38 millert Exp $";
38 #endif
39 #endif /* not lint */
40 
41 #include "extern.h"
42 
43 const struct objs dayobjs[] = {
44 	{ 236,	HORSE },
45 	{ 237,	CAR },
46 	{ 275,	POT },
47 	{ 275,	BAR },
48 	{ 275,	BLOCK },
49 	{ 260,	COINS },
50 	{ 266,	DARK },
51 	{ 235,	TIMER },
52 	{ 51,	51 },
53 	{ 59,	51 },
54 	{ 48,	51 },
55 	{ 66,	52 },
56 	{ 65,	52 },
57 	{ 19,	BOMB },
58 	{ 167,	NATIVE },
59 	{ 21,	KNIFE },
60 	{ 30,	KNIFE },
61 	{ 30,	CLEAVER },
62 	{ 260,	SWORD },
63 	{ 70,	LAND },
64 	{ 71,	LAND },
65 	{ 72,	LAND },
66 	{ 73,	LAND },
67 	{ 74,	LAND },
68 	{ 75,	LAND },
69 	{ 76,	LAND },
70 	{ 77,	LAND },
71 	{ 78,	LAND },
72 	{ 79,	LAND },
73 	{ 81,	LAND },
74 	{ 82,	LAND },
75 	{ 83,	LAND },
76 	{ 84,	LAND },
77 	{ 85,	LAND },
78 	{ 86,	LAND },
79 	{ 87,	LAND },
80 	{ 88,	LAND },
81 	{ 90,	LAND },
82 	{ 95,	LAND },
83 	{ 96,	LAND },
84 	{ 97,	LAND },
85 	{ 99,	LAND },
86 	{ 100,	LAND },
87 	{ 104,	LAND },
88 	{ 172,	WOODSMAN },
89 	{ 172,	DEADWOOD },
90 	{ 172,	MALLET },
91 	{ 146,	ELF },
92 	{ 146,	HALBERD },
93 	{ 146,	SHIELD },
94 	{ 190,	TWO_HANDED },
95 	{ 190,	POTION },
96 	{ 142,	BROAD },
97 	{ 258,	MAIL },
98 	{ 258,	HELM },
99 	{ 21,	MAID },
100 	{ 7,	VIPER },
101 	{ 216,	SHOES },
102 	{ 64,	CYLON },
103 	{ 36,	CYLON },
104 	{ 49,	CYLON },
105 	{ 8,	ROBE },
106 	{ 13,	AMULET },
107 	{ 20,	LASER },
108 	{ 126,	BATHGOD },
109 	{ 26,	GRENADE },
110 	{ 256,	GRENADE },
111 	{ 237,	CHAIN },
112 	{ 237,	COMPASS },
113 	{ 218,	LEVIS },
114 	{ 164,	MACE },
115 	{ 137,	SHOVEL },
116 	{ 11,	COINS },
117 	{ 24,	MATCHES },
118 	{ 235,	MATCHES },
119 	{ 93,	MAN },
120 	{ 109,	PAPAYAS },
121 	{ 110,	PINEAPPLE },
122 	{ 152,	PINEAPPLE },
123 	{ 154,	PINEAPPLE },
124 	{ 111,	KIWI },
125 	{ 149,	MANGO },
126 	{ 112,	COCONUTS },
127 	{ 150,	COCONUTS },
128 	{ 151,	COCONUTS },
129 	{ 153,	COCONUTS },
130 	{ 192,	COCONUTS },
131 	{ 204,	COCONUTS },
132 	{ 207,	COCONUTS },
133 	{ 209,	COCONUTS },
134 	{ 213,	COCONUTS },
135 	{ 240,	COCONUTS },
136 	{ 218,	RING },
137 	{ 130,	BRACELET },
138 	{ 93,	GIRL },
139 	{ 268,	LAMPON },
140 	{ 0,	0 }
141 };
142