OSDN Git Service

Merge branch 'master' of git.osdn.net:/gitroot/hengband/hengband
[hengband/hengband.git] / src / monster-race / race-flags9.h
1 #pragma once
2
3 typedef enum race_flags9 {
4         RF9_DROP_CORPSE = 0x00000001,
5     RF9_DROP_SKELETON = 0x00000002,
6     RF9_EAT_BLIND = 0x00000004,
7     RF9_EAT_CONF = 0x00000008,
8     RF9_EAT_MANA = 0x00000010,
9     RF9_EAT_NEXUS = 0x00000020,
10     RF9_EAT_SLEEP = 0x00000040,
11     RF9_EAT_BERSERKER = 0x00000080,
12     RF9_EAT_ACIDIC = 0x00000100,
13     RF9_EAT_SPEED = 0x00000200,
14     RF9_EAT_CURE = 0x00000400,
15     RF9_EAT_FIRE_RES = 0x00000800,
16     RF9_EAT_COLD_RES = 0x00001000,
17     RF9_EAT_ACID_RES = 0x00002000,
18     RF9_EAT_ELEC_RES = 0x00004000,
19     RF9_EAT_POIS_RES = 0x00008000,
20     RF9_EAT_INSANITY = 0x00010000,
21     RF9_EAT_DRAIN_EXP = 0x00020000,
22     RF9_EAT_POISONOUS = 0x00040000,
23     RF9_EAT_GIVE_STR = 0x00080000,
24     RF9_EAT_GIVE_INT = 0x00100000,
25     RF9_EAT_GIVE_WIS = 0x00200000,
26     RF9_EAT_GIVE_DEX = 0x00400000,
27     RF9_EAT_GIVE_CON = 0x00800000,
28     RF9_EAT_GIVE_CHR = 0x01000000,
29     RF9_EAT_LOSE_STR = 0x02000000,
30     RF9_EAT_LOSE_INT = 0x04000000,
31     RF9_EAT_LOSE_WIS = 0x08000000,
32     RF9_EAT_LOSE_DEX = 0x10000000,
33     RF9_EAT_LOSE_CON = 0x20000000,
34     RF9_EAT_LOSE_CHR = 0x40000000,
35     RF9_EAT_DRAIN_MANA = 0x80000000,
36 } race_flags9;