summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/misc.h
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-03 19:37:35 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-03 19:37:35 +0000
commitc5e23e5f34cef7260911c2b82ebb5708e5a5f9b2 (patch)
tree073c09f1bb79ec8bc66b02fa1017d9bff7d4041f /crawl-ref/source/misc.h
parentf965ee9d68e6b4d674897117f1711b1d439b3689 (diff)
downloadcrawl-ref-c5e23e5f34cef7260911c2b82ebb5708e5a5f9b2.tar.gz
crawl-ref-c5e23e5f34cef7260911c2b82ebb5708e5a5f9b2.zip
Add one more skeleton change: Allow vampires' bottling blood from
corpses to leave skeletons 25% of the time, as butchering them does. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8176 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/misc.h')
-rw-r--r--crawl-ref/source/misc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/misc.h b/crawl-ref/source/misc.h
index 4f2a5ffddc..9eb46eaf11 100644
--- a/crawl-ref/source/misc.h
+++ b/crawl-ref/source/misc.h
@@ -39,7 +39,8 @@ void pick_up_blood_potions_stack( item_def &stack, int quant );
bool can_bottle_blood_from_corpse( int mons_type );
int num_blood_potions_from_corpse( int mons_class, int chunk_type = -1 );
-void turn_corpse_into_blood_potions ( item_def &item );
+void turn_corpse_into_blood_potions (item_def &item);
+void turn_corpse_into_skeleton_and_blood_potions(item_def &item);
void split_potions_into_decay( int obj, int amount, bool need_msg = true );
bool victim_can_bleed(int montype);