DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T c

⟦50c59f667⟧ TextFile

    Length: 791 (0x317)
    Types: TextFile
    Names: »cvorcs.h«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/General/Crystal/cvorcs.h« 

TextFile

/* cvorcs.h
 *		define the monster array
 ***********************************************************************/

struct monster {
	int iloc, dw, dseen ;	
	struct cvloc *dloc, *oloc;
	} ;

extern struct monster orcs[] ;

#define	ORC(o)	(&(orcs[(o)]))
#define	IGRENDL	0
#define	GRENDL	ORC(IGRENDL)
#define	IDRAGON	1
#define	PUFF	ORC(IDRAGON)
#define	IKING	2
#define	ARTHUR	ORC(IKING)
#define	IDJINN	3
#define	JEANNIE	ORC(IDJINN)
#define	IKOBOLD	4
#define	SLASHER	ORC(IKOBOLD)
#define	IBEAR	5
#define	YOGI	ORC(IBEAR)
#define	IUNICRN	6
#define	EINHORN	ORC(IUNICRN)
#define	IPRIEST	7
#define PRIEST	ORC(IPRIEST)
#define	IBALROG	8
#define	BALLY	ORC(IBALROG)
#define	MINDWR	ORC(9)
#define	MAXDWR	ORC(14)
#define	IPIRAT	15
#define	PIRATE	(&(orcs[IPIRAT]))
#define	ISELF	16
#define	ME	ORC(ISELF)