diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt index 0ab18a40721d99cb24e7fee4a0e91420e686b164..8f0fd98044843134b48e9cbc318177360d08bd59 100644 --- a/devNotes/VersionChangeLog-Premod+LoliMod.txt +++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt @@ -2,6 +2,13 @@ 0.10.7.1-0.7.x +9/24/2018 + + 41 + -fixes + -more deepmurk tinkerings + -klan robes + 9/23/2018 40 diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index 6031fa835d4071e8221b74aa4e7da9789154d9d8..f275a36d00cf2ee857c30db1596f8e695d03a5cc 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -15772,6 +15772,7 @@ window.rulesAssistantOptions = (function() { ["Hijab and abaya", "a hijab and abaya"], ["Hijab and blouse", "a hijab and blouse"], ["Kitty lingerie", "kitty lingerie"], + ["Klan robes", "klan robes"], ["Latex catsuit", "a latex catsuit"], ["Lederhosen", "lederhosen"], ["Leotard", "a leotard"], @@ -23542,6 +23543,9 @@ window.SlaveSummaryUncached = (function(){ case "a niqab and abaya": r += `Niqab and abaya.`; break; + case "klan robes": + r += `Klan robes.`; + break; case "a hijab and blouse": r += `Hijab and blouse.`; break; diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw index d739d5942183e0644d7fb7e90a64fdb339a001ac..9d965fdb8fc4b4d9c8407e869f2db1dc4e961de0 100644 --- a/src/uncategorized/saLongTermEffects.tw +++ b/src/uncategorized/saLongTermEffects.tw @@ -8098,7 +8098,7 @@ <<if $dangerousPregancy != 0>> <<if ($slaves[$i].assignment != "work in the dairy" || $dairyRestraintsSetting < 2) && $slaves[$i].pregAdaptation < 500 && $slaves[$i].broodmother < 1>> <<set _miscarriageChance = -10>> - <<set _miscarriageChance += (($slaves[$i].bellyPreg/1000)-$slaves[$i].pregAdaptation)>> /* this could use to not be linear */ + <<set _miscarriageChance += (($slaves[$i].bellyPreg/1000)-$slaves[$i].pregAdaptation)>> // this could use to not be linear <<if $slaves[$i].inflation > 0>> <<set _miscarriageChance += 10>> <</if>> @@ -8119,7 +8119,7 @@ <<set _miscarriageChance -= 300>> <<elseif $slaves[$i].assignment == "rest">> <<set _miscarriageChance -= 100>> - <<elseif $slaves[$i].assignment == ""rest in the spa"">> + <<elseif $slaves[$i].assignment == "rest in the spa">> <<set _miscarriageChance -= 50>> <<elseif $slaves[$i].assignment == "get treatment in the clinic">> <<if $Nurse != 0>> @@ -8159,9 +8159,9 @@ <</if>> <</if>> <</if>> - <<if _miscarriage != 1 && (($slaves[$i].belly > ($slaves[$i].pregAdaptation*3200)) || $slaves[$i].bellyPreg > 600000)>> /*If she can't relieve the pressure that way, will she hold?*/ + <<if _miscarriage != 1 && (($slaves[$i].belly > ($slaves[$i].pregAdaptation*3200)) || $slaves[$i].bellyPreg > 600000)>> // If she can't relieve the pressure that way, will she hold? <<set _miscarriageChance = -80>> - <<set _burstChance += (($slaves[$i].belly/1000)-$slaves[$i].pregAdaptation)>> /* this could use to not be linear */ + <<set _burstChance += (($slaves[$i].belly/1000)-$slaves[$i].pregAdaptation)>> // this could use to not be linear <<if $slaves[$i].health < -20>> <<set _burstChance -= ($slaves[$i].health)>> <<elseif $slaves[$i].health > 80>>