summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godwrath.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2009-12-27 15:19:32 +0100
committerAdam Borowski <kilobyte@angband.pl>2009-12-27 15:24:47 +0100
commite42132c99bf63b213388404676a54c6610bd613c (patch)
treeaced383df340ae0699cc71fe9ef3a4f6ccefaef5 /crawl-ref/source/godwrath.cc
parentf10addfc13d3b174e4de2529978db2cfce4e5bb1 (diff)
downloadcrawl-ref-e42132c99bf63b213388404676a54c6610bd613c.tar.gz
crawl-ref-e42132c99bf63b213388404676a54c6610bd613c.zip
Before a better solution is decided on, slash TSO holy revenge by a factor of 4.
This is roughly half of maxhp for vampires and mummies -- still harsh after a hard battle, especially when there's more holies around.
Diffstat (limited to 'crawl-ref/source/godwrath.cc')
-rw-r--r--crawl-ref/source/godwrath.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/godwrath.cc b/crawl-ref/source/godwrath.cc
index a94b0ec2c8..e3e87198ca 100644
--- a/crawl-ref/source/godwrath.cc
+++ b/crawl-ref/source/godwrath.cc
@@ -1249,7 +1249,8 @@ static void _tso_blasts_cleansing_flame(const char *message)
simple_god_message(" blasts you with cleansing flame!",
GOD_SHINING_ONE);
- cleansing_flame(20 + (you.experience_level * 7) / 3,
+ // damage is 2d(pow), *3/2 for undead and demonspawn
+ cleansing_flame(5 + (you.experience_level * 7) / 12,
CLEANSING_FLAME_TSO, you.pos());
}
}