summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-01-10 13:52:18 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-01-10 13:52:18 +0000
commit56367110a570d3cd9e50e5dbcd55c936c9208080 (patch)
treebc5caeb1a8b9abe139bb253c5fc4a492bc14dcf4 /crawl-ref
parentf4f7cd233455efb1c57829e73388a89d06559e8a (diff)
downloadcrawl-ref-56367110a570d3cd9e50e5dbcd55c936c9208080.tar.gz
crawl-ref-56367110a570d3cd9e50e5dbcd55c936c9208080.zip
Increase the damage done to undead by weapons of holy wrath to match the
damage done to demons, and tweak the brand description to fit this change. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3241 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/describe.cc4
-rw-r--r--crawl-ref/source/fight.cc3
2 files changed, 2 insertions, 5 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index e853a1cd0c..7484b9c8a3 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -781,8 +781,8 @@ static std::string describe_weapon( const item_def &item, bool verbose)
break;
case SPWPN_HOLY_WRATH:
description += "It has been blessed by the Shining One "
- "to harm undead and cause great damage to "
- "the unholy creatures of Hell or Pandemonium. ";
+ "to cause great damage to the undead and the unholy "
+ "creatures of Hell or Pandemonium. ";
break;
case SPWPN_ELECTROCUTION:
description += "Occasionally upon striking a foe "
diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc
index 29b87eea6f..ebec677f8f 100644
--- a/crawl-ref/source/fight.cc
+++ b/crawl-ref/source/fight.cc
@@ -1867,9 +1867,6 @@ bool melee_attack::apply_damage_brand()
switch (defender->holiness())
{
case MH_UNDEAD:
- special_damage = 1 + random2(damage_done);
- break;
-
case MH_DEMONIC:
special_damage = 1 + (random2(damage_done * 15) / 10);
break;