summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells4.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-31 14:13:33 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-31 14:13:33 +0000
commita56b04d711300277c13776e111c0ee6b236b4406 (patch)
treeab45a3de3780d34c0169b053f56a2adb54f0bad9 /crawl-ref/source/spells4.cc
parent26a647035b1c5b4c24595b84d2b9b19cb5da36bc (diff)
downloadcrawl-ref-a56b04d711300277c13776e111c0ee6b236b4406.tar.gz
crawl-ref-a56b04d711300277c13776e111c0ee6b236b4406.zip
Modify manual and readme to really list the new doc names, and key
settings. Add vampires to manual (still needs reference to aptitudes etc.!) and reorder classes according to the new job order. Re-introduce 't' as a synonym for 'f' in targetting, but don't document it anymore. (It's only in convenience to older players, anyway.) Also, change default wand inscription from !z to !Z, but use a hack to check for either. Oh, and restrict Blood Evaporate effect to Stinking cloud, Fire and Steam (the latter two like !Rage). git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3981 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spells4.cc')
-rw-r--r--crawl-ref/source/spells4.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/crawl-ref/source/spells4.cc b/crawl-ref/source/spells4.cc
index 1c8a86d255..90ccd5ac9e 100644
--- a/crawl-ref/source/spells4.cc
+++ b/crawl-ref/source/spells4.cc
@@ -1654,6 +1654,11 @@ bool cast_evaporate(int pow, bolt& beem, int potion)
beem.flavour = BEAM_POTION_STEAM;
break;
+ case POT_BLOOD:
+ case POT_BLOOD_COAGULATED:
+ if (one_chance_in(3))
+ break; // stinking cloud
+ // deliberate fall through
case POT_BERSERK_RAGE:
beem.flavour = (coinflip() ? BEAM_POTION_FIRE : BEAM_POTION_STEAM);
break;