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