summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.h
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-26 11:11:03 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-10-26 11:11:03 +0000
commitfa909934b0e8289bf954c143e806cf6d42583c53 (patch)
tree7e8523c6c3890c1827d615993d030172205af150 /crawl-ref/source/religion.h
parenteaf0d8123d3841efd48c81c306317e3040582fd3 (diff)
downloadcrawl-ref-fa909934b0e8289bf954c143e806cf6d42583c53.tar.gz
crawl-ref-fa909934b0e8289bf954c143e806cf6d42583c53.zip
Orcs may surrender to Beogh worshippers when beaten up. Adjusted experience gain for monsters, duration of orc battle cries and removed use of invocations to determine the success of spontaneous orc conversion.
Fixed monsters getting bad experience values. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2586 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/religion.h')
-rw-r--r--crawl-ref/source/religion.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/religion.h b/crawl-ref/source/religion.h
index 0a11005dfc..26dad22080 100644
--- a/crawl-ref/source/religion.h
+++ b/crawl-ref/source/religion.h
@@ -19,6 +19,7 @@
#define MAX_PIETY 200
class actor;
+class monsters;
bool is_priest_god(god_type god);
void simple_god_message( const char *event, god_type which_deity = GOD_NO_GOD );
@@ -46,8 +47,9 @@ void divine_retribution(god_type god);
bool beogh_water_walk();
void beogh_idol_revenge();
+void beogh_convert_orc(monsters *orc);
bool ely_destroy_weapons();
bool trog_burn_books();
-
bool tso_stab_safe_monster(const actor *act);
+
#endif