summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells1.h
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-11-22 08:41:20 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-11-22 08:41:20 +0000
commit1d0f57cbceb778139ca215cc4fcfd1584951f6dd (patch)
treecafd60c944c51fcce778aa5d6912bc548c518339 /crawl-ref/source/spells1.h
parent6f5e187a9e5cd348296dba2fd89d2e206e775a01 (diff)
downloadcrawl-ref-1d0f57cbceb778139ca215cc4fcfd1584951f6dd.tar.gz
crawl-ref-1d0f57cbceb778139ca215cc4fcfd1584951f6dd.zip
Merged stone_soup r15:451 into trunk.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@452 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spells1.h')
-rw-r--r--crawl-ref/source/spells1.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/crawl-ref/source/spells1.h b/crawl-ref/source/spells1.h
index dc98a1b133..64481d53bb 100644
--- a/crawl-ref/source/spells1.h
+++ b/crawl-ref/source/spells1.h
@@ -50,7 +50,7 @@ char cast_lesser_healing(void);
/* ***********************************************************************
* called from: ability - spell
* *********************************************************************** */
-char cast_healing(int power);
+int cast_healing(int power);
// last updated 24may2000 {dlb}
/* ***********************************************************************
@@ -63,25 +63,25 @@ void big_cloud(char clouds, char cl_x, char cl_y, int pow, int size);
/* ***********************************************************************
* called from: acr (WIZARD only) - item_use - spell
* *********************************************************************** */
-void blink(void);
+int blink(void);
/* ***********************************************************************
* called from: spell
* *********************************************************************** */
-void cast_big_c(int pow, char cty);
+int cast_big_c(int pow, char cty);
void cast_confusing_touch(int power);
void cast_cure_poison(int mabil);
int allowed_deaths_door_hp(void);
void cast_deaths_door(int pow);
-void cast_fire_storm(int powc);
+int cast_fire_storm(int powc);
bool cast_revivification(int power);
void cast_berserk(void);
void cast_ring_of_flames(int power);
-void conjure_flame(int pow);
+int conjure_flame(int pow);
void extension(int pow);
-void fireball(int power);
-void stinking_cloud(int pow);
+int fireball(int power);
+int stinking_cloud(int pow);
void abjuration(int pow);
// last updated 24may2000 {dlb}