summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/areas.h
diff options
context:
space:
mode:
authorSteve Melenchuk <smelenchuk@gmail.com>2012-08-15 12:48:51 -0600
committerSteve Melenchuk <smelenchuk@gmail.com>2012-08-15 12:48:51 -0600
commitb08aebe72ee46d028d054bf0ef8a67eb596db6d6 (patch)
tree2e0561b9c9cce51a8b820cc9f8930c3208a67bba /crawl-ref/source/areas.h
parentd62a275fae9e89ecaeb1a1d79d3830bbb0ebe8c0 (diff)
downloadcrawl-ref-b08aebe72ee46d028d054bf0ef8a67eb596db6d6.tar.gz
crawl-ref-b08aebe72ee46d028d054bf0ef8a67eb596db6d6.zip
QUAD DAMAGE emits an Orb-style glow while in effect.
It's the same radius, only all blue instead of mutagenic.
Diffstat (limited to 'crawl-ref/source/areas.h')
-rw-r--r--crawl-ref/source/areas.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/areas.h b/crawl-ref/source/areas.h
index 1d0795d775..b28003125d 100644
--- a/crawl-ref/source/areas.h
+++ b/crawl-ref/source/areas.h
@@ -11,6 +11,7 @@ enum area_centre_type
AREA_ORB,
AREA_UMBRA,
AREA_SUPPRESSION,
+ AREA_QUAD,
};
void invalidate_agrid(bool recheck_new = false);
@@ -35,6 +36,9 @@ bool liquefied(const coord_def& p, bool check_actual = true);
// Is it enlightened by the orb?
bool orb_haloed(const coord_def& p);
+// ...or by a quad damage?
+bool quad_haloed(const coord_def& p);
+
// ...or endarkened by an umbra?
bool umbraed(const coord_def& p);