From fcd713bd58c1ef6c3a62e1280b78cd61d00faaab Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Wed, 14 Feb 2018 19:45:40 -0500
Subject: [PATCH] fixes and discount to starting girls for slavers

---
 devNotes/VersionChangeLog-Premod+LoliMod.txt | 4 ++++
 src/npc/startingGirls/startingGirls.tw       | 3 +++
 src/uncategorized/RESS.tw                    | 2 +-
 src/uncategorized/dairy.tw                   | 2 +-
 src/utility/assayWidgets.tw                  | 4 ++++
 5 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index 81deddb79ef..3fb7f17aea8 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -4,6 +4,10 @@
 
 2/14/18
 
+	351
+	-minor texst fixes
+	-slaver background now starts with discounted starting girls
+
 	350
 	-player pregnancy postpartum state active
 
diff --git a/src/npc/startingGirls/startingGirls.tw b/src/npc/startingGirls/startingGirls.tw
index 1f50366f554..5f9cdca3a6b 100644
--- a/src/npc/startingGirls/startingGirls.tw
+++ b/src/npc/startingGirls/startingGirls.tw
@@ -5,6 +5,9 @@
 	<<if ($PC.dick == 1) && ($PC.vagina == 1) && ($seeDicks != 0 || $makeDicks == 1)>>
 		Since you have both a penis and a vagina yourself, you've obviously had access to a source of advanced surgery and organ farming. @@.springgreen;Slaves get a smaller cost increase here for having both penises and vaginas, and for having both testicles and ovaries.@@
 	<</if>>
+	<<if $PC.career == "slaver">>
+		Since you personally saw to the capture, breaking and or training of these slaves, @@.springgreen;they cost half of what they normally would have here.@@
+	<</if>>
 	<<if $slaves.length == 1>>
 		You have one slave already committed.
 	<<elseif $slaves.length > 1>>
diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw
index 3078e4d1dd1..cdcbdfe6ce0 100644
--- a/src/uncategorized/RESS.tw
+++ b/src/uncategorized/RESS.tw
@@ -6195,7 +6195,7 @@ May I plea<<s>>e try out <<s>>omething <<s>>kimpier today?"
 <</link>>
 <</if>>
 <<if ($activeSlave.toyHole == "dick" || $sexualOpeness == 1) && canPenetrate($activeSlave)>>
-<<link "Invite her 'in'">>
+<br><<link "Invite her 'in'">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 	There's a glint <<if !canSee($activeSlave)>>on her face as she hears<<else>>in her eyes as she sees<</if>> you stand up from your desk and saunter over;
diff --git a/src/uncategorized/dairy.tw b/src/uncategorized/dairy.tw
index e70748a404d..64ae1aaa0d2 100644
--- a/src/uncategorized/dairy.tw
+++ b/src/uncategorized/dairy.tw
@@ -439,7 +439,7 @@ $dairyNameCaps
 		Cows will not undergo surgical procedures to maximize production.
 		[[Maximize production in all cattle|Dairy][$dairyImplantsSetting = 1]] | [[Maximize production in only milkable 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.
+		Naturally 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]] | [[Restrict maximization surgery on cattle|Dairy][$dairyImplantsSetting = 2]]
 	<</if>>
 <<else>>
diff --git a/src/utility/assayWidgets.tw b/src/utility/assayWidgets.tw
index 318702dc96c..864926d1551 100644
--- a/src/utility/assayWidgets.tw
+++ b/src/utility/assayWidgets.tw
@@ -2312,4 +2312,8 @@
 	<<set $slaveCost = 500*Math.trunc($slaveCost/500)>>
 <</if>>
 
+<<if $PC.career == "slaver">>
+	<<set $slaveCost = $slaveCost*.5>>
+<</if>>
+
 <</widget>>
-- 
GitLab