From 94122a4705b660b9bd129e52e867e5e1a76cf239 Mon Sep 17 00:00:00 2001 From: Anu <barrychahal@gmail.com> Date: Tue, 18 Aug 2020 23:30:34 -0700 Subject: [PATCH] Raise description floor for minor shortDamage and longDamage --- src/npc/descriptions/descriptionWidgets.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/npc/descriptions/descriptionWidgets.js b/src/npc/descriptions/descriptionWidgets.js index 36983303e74..5cf7cc3789a 100644 --- a/src/npc/descriptions/descriptionWidgets.js +++ b/src/npc/descriptions/descriptionWidgets.js @@ -408,7 +408,7 @@ App.Desc.ageAndHealth = function(slave) { r += `${He} almost gleams; ${he}'s in the absolute <span class="green">best of health.</span>`; } - if (H.shortDamage !== 0 || H.longDamage !== 0 || H.condition < 0) { + if (H.shortDamage > 5 || H.longDamage > 5 || H.condition < 0) { r += ` Upon closer inspection you note that ${he}`; array = []; @@ -420,7 +420,7 @@ App.Desc.ageAndHealth = function(slave) { array.push(`is <span class="red">seriously injured</span> with some lasting effects`); } else if (H.shortDamage >= 20) { array.push(`is <span class="orange">injured</span>`); - } else if (H.shortDamage > 0) { + } else if (H.shortDamage > 5) { array.push(`seems to have suffered a <span class="yellow">minor injury</span> recently`); } @@ -430,7 +430,7 @@ App.Desc.ageAndHealth = function(slave) { array.push(`has some clear <span class="red">permanent health issues</span>`); } else if (H.longDamage >= 20) { array.push(`shows signs of <span class="orange">lasting health problems</span>`); - } else if (H.longDamage > 0) { + } else if (H.longDamage > 5) { array.push(`carries some <span class="yellow">minor niggles</span>`); } -- GitLab