Home | History | Annotate | Line # | Download | only in battlestar
      1 /*	$NetBSD: dayobjs.c,v 1.9 2003/08/07 09:37:01 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[] = "@(#)dayobjs.c	8.2 (Berkeley) 4/28/95";
     36 #else
     37 __RCSID("$NetBSD: dayobjs.c,v 1.9 2003/08/07 09:37:01 agc 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