From 616994d2f3d2b01a2d83f704af7a3f43bca7cb78 Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Mon, 24 Apr 2017 19:59:33 -0400
Subject: [PATCH] Fixes and synchronization.

---
 src/uncategorized/reRecruit.tw           |  2 +-
 src/uncategorized/saChoosesOwnClothes.tw | 11 +++++++++++
 src/uncategorized/storyCaption.tw        |  2 +-
 src/utility/slaveCreationWidgets.tw      | 13 +++++++++++--
 4 files changed, 24 insertions(+), 4 deletions(-)

diff --git a/src/uncategorized/reRecruit.tw b/src/uncategorized/reRecruit.tw
index 410fb1f447a..91789a1802d 100644
--- a/src/uncategorized/reRecruit.tw
+++ b/src/uncategorized/reRecruit.tw
@@ -534,8 +534,8 @@ The situation does yield a few business opportunities too, as not all of the guy
 <<set $activeSlave.analSkill = 0>>
 <<set $activeSlave.oralSkill = random(15,40)>>
 <<set $activeSlave.whoreSkill = 0>>
-<<set $activeSlave.boobs = 150>>
 <<set $activeSlave.boobsImplant = random(3,6)*100>>
+<<set $activeSlave.boobs = $activeSlave.boobsImplant+150>>
 <<set $activeSlave.vagina = 0>>
 <<set $activeSlave.vaginalSkill = 0>>
 <<set $activeSlave.ovaries = 0>>
diff --git a/src/uncategorized/saChoosesOwnClothes.tw b/src/uncategorized/saChoosesOwnClothes.tw
index 3dacf09bc9f..208445dda22 100644
--- a/src/uncategorized/saChoosesOwnClothes.tw
+++ b/src/uncategorized/saChoosesOwnClothes.tw
@@ -2,6 +2,15 @@
 
 <<set $bellyAccessory = $slaves[$i].bellyAccessory>>
 
+<<if $slaves[$i].fetish == "mindbroken">>
+	She is fundamentally broken, but still follows some faint memories of standing within the wardrobe. She chooses to put on underwear, the reasons lost to her, and moves on.
+	<<set $slaves[$i].clothes = "attractive lingerie">>
+	<<if $slaves[$i].amp != 1 && $slaves[$i].heels == 1>>
+		She finds she can inexplicably walk if she wears heels; a daily lesson for her, as she forgets shortly after leaving.
+		<<set $slaves[$i].shoes = either("heels", "extreme heels", "boots")>>
+	<</if>>
+<<else>>
+
 <<if ($slaves[$i].devotion <= 20)>>
 	and uses the ability to select outfits to cover up with comfortable cut-offs and a t-shirt,
 	<<set $slaves[$i].clothes = "cutoffs and a t-shirt">>
@@ -281,3 +290,5 @@
 <</if>>
 
 <</if>>
+
+<</if>> /* closes my MB check */
\ No newline at end of file
diff --git a/src/uncategorized/storyCaption.tw b/src/uncategorized/storyCaption.tw
index ce774ba3740..298c6614d5b 100644
--- a/src/uncategorized/storyCaption.tw
+++ b/src/uncategorized/storyCaption.tw
@@ -180,7 +180,7 @@
 [[Whoring Skill|Encyclopedia][$encyclopedia = "Whoring Skill"]]
 [[Youth Preferentialism|Encyclopedia][$encyclopedia = "Youth Preferentialism"]]
 <<elseif _Pass == "Starting Girls">>\
-This slave will cost @@.yellowgreen;''<span id="cost"><<slaveCost $activeSlave>>¤<<print $slaveCost>>.</span>''@@
+<span id="cost"><<SlaveCostDescription>></span>
 
 <<elseif $ui == "disclaimer">>\
 <span id="nextButton"><strong><<link [[($nextButton)|($nextLink)]]>><</link>></strong></span>
diff --git a/src/utility/slaveCreationWidgets.tw b/src/utility/slaveCreationWidgets.tw
index 8849a415c0d..33f441c6a94 100644
--- a/src/utility/slaveCreationWidgets.tw
+++ b/src/utility/slaveCreationWidgets.tw
@@ -629,14 +629,23 @@
 	<</replace>>
 <</widget>>
 
+<<widget "SlaveCostDescription">>
+	<<slaveCost $activeSlave>>
+	<<if $slaveCost > $cash>>
+	@@.red;This slave will cost ''¤$slaveCost.''<br>
+	You only have: ¤$cash@@
+	<<else>>
+	This slave will cost @@.yellowgreen;''¤$slaveCost.''@@<br>
+	You have: ¤$cash
+	<</if>>
+<</widget>>
 /%
  Call as <<StartingGirlsCost>>
 %/
 <<widget "StartingGirlsCost">>
 
 <<replace "#cost">>
-	<<slaveCost $activeSlave>>
-	¤<<print $slaveCost>>.
+<<SlaveCostDescription>>
 <</replace>>
 <<replace "#finalize">>
 <<if $cash >= $slaveCost>>
-- 
GitLab