From aeb868fa42039d14e095e95a5610d7ecba154b02 Mon Sep 17 00:00:00 2001 From: Anu <anulithic@gmail.com> Date: Mon, 15 Jan 2024 21:51:09 -0800 Subject: [PATCH] Small implants should hinder growth less than large implants, not more --- src/endWeek/shared/physicalDevelopment.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/endWeek/shared/physicalDevelopment.js b/src/endWeek/shared/physicalDevelopment.js index 9f58cae5d3c..c8b6d504ee2 100644 --- a/src/endWeek/shared/physicalDevelopment.js +++ b/src/endWeek/shared/physicalDevelopment.js @@ -177,7 +177,7 @@ App.EndWeek.Shared.physicalDevelopment = function(actor, player = false) { } let hormoneMod = actor.hormoneBalance <= -100 ? 0 : Math.min(1 + Math.trunc(actor.hormoneBalance / 100) / 10, 1.4); // Forbid 500 hormone balance from being special. It is not. const growthTarget = actor.natural.boobs * gigantomastiaMod * hormoneMod * (random(90, 110) / 100); - const implantsHinder = actor.boobsImplant === 0 ? 1 : actor.boobsImplant / actor.boobs; // Implants disrupt growth. + const implantsHinder = actor.boobsImplant === 0 ? 1 : 1 - (actor.boobsImplant / actor.boobs); // Implants disrupt growth. const growthRange = Math.max(18 - actor.pubertyAgeXX, 6); // growth range puberty to 18? 12 should be the starting point otherwise you end up with the possibility of way too much growth in just a few years. const expectedGrowth = growthTarget / growthRange; if (unalteredBoobs < growthTarget) { -- GitLab