diff --git a/js/003-data/gameVariableData.js b/js/003-data/gameVariableData.js index 86c991fe0dc3af3ebcca8709804e8c69dc417b48..34642f8503a2c312e79a5b4a84e83284e7afa150 100644 --- a/js/003-data/gameVariableData.js +++ b/js/003-data/gameVariableData.js @@ -565,10 +565,12 @@ App.Data.resetOnNGPlus = { eliteFailTimer: 0, nurseryGrowthStimsSetting: 0, MadamIgnoresFlaws: 0, + MadamNoSex: 0, farmyardBreeding: 0, farmyardRestraints: 0, farmyardShows: 0, DJignoresFlaws: 0, + DJnoSex: 0, slaveFightingBG: 0, HGSlaveSuccess: 0, unMadam: 0, diff --git a/src/uncategorized/brothel.tw b/src/uncategorized/brothel.tw index cf16b5e47a64c3e6f4b4bd9df059f3f48bb49796..88eabec01bd81ec3ed06e73ef9b92bc8f78e0bc4 100644 --- a/src/uncategorized/brothel.tw +++ b/src/uncategorized/brothel.tw @@ -188,6 +188,14 @@ _S.Madam.slaveName has been instructed to ignore flaws in the whores serving under $him. [[Fix flaws|Brothel][$MadamIgnoresFlaws = 0]] <</if>> + <br> + <<if $MadamNoSex != 1>> + _S.Madam.slaveName will whore $himself out when $he doesn't have enough whores serving under $him. + [[Don't serve clients|Brothel][$MadamNoSex = 1]] + <<else>> + _S.Madam.slaveName will not whore $himself out even if $he has time. + [[Serve clients|Brothel][$MadamNoSex = 0]] + <</if>> </div> <</if>> diff --git a/src/uncategorized/brothelReport.tw b/src/uncategorized/brothelReport.tw index 3cab94acf980b8dba0b273221258e8b5f4410b17..53795cfe9091f1fa0108105f83b4350e0d7f50f6 100644 --- a/src/uncategorized/brothelReport.tw +++ b/src/uncategorized/brothelReport.tw @@ -151,7 +151,7 @@ <</if>> <</for>> - <<if (_DL+$brothelSlavesGettingHelp < 10)>> + <<if (_DL+$brothelSlavesGettingHelp < 10) && $MadamNoSex != 1>> <<setLocalPronouns _S.Madam>> <<set _oldCash = $cash>> <<if $showEWD != 0>> diff --git a/src/uncategorized/club.tw b/src/uncategorized/club.tw index e9c220d61ec39581ef443641e1e3b20682073da3..a131b01108c8b808a04e648c103346600695aa20 100644 --- a/src/uncategorized/club.tw +++ b/src/uncategorized/club.tw @@ -265,6 +265,14 @@ _S.DJ.slaveName has been instructed to ignore flaws in <<print $clubName>>'s sluts. [[Fix flaws|Club][$DJignoresFlaws = 0]] <</if>> + <br> + <<if $DJnoSex != 1>> + _S.DJ.slaveName will slut it up when $he doesn't have enough sluts serving under $him. + [[Don't serve clients|Club][$DJnoSex = 1]] + <<else>> + _S.DJ.slaveName will not be slutting it up $himself even if $he has time. + [[Serve clients|Club][$DJnoSex = 0]] + <</if>> <</if>> </div> diff --git a/src/uncategorized/clubReport.tw b/src/uncategorized/clubReport.tw index 99fa96743ea377d628a76bbbc50f678af533ad79..93b7460d7e30c43aca5bfdae1e0c560239e77cba 100644 --- a/src/uncategorized/clubReport.tw +++ b/src/uncategorized/clubReport.tw @@ -82,7 +82,7 @@ <<else>> <<set _S.DJ.skill.DJ += random(1,Math.ceil((_S.DJ.intelligence+_S.DJ.intelligenceImplant)/15) + 8)>> <</if>> - <<if (_DL + $clubSlavesGettingHelp < 10)>> + <<if (_DL + $clubSlavesGettingHelp < 10) && $DJnoSex != 1>> <<if ($legendaryEntertainerID == 0) && (_S.DJ.prestige == 0) && (_S.DJ.skill.entertainment >= 100) && (_S.DJ.devotion > 50)>> <<set $legendaryEntertainerID = _S.DJ.ID>> <</if>>