From 963177005b388d6666e9d9c9fb9aba10be286b76 Mon Sep 17 00:00:00 2001 From: StuffedAnon <stuffedgame@gmail.com> Date: Fri, 22 Mar 2019 13:47:36 +0900 Subject: [PATCH] Make it possible to reduce the fetish strength to near 0 We randomly generate it from 0 to 100, but if it's below 60 we allow the user to increase it, but then not decrease it. --- src/npc/startingGirls/startingGirls.tw | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/npc/startingGirls/startingGirls.tw b/src/npc/startingGirls/startingGirls.tw index 9b6d3a42b54..ecbae1b5a24 100644 --- a/src/npc/startingGirls/startingGirls.tw +++ b/src/npc/startingGirls/startingGirls.tw @@ -1327,14 +1327,18 @@ __You are customizing this slave:__ <<options $activeSlave.fetishStrength>> ''Fetish strength:'' $activeSlave.fetishStrength <<if $activeSlave.fetishStrength > 95>> + @@.lightcoral;Extremely High.@@ + <<elseif $activeSlave.fetishStrength > 85>> @@.lightcoral;High.@@ - <<elseif $activeSlave.fetishStrength <= 60>> + <<elseif $activeSlave.fetishStrength > 60>> + @@.hotpink;Normal.@@ + <<elseif $activeSlave.fetishStrength > 30>> @@.pink;Low.@@ <<else>> - @@.hotpink;Normal.@@ + @@.pink;Very Low.@@ <</if>> <<option>> - <<if $activeSlave.fetishStrength > 60>> + <<if $activeSlave.fetishStrength >= 5>> [[Decrease|Starting Girls][$activeSlave.fetishStrength -= 5]] <<if $activeSlave.fetishStrength <= 95>> | -- GitLab