summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-other.h
diff options
context:
space:
mode:
authorJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-08-22 02:18:31 +0200
committerJohanna Ploog <j-p-e-g@users.sourceforge.net>2010-08-22 13:59:53 +0200
commit2af507a7653a0a2da55c7a0e2ed75bcfe402e475 (patch)
tree8523f86461828a14970e96a76187136e276ef97d /crawl-ref/source/spl-other.h
parent8feb443b24a534b6cf902aab5f6a1516e2b7b79f (diff)
downloadcrawl-ref-2af507a7653a0a2da55c7a0e2ed75bcfe402e475.tar.gz
crawl-ref-2af507a7653a0a2da55c7a0e2ed75bcfe402e475.zip
Of the remaining spells, move non-enchantment ones into spl-other.cc.
Diffstat (limited to 'crawl-ref/source/spl-other.h')
-rw-r--r--crawl-ref/source/spl-other.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/crawl-ref/source/spl-other.h b/crawl-ref/source/spl-other.h
new file mode 100644
index 0000000000..cf737d6299
--- /dev/null
+++ b/crawl-ref/source/spl-other.h
@@ -0,0 +1,18 @@
+#ifndef SPL_OTHER_H
+#define SPL_OTHER_H
+
+void cast_cure_poison(int pow);
+
+bool cast_sublimation_of_blood(int pow);
+bool cast_death_channel(int pow, god_type god = GOD_NO_GOD);
+bool recall(int type_recalled);
+
+void cast_phase_shift(int pow);
+bool cast_passwall(const coord_def& delta, int pow);
+void cast_intoxicate(int pow);
+bool cast_fulsome_distillation(int pow, bool check_range = true);
+void remove_condensation_shield();
+void cast_condensation_shield(int pow);
+void cast_stoneskin(int pow);
+
+#endif