summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/enum.h
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-02-05 12:05:42 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-02-05 12:05:42 +0000
commit4ea301d9910996cd3ef97a56b3cba86fd95685bb (patch)
tree6e874ba47e6d6b7da7c5f8349ce5da6db0b7515b /crawl-ref/source/enum.h
parentb1dfd6626d73db44b352a800237921cf9aeeb0ef (diff)
downloadcrawl-ref-4ea301d9910996cd3ef97a56b3cba86fd95685bb.tar.gz
crawl-ref-4ea301d9910996cd3ef97a56b3cba86fd95685bb.zip
[1632567] Greedy explore now tries to do the Right Thing with mimics.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@915 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/enum.h')
-rw-r--r--crawl-ref/source/enum.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index 456626204f..15fb845e5c 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -2306,8 +2306,7 @@ enum mon_flight_type
FLY_LEVITATION // doesn't require physical effort
};
-// Note: These are currently stored in chars!!!
-// Need to fix struct monsters and the savefile if you want more.
+// These are now saved in an unsigned long in the monsters struct.
enum monster_flag_type
{
MF_CREATED_FRIENDLY = 0x01, // no benefit from killing
@@ -2318,7 +2317,10 @@ enum monster_flag_type
MF_INTERESTING = 0x20, // Player finds monster interesting
MF_SEEN = 0x40, // Player already seen monster
- MF_DIVINE_PROTECTION = 0x80 // Monster has divine protection.
+ MF_DIVINE_PROTECTION = 0x80, // Monster has divine protection.
+
+ MF_KNOWN_MIMIC = 0x100 // Mimic that has taken a swing at the PC,
+ // or that the player has inspected with ?
};
enum mon_dam_level_type