]> granicus.if.org Git - nethack/commitdiff
Boost HP of some golems
authorPasi Kallinen <paxed@alt.org>
Thu, 20 May 2021 16:25:11 +0000 (19:25 +0300)
committerPasi Kallinen <paxed@alt.org>
Thu, 20 May 2021 16:25:16 +0000 (19:25 +0300)
Idea from SporkHack by Derek Ray, but values are different.

doc/fixes37.0
src/makemon.c

index c70d80a40222528d1e805365e1c4877d356823c8..c8ef846a79b012f80496d432275154feecdf3994 100644 (file)
@@ -526,6 +526,7 @@ change touch of death from instadeath to maxhp reduction and damage
 dying from being level-drained below level 1 killed hero without saying so
        and jumped straight to "do you want your possessions identified?"
 conflict will now consider your charisma and requires line of sight
+boost hit points of some golems
 
 
 Fixes to 3.7.0-x Problems that Were Exposed Via git Repository
index 9066292b9736fd4946a681b7e7b03bc211b0d2fe..b2900db9b6914aa9e0fc0c6c8fe64a0704dde1f1 100644 (file)
@@ -1991,19 +1991,19 @@ golemhp(int type)
     case PM_LEATHER_GOLEM:
         return 40;
     case PM_GOLD_GOLEM:
-        return 40;
+        return 60;
     case PM_WOOD_GOLEM:
         return 50;
     case PM_FLESH_GOLEM:
         return 40;
     case PM_CLAY_GOLEM:
-        return 50;
+        return 70;
     case PM_STONE_GOLEM:
-        return 60;
+        return 100;
     case PM_GLASS_GOLEM:
-        return 60;
-    case PM_IRON_GOLEM:
         return 80;
+    case PM_IRON_GOLEM:
+        return 120;
     default:
         return 0;
     }