From f7867134d3d5cb341370f8ac335d263005c4e895 Mon Sep 17 00:00:00 2001 From: Darshan Shaligram Date: Mon, 18 Jan 2010 13:34:25 +0530 Subject: Scale berserk maxhp also by 1.5 (hp was 1.5x, maxhp was 2x). --- crawl-ref/source/player.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc index 7163906662..c5a5cf6a5a 100644 --- a/crawl-ref/source/player.cc +++ b/crawl-ref/source/player.cc @@ -4536,7 +4536,7 @@ int get_real_hp(bool trans, bool rotted) // Being berserk makes you resistant to damage. I don't know why. if (trans && you.berserk()) - hitp *= 2; + hitp = hitp * 3 / 2; if (trans) { -- cgit v1.2.3