Skip to content
Snippets Groups Projects
Commit 3147f66e authored by Pregmodder's avatar Pregmodder
Browse files

Dairy implant tweaks.

parent 6e70ec05
No related branches found
No related tags found
No related merge requests found
......@@ -4641,4 +4641,10 @@ Pregmod 0.10.3.0
146
-fixes
-dairy now only increases breasts in lactating slaves and the stimulators increase cum output
\ No newline at end of file
-dairy now only increases breasts in lactating slaves and the stimulators increase cum output
147
-fix
148
-added settings to enable/disable lactation implants in flat slaves
\ No newline at end of file
......@@ -409,6 +409,7 @@ DairyRestraintsSetting($dairyRestraintsSetting)
<<set $dairySlimMaintain = 0>>
<<set $dairyHyperPregRemodel = 0>>
<<set $dairyWeightSetting = 0>>
<<set dairyImplantsSetting = 1>>
<<set $dairyUpgradeMenials = 0>>
<<set $createBioreactors = 0>>
<<set $bioreactorsAnnounced = 0>>
......
......@@ -422,6 +422,9 @@
<<if ndef $dairyWeightSetting>>
<<set $dairyWeightSetting = 0>>
<</if>>
<<if ndef $dairyImplantsSetting>>
<<set $dairyImplantsSetting = 1>>
<</if>>
<<if ndef $clubAdsPreg>>
<<set $clubAdsPreg = 0>>
<</if>>
......
......@@ -427,6 +427,19 @@ $dairyNameCaps
<</if>>
<</if>>
<br>
<<if $dairySlimMaintain == 0>>
<<if $dairyImplantsSetting == 1>>
Cows without breasts will undergo lactation implant surgery to remedy this.
[[Restrict lactation surgery in cum-cows|Dairy][$dairyImplantsSetting = 0]]
<<else>>
Natuarally lactating cows, cows with non-lactating breasts, and cows incapable of producing cum will undergo lactation implant surgery to increase their milk output.
[[Maximize lactation in all cattle|Dairy][$dairyImplantsSetting = 1]]
<</if>>
<<else>>
Current settings do not implant lactation implants into cows.
<</if>>
<br>
<<if $dairyWeightSetting == 0>>
$dairyNameCaps is keeping cows at least chubby. [[Increase Weight Target|Dairy][$dairyWeightSetting = 1]] | [[Disable Dietary Control|Dairy][$dairyWeightSetting = -1]]
......
......@@ -392,23 +392,25 @@
<<set $slaves[$i].boobs += 25>>
<</if>>
<</if>>
<<if $slaves[$i].prostate == 1>>
<<set $slaves[$i].prostate = 2, $slaves[$i].health -= 10, $cash -= $surgeryCost>>
<</if>>
<<if $slaves[$i].vasectomy == 1>>
<<set $slaves[$i].vasectomy = 0, $slaves[$i].health -= 10, $cash -= $surgeryCost>>
<</if>>
<<if ($dairySlimMaintain == 0)>>
<<if ($slaves[$i].lactation < 2) && ($slaves[$i].boobs > 300 || $slaves[$i].dick == 0 || $slaves[$i].lactation == 1 || $dairyImplantsSetting > 0)>>
<<set $slaves[$i].lactation = 2, $slaves[$i].health -= 10, $cash -= $surgeryCost>>
<</if>>
<</if>>
<<if ($dairyFeedersUpgrade == 1) && ($dairyFeedersSetting > 0)>>
<<if ($dairySlimMaintain == 0)>>
<<if ($slaves[$i].balls == 0)>>
<<set $slaves[$i].hormones = 2>>
<</if>>
<<if ($slaves[$i].lactation < 2) && ($slaves[$i].boobs > 300 || $slaves[$i].dick == 0 || $slaves[$i].lactation == 1)>>
<<set $slaves[$i].lactation = 2, $slaves[$i].health -= 10, $cash -= $surgeryCost>>
<</if>>
<<elseif $slaves[$i].diet == "fattening">>
<<set $slaves[$i].weight += 2>>
<</if>>
<<if $slaves[$i].prostate == 1>>
<<set $slaves[$i].prostate = 2, $slaves[$i].health -= 10, $cash -= $surgeryCost>>
<</if>>
<<if $slaves[$i].vasectomy == 1>>
<<set $slaves[$i].vasectomy = 0, $slaves[$i].health -= 10, $cash -= $surgeryCost>>
<</if>>
<<if ($slaves[$i].health < 75)>>
<<set $slaves[$i].health += 25>>
<<else>>
......
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