File: spell.h

package info (click to toggle)
jnethack 1.1.5-21
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 18,000 kB
  • ctags: 14,991
  • sloc: ansic: 163,971; asm: 2,412; yacc: 2,002; lex: 412; sh: 179; makefile: 58
file content (18 lines) | stat: -rw-r--r-- 454 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*	SCCS Id: @(#)spell.h	3.2	95/06/01	*/
/* Copyright 1986, M. Stephenson				  */
/* NetHack may be freely redistributed.  See license for details. */

#ifndef SPELL_H
#define SPELL_H

struct spell {
	short	sp_id;			/* spell id (== object.otyp) */
	xchar	sp_lev;			/* power level */
	xchar	sp_uses;		/* uses left to spell */
};

/* levels of memory destruction with a scroll of amnesia */
#define ALL_MAP		0x1
#define ALL_SPELLS	0x2

#endif /* SPELL_H */