summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fprop.h
diff options
context:
space:
mode:
authorCharles Otto <ottochar@gmail.com>2010-01-24 19:11:06 -0500
committerCharles Otto <ottochar@gmail.com>2010-01-24 19:11:06 -0500
commite3598367220caa147bcebc29620d6a586f0f2f27 (patch)
treed934ae66d8eee536af07e0755fbc81e8c9a3de65 /crawl-ref/source/fprop.h
parentc7db6edd3515e79a9978ca6c90784c647c0a07ad (diff)
downloadcrawl-ref-e3598367220caa147bcebc29620d6a586f0f2f27.tar.gz
crawl-ref-e3598367220caa147bcebc29620d6a586f0f2f27.zip
Preliminarily add FPROP_SPORES and make giant spores leave a trail with it
Diffstat (limited to 'crawl-ref/source/fprop.h')
-rw-r--r--crawl-ref/source/fprop.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/fprop.h b/crawl-ref/source/fprop.h
index 88e5fab10b..d5ea8d0c93 100644
--- a/crawl-ref/source/fprop.h
+++ b/crawl-ref/source/fprop.h
@@ -19,13 +19,16 @@ enum feature_property_type
FPROP_NO_TELE_INTO = FPROP_NO_RTELE_INTO | FPROP_NO_CTELE_INTO,
// Squares that the tide should not affect.
- FPROP_NO_TIDE = (1 << 10)
+ FPROP_NO_TIDE = (1 << 10),
+
+ FPROP_SPORES = (1 << 11)
};
bool is_sanctuary(const coord_def& p);
bool is_bloodcovered(const coord_def& p);
bool is_tide_immune(const coord_def &p);
+bool is_sporecovered(const coord_def & p);
feature_property_type str_to_fprop(const std::string &str);
#endif