summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/enum.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/enum.h')
-rw-r--r--crawl-ref/source/enum.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index 4c19fd10f4..9cb755a6d1 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -169,6 +169,13 @@ enum activity_interrupt_payload_type
AIP_HP_LOSS
};
+enum actor_type
+{
+ ACT_NONE = -1,
+ ACT_PLAYER,
+ ACT_MONSTER
+};
+
enum ammunition_description_type
{
DAMMO_ORCISH = 3, // 3
@@ -1835,6 +1842,7 @@ enum mons_class_flags
M_UNIQUE = (1<<20), // monster is a unique
M_CLAWS = (1<<21), // Chops off hydra heads in combat.
+ M_ACID_SPLASH = (1<<22), // Passive acid splash when hit.
M_SPECIAL_ABILITY = (1<<26), // XXX: eventually make these spells?