summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/enum.h
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-14 20:47:04 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-14 20:47:04 +0000
commitb6c69a86519c6bb8a69ca7074350cdc496968ac6 (patch)
treef4b2b9bd70c0691c9b37bb8235d6ff2987439f3f /crawl-ref/source/enum.h
parentf03320c66fd006bd233cdca9490adfa9179339d3 (diff)
downloadcrawl-ref-b6c69a86519c6bb8a69ca7074350cdc496968ac6.tar.gz
crawl-ref-b6c69a86519c6bb8a69ca7074350cdc496968ac6.zip
Consolidate beam and cloud handling routines a bit, and allow clouds to
destroy items on the floor where applicable. Also allow grey smoke as a random potion effect from Evaporate. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5040 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/enum.h')
-rw-r--r--crawl-ref/source/enum.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index 00bde3dfc4..48453c10e3 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -251,6 +251,7 @@ enum beam_type // beam[].flavour
BEAM_POTION_FIRE,
BEAM_POTION_COLD,
BEAM_POTION_BLACK_SMOKE,
+ BEAM_POTION_GREY_SMOKE,
BEAM_POTION_BLUE_SMOKE,
BEAM_POTION_PURP_SMOKE,
BEAM_POTION_RANDOM,
@@ -388,12 +389,12 @@ enum cloud_type
CLOUD_STINK,
CLOUD_COLD,
CLOUD_POISON,
+ CLOUD_BLACK_SMOKE,
CLOUD_GREY_SMOKE,
CLOUD_BLUE_SMOKE,
CLOUD_PURP_SMOKE,
CLOUD_STEAM,
CLOUD_MIASMA,
- CLOUD_BLACK_SMOKE,
CLOUD_MIST,
CLOUD_RANDOM = 98,
CLOUD_DEBUGGING = 99 // 99: used once as 'nonexistent cloud' {dlb}