Skip to content
Snippets Groups Projects
Commit 96317700 authored by Stuffed's avatar Stuffed
Browse files

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.
parent f9e7a48d
No related branches found
No related tags found
1 merge request!4012Pregmod master
......@@ -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>>
&nbsp;|&nbsp;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment