summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/effects.h
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-19 21:59:56 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-19 21:59:56 +0000
commitf2e1abc584a801b0ebf3c595d63752f5eda7708b (patch)
tree5660c08bc834b0287238d4f5e5eba5d9d1e8c91f /crawl-ref/source/effects.h
parent96edac1d649d50f9cfacf317c88007783657c55f (diff)
downloadcrawl-ref-f2e1abc584a801b0ebf3c595d63752f5eda7708b.tar.gz
crawl-ref-f2e1abc584a801b0ebf3c595d63752f5eda7708b.zip
Expand immolation and cleansing flame as well, so that monsters may be
able to use scrolls of immolation or holy word in the future. Also, add a power parameter to immolation, so that it can be reused for an exploding Tome of Destruction. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8599 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/effects.h')
-rw-r--r--crawl-ref/source/effects.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/crawl-ref/source/effects.h b/crawl-ref/source/effects.h
index 5b17185d33..2249572fe5 100644
--- a/crawl-ref/source/effects.h
+++ b/crawl-ref/source/effects.h
@@ -115,9 +115,11 @@ int torment_player(int pow, int caster);
int torment_monsters(coord_def where, int pow, int caster,
actor *attacker = NULL);
-void immolation(int caster, bool known = false);
+void immolation(int pow, int caster, coord_def where, bool known = false,
+ actor *attacker = NULL);
-void cleansing_flame(int pow, int caster);
+void cleansing_flame(int pow, int caster, coord_def where,
+ actor *attacker = NULL);
// called from: debug
void change_labyrinth(bool msg = false);