From 97c59acb0b3b64059e86f17ed0706c9e27fc2fe8 Mon Sep 17 00:00:00 2001 From: ezsh <ezsh.junk@gmail.com> Date: Mon, 31 Jan 2022 21:30:09 +0100 Subject: [PATCH] Fix deaths from string implant removal Make health costs for removing breast string imaplants 20 times smaller fixing the obvious mistake. Fixes #3875. --- js/003-data/medicine/implants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/003-data/medicine/implants.js b/js/003-data/medicine/implants.js index 834307edbe0..2a2cd7e51b7 100644 --- a/js/003-data/medicine/implants.js +++ b/js/003-data/medicine/implants.js @@ -102,7 +102,7 @@ App.Data.Medicine.sizingImplants = { }, healthCostFactor: { installation: 0.2, - removal: 0.1 + removal: 0.005 }, drain: { limit: 600, // yes, can't be drained dry -- GitLab