summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/beam.cc22
1 files changed, 19 insertions, 3 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index 9633e18119..5330fabb34 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -3705,12 +3705,28 @@ void bolt::affect_player_enchantment()
break;
}
- mpr("Pain shoots through your body!");
-
if (aux_source.empty())
aux_source = "by nerve-wracking pain";
- internal_ouch(damage.roll());
+ if (name.find("agony") != std::string::npos)
+ {
+ if (you.res_negative_energy()) // Agony has no effect with rN.
+ {
+ mpr("You are unaffected.");
+ break;
+ }
+
+ mpr("Your body is wracked with pain!");
+
+ // On the player, Agony acts like single-target torment.
+ internal_ouch(std::max(0, you.hp / 2 - 1));
+ }
+ else
+ {
+ mpr("Pain shoots through your body!");
+
+ internal_ouch(damage.roll());
+ }
obvious_effect = true;
break;