From 58ebd9d5653aa01567129ad0e56305867cfc5042 Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Sat, 2 May 2020 22:15:22 -0400
Subject: [PATCH] sell slave variant

---
 src/uncategorized/reBoomerang.tw |  4 ++++
 src/uncategorized/sellSlave.tw   | 14 ++++++++++++++
 src/uncategorized/slaveSold.tw   | 12 ++++++++++++
 3 files changed, 30 insertions(+)

diff --git a/src/uncategorized/reBoomerang.tw b/src/uncategorized/reBoomerang.tw
index 5b9c738af13..ed98acb50cd 100644
--- a/src/uncategorized/reBoomerang.tw
+++ b/src/uncategorized/reBoomerang.tw
@@ -232,6 +232,10 @@ brings up the relevant feeds. There's a naked body crumpled pathetically against
 <<case "D startled the witch">>
 	You sold $him to a buyer interested in $him because of $his sharp teeth, among other things. "It wa<<s>> horrible," $he whispers. Then $he gags, dry heaves, and vomits slightly. $He wipes $his mouth with the back of $his hand, staring upward vacantly. "Horrible."
 	<<set $activeSlave.behavioralFlaw = "odd", $activeSlave.sexualFlaw = "crude">>
+<<case "vampire clan">>
+	You sold $him to a buyer interested in $him because of $his fangs, among other things. "It wa<<s>> horrible," $he whispers. Then $he gags, dry heaves, and vomits slightly. $He wipes $his mouth with the back of $his hand, staring upward vacantly. "Horrible."
+	<<set $activeSlave.behavioralFlaw = "odd">>
+	<<set $activeSlave.weight = Math.clamp($activeSlave.weight-75,-100,100)>>
 <<case "slimming trainer">>
 	"It'<<s>> horrible." You sold $him to a trainer who specializes in slimming slaves down, and if anything, they seem to have gone too far. $He's emaciated. "I'm h-hungry all the time, and when I'm not p-perfect, I d-don't get to eat at all."
 	<<set $activeSlave.boobs = Math.clamp($activeSlave.boobs-50*random(5,10),0,10000)>>
diff --git a/src/uncategorized/sellSlave.tw b/src/uncategorized/sellSlave.tw
index 3a51ae2d2e7..27357899c65 100644
--- a/src/uncategorized/sellSlave.tw
+++ b/src/uncategorized/sellSlave.tw
@@ -1115,6 +1115,20 @@ __Bids Received__
 	<</if>>
 <</if>>
 
+
+<<if $activeSlave.teeth == "fangs">>
+	<<if (skinToneLevel($activeSlave.skin) < 7)>>
+		<<if random(1,100) > 60>>
+			<br>''<<print cashFormat(500*Math.trunc((_slaveCost*1.35)/500))>>'' from a becloaked individual with an unusual interest in pale <<= $girl>>s with fangs.
+			<<link "Accept bid" "Slave Sold">>
+				<<set _Price = 500*Math.trunc((_slaveCost*1.35)/500)>>
+				<<run cashX(_Price, "slaveTransfer", $activeSlave)>>
+				<<set $buyer = "vampire clan">>
+			<</link>>
+		<</if>>
+	<</if>>
+<</if>>
+
 <<if $activeSlave.vagina == 0>>
 	<<if $activeSlave.anus > 1>>
 		<<if $activeSlave.skill.anal >= 100>>
diff --git a/src/uncategorized/slaveSold.tw b/src/uncategorized/slaveSold.tw
index 4d2d6cb79cf..2499336582e 100644
--- a/src/uncategorized/slaveSold.tw
+++ b/src/uncategorized/slaveSold.tw
@@ -757,6 +757,18 @@
 		Your properly broken slaves are so inured to strange tastes that they pay no attention, but the others are just @@.mediumaquamarine;glad $he won't frighten them@@ any more. They thought $he was scary.
 	<</if>>
 
+<<case "vampire clan">>
+	$activeSlave.slaveName is quickly embraced by $his new owner and spirited away like all the other <<= $girl>>s that catch his fancy.
+	<<for _ss = 0; _ss < $slaves.length; _ss++>>
+		<<if ($slaves[_ss].devotion <= 20)>>
+			<<set $slaves[_ss].trust += 1>>
+			<<set _slaveImpact = 1>>
+		<</if>>
+	<</for>>
+	<<if (_slaveImpact == 1)>>
+		Your properly broken slaves are so inured to strange tastes that they pay no attention, but the others are just @@.mediumaquamarine;glad $he won't frighten them@@ any more. There was a rumor circulating that $he was a creature of the night.
+	<</if>>
+
 <<case "D milf staffing">>
 	$activeSlave.slaveName becomes a common sight around the arcology, training slaves for $his new master. They're usually seen hanging close by $him as $he manages them with an air at once protective and frankly sexual.
 	<<for _ss = 0; _ss < $slaves.length; _ss++>>
-- 
GitLab