Source:NetHack 3.2.0/prop.h

From NetHackWiki
Revision as of 09:20, 4 March 2008 by Kernigh bot (talk | contribs) (NetHack 3.2.0/prop.h moved to Source:NetHack 3.2.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.2.0. To link to a particular line, write [[NetHack 3.2.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.2	92/11/01	*/
2.    /* Copyright (c) 1989 Mike Threepoint				  */
3.    /* NetHack may be freely redistributed.  See license for details. */
4.    
5.    #ifndef PROP_H
6.    #define PROP_H
7.    
8.    #define FIRE_RES		1
9.    #define COLD_RES		2
10.   #define SLEEP_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 STUNNED			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 HALLUC_RES		34
42.   #define FUMBLING		35
43.   #define JUMPING			36
44.   #define WWALKING		37
45.   #define HUNGER			38
46.   #define GLIB			39
47.   #define REFLECTING		40
48.   #define LIFESAVED		41
49.   #define ANTIMAGIC		42
50.   #define DISPLACED		43
51.   #define CLAIRVOYANT		44
52.   #define VOMITING		45
53.   #define ENERGY_REGENERATION	46
54.   #define MAGICAL_BREATHING	47
55.   #define HALF_SPDAM		48
56.   #define HALF_PHDAM		49
57.   #define LAST_PROP		(HALF_PHDAM)		/* the last property */
58.   
59.   #endif /* PROP_H */