Source:NetHack 3.0.0/prop.h

From NetHackWiki
Revision as of 05:19, 4 March 2008 by Kernigh bot (talk | contribs) (NetHack 3.0.0/prop.h moved to Source:NetHack 3.0.0/prop.h: Robot: moved page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Below is the full text to prop.h from the source code of NetHack 3.0.0. To link to a particular line, write [[NetHack 3.0.0/prop.h#line123]], for example.

Warning! This is the source code from an old release. For the latest release, see Source code

The NetHack General Public License applies to screenshots, source code and other content from NetHack.

This content was modified from the original NetHack source code distribution (by splitting up NetHack content between wiki pages, and possibly further editing). See the page history for a list of who changed it, and on what dates.

1.    /*	SCCS Id: @(#)prop.h	3.0	89/06/24
2.    /* NetHack may be freely redistributed.  See license for details. */
3.    /* Copyright (c) 1989 Mike Threepoint */
4.    
5.    #ifndef PROP_H
6.    #define PROP_H
7.    
8.    #define FIRE_RES		1
9.    #define SLEEP_RES		2
10.   #define COLD_RES		3
11.   #define DISINT_RES		4
12.   #define SHOCK_RES		5
13.   #define POISON_RES		6
14.   #define ADORNED 		7
15.   #define REGENERATION		8
16.   #define SEARCHING		9
17.   #define SEE_INVIS		10
18.   #define INVIS			11
19.   #define TELEPORT		12
20.   #define TELEPORT_CONTROL	13
21.   #define POLYMORPH		14
22.   #define POLYMORPH_CONTROL	15
23.   #define LEVITATION		16
24.   #define STEALTH 		17
25.   #define AGGRAVATE_MONSTER	18
26.   #define CONFLICT		19
27.   #define PROTECTION		20
28.   #define PROT_FROM_SHAPE_CHANGERS	21
29.   #define WARNING 		22
30.   #define TELEPAT 		23
31.   #define FAST			24
32.   #define STUN			25
33.   #define CONFUSION		26
34.   #define SICK			27
35.   #define BLINDED 		28
36.   #define SLEEPING		29
37.   #define WOUNDED_LEGS		30
38.   #define STONED			31
39.   #define STRANGLED		32
40.   #define HALLUC			33
41.   #define FUMBLING		34
42.   #define JUMPING 		35
43.   #define WWALKING		36
44.   #define HUNGER			37
45.   #define GLIB			38
46.   #define REFLECTING		39
47.   #define LIFESAVED		40
48.   #define ANTIMAGIC		41
49.   #define DISPLACED		42
50.   #define CLAIRVOYANT		43
51.   #define LAST_PROP		(CLAIRVOYANT)		/* the last property */
52.   
53.   #endif /* PROP_H /**/