From b1522ee37e96f74cbf8cdf6a02e97dc1a4c80209 Mon Sep 17 00:00:00 2001
From: Anu <anulithic@gmail.com>
Date: Fri, 7 Oct 2022 01:28:42 -0700
Subject: [PATCH] Specific text for maximal Incubator height growth

---
 src/endWeek/reports/incubatorReport.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/endWeek/reports/incubatorReport.js b/src/endWeek/reports/incubatorReport.js
index 88f6a7eb1f9..ac5dc09d1fc 100644
--- a/src/endWeek/reports/incubatorReport.js
+++ b/src/endWeek/reports/incubatorReport.js
@@ -183,8 +183,8 @@ App.EndWeek.incubatorReport = function() {
 					r.push(`The monitoring system floods ${his} body with growth stimulants, but ${his} <span class="orange">NCS prevents an increase in ${his} growth rate.</span>`);
 					tank.height = heightLimitAge;
 				} else {
-					r.push(`The monitoring system floods ${his} body with growth stimulants, causing <span class="green">a sharp increase in growth rate.</span>`);
 					if (V.incubator.setting.weight >= 1 && V.incubator.setting.muscles <= 1 && V.incubator.setting.reproduction <= 1) {
+						r.push(`The monitoring system floods ${his} body with growth stimulants. ${His} caloric intake and expenditure rates are ideal for maximum response, causing <span class="green">explosive growth.</span>`);
 						if (V.incubator.upgrade.speed === 52) {
 							tank.height += random(3, 6);
 						} else if (V.incubator.upgrade.speed === 18) {
@@ -197,6 +197,7 @@ App.EndWeek.incubatorReport = function() {
 							tank.height += random(1, 2);
 						}
 					} else {
+						r.push(`The monitoring system floods ${his} body with growth stimulants, causing <span class="green">a sharp increase in growth rate.</span>`);
 						if (V.incubator.upgrade.speed === 52) {
 							tank.height += random(2, 5);
 						} else if (V.incubator.upgrade.speed === 18) {
-- 
GitLab