summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monplace.h
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-07 23:35:16 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-07 23:35:16 +0000
commit7988fe7d7d775fd45616f146b0b2d3ff5e3c8d6d (patch)
treead7d1b28f4925a35bb42636cf346a6f972964d00 /crawl-ref/source/monplace.h
parent733294517b6c98b2ce17f3191140390a41e384e7 (diff)
downloadcrawl-ref-7988fe7d7d775fd45616f146b0b2d3ff5e3c8d6d.tar.gz
crawl-ref-7988fe7d7d775fd45616f146b0b2d3ff5e3c8d6d.zip
Clean up summoning of random demons and random holy beings again.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5560 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/monplace.h')
-rw-r--r--crawl-ref/source/monplace.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/crawl-ref/source/monplace.h b/crawl-ref/source/monplace.h
index 7886c295f1..b5456dc491 100644
--- a/crawl-ref/source/monplace.h
+++ b/crawl-ref/source/monplace.h
@@ -77,6 +77,13 @@ enum demon_class_type
DEMON_RANDOM // any of the above
};
+enum holy_being_class_type
+{
+ HOLY_BEING_ANGEL, // 0: Angel
+ HOLY_BEING_DAEVA, // 1: Daeva
+ HOLY_BEING_RANDOM // any of the above
+};
+
enum dragon_class_type
{
DRAGON_LIZARD,
@@ -268,7 +275,7 @@ bool empty_surrounds( int emx, int emy, dungeon_feature_type spc_wanted,
* *********************************************************************** */
monster_type summon_any_demon(demon_class_type dct);
-monster_type summon_any_holy_being();
+monster_type summon_any_holy_being(holy_being_class_type hbct);
monster_type summon_any_dragon(dragon_class_type dct);