1/*	$OpenBSD: dayobjs.c,v 1.7 2009/10/27 23:59:24 deraadt 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#include "extern.h"
34
35const struct objs dayobjs[] = {
36	{ 236,	HORSE },
37	{ 237,	CAR },
38	{ 275,	POT },
39	{ 275,	BAR },
40	{ 275,	BLOCK },
41	{ 260,	COINS },
42	{ 266,	DARK },
43	{ 235,	TIMER },
44	{ 51,	51 },
45	{ 59,	51 },
46	{ 48,	51 },
47	{ 66,	52 },
48	{ 65,	52 },
49	{ 19,	BOMB },
50	{ 167,	NATIVE },
51	{ 21,	KNIFE },
52	{ 30,	KNIFE },
53	{ 30,	CLEAVER },
54	{ 260,	SWORD },
55	{ 70,	LAND },
56	{ 71,	LAND },
57	{ 72,	LAND },
58	{ 73,	LAND },
59	{ 74,	LAND },
60	{ 75,	LAND },
61	{ 76,	LAND },
62	{ 77,	LAND },
63	{ 78,	LAND },
64	{ 79,	LAND },
65	{ 81,	LAND },
66	{ 82,	LAND },
67	{ 83,	LAND },
68	{ 84,	LAND },
69	{ 85,	LAND },
70	{ 86,	LAND },
71	{ 87,	LAND },
72	{ 88,	LAND },
73	{ 90,	LAND },
74	{ 95,	LAND },
75	{ 96,	LAND },
76	{ 97,	LAND },
77	{ 99,	LAND },
78	{ 100,	LAND },
79	{ 104,	LAND },
80	{ 172,	WOODSMAN },
81	{ 172,	DEADWOOD },
82	{ 172,	MALLET },
83	{ 146,	ELF },
84	{ 146,	HALBERD },
85	{ 146,	SHIELD },
86	{ 190,	TWO_HANDED },
87	{ 190,	POTION },
88	{ 142,	BROAD },
89	{ 258,	MAIL },
90	{ 258,	HELM },
91	{ 21,	MAID },
92	{ 7,	VIPER },
93	{ 216,	SHOES },
94	{ 64,	CYLON },
95	{ 36,	CYLON },
96	{ 49,	CYLON },
97	{ 8,	ROBE },
98	{ 13,	AMULET },
99	{ 20,	LASER },
100	{ 126,	BATHGOD },
101	{ 26,	GRENADE },
102	{ 256,	GRENADE },
103	{ 237,	CHAIN },
104	{ 237,	COMPASS },
105	{ 218,	LEVIS },
106	{ 164,	MACE },
107	{ 137,	SHOVEL },
108	{ 11,	COINS },
109	{ 24,	MATCHES },
110	{ 235,	MATCHES },
111	{ 93,	MAN },
112	{ 109,	PAPAYAS },
113	{ 110,	PINEAPPLE },
114	{ 152,	PINEAPPLE },
115	{ 154,	PINEAPPLE },
116	{ 111,	KIWI },
117	{ 149,	MANGO },
118	{ 112,	COCONUTS },
119	{ 150,	COCONUTS },
120	{ 151,	COCONUTS },
121	{ 153,	COCONUTS },
122	{ 192,	COCONUTS },
123	{ 204,	COCONUTS },
124	{ 207,	COCONUTS },
125	{ 209,	COCONUTS },
126	{ 213,	COCONUTS },
127	{ 240,	COCONUTS },
128	{ 218,	RING },
129	{ 130,	BRACELET },
130	{ 93,	GIRL },
131	{ 268,	LAMPON },
132	{ 0,	0 }
133};
134