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

Merge branch 'BirthJSFixes' into 'pregmod-master'

birthJSFixes

See merge request pregmodfan/fc-pregmod!3596
parents 0d74ad54 bacf7774
No related branches found
No related tags found
1 merge request!3596birthJSFixes
/** @param {App.Entity.SlaveState} slave */
window.BirthDestinationText = function (choice, slave) {
var pronouns = getPronouns(slave);
var he = pronouns.pronoun, him = pronouns.object, his = pronouns.possessive, hers = pronouns.possessivePronoun, himself = pronouns.objectReflexive, boy = pronouns.noun;
var He = capFirstChar(he), His = capFirstChar(his);
const V = State.variables, T = State.temporary, sn = SlaveFullName(slave);
var child = T.count > 1 ? 'children' : 'child';
var r = ``;
if (T.call !== 1) {
if (choice !== "Private") {
r += `sent to one of ${V.arcologies[0].name}'s `;
}
} else if (choice !== "Sold" && slave.burst < 1) {
r += ` ${sn} `;
}
switch(choice) {
case "Breeder":
if (T.call !== 1) {
r += `future minded schools, to be administered fertility and virility treatments as well as be brought up to take pride in reproduction.`;
}
if (slave.burst > 0) {
r += ` Hopefully there they will be trained to not suffer the same fate.`;
} else {
r += ` ${sn} `;
if (slave.fetish === "mindbroken" || slave.fuckdoll > 0) {
r += `has few thoughts about the matter.`;
} else if (slave.devotion > 95) {
r += `loves you already, but ${he}'ll <span class='hotpink'>love you even more</span> for this. ${He} can't wait to see ${his} ${child} proudly furthering your cause.`;
slave.devotion += 4;
} else if (slave.devotion > 50) {
r += `heard about these and will be <span class='hotpink;happy that ${his} ${child} will have a purpose in your society other than slavery.</span> ${He} will miss ${his} ${child}, but ${he} expected that.`;
slave.devotion += 4;
} else if (slave.devotion > 20) {
r += `will naturally miss ${his} ${child}, but will is broken enough to hope that ${his} offspring will have a better life, or at least an enjoyable one.`;
} else {
r += `will of course <span class='mediumorchid'>hate you for this.</span> The mere thought of ${his} ${V.fertilityAge} year old daughter${T.count > 1 ? 's':''} swollen with life, and proud of it, fills ${him} with <span class='gold'>disdain.</span>`;
slave.devotion -= 4, slave.trust -= 4;
}
}
break;
case "Orphanage":
if (slave.burst < 1) {
if (slave.fetish === "mindbroken" || slave.fuckdoll > 0) {
r += `has few thoughts about the matter.`;
} else if (slave.devotion > 95) {
r += `worships you so completely that ${he} will not resent this.`;
} else if ( slave.devotion > 50) {
r += `is devoted to you, but ${he} will <span class='mediumorchid'>struggle to accept this.</span>`;
slave.devotion -= 2;
} else if ( slave.devotion > 20) {
r += `has accepted being a sex slave, but ${he} will <span class='mediumorchid'>resent this intensely.</span>`;
slave.devotion -= 3;
} else {
r += `will of course <span class='mediumorchid'>hate you for this.</span>`;
slave.devotion -= 4;
}
}
break;
case "Citizen":
if (T.call !== 1) {
r += `citizen schools, to be brought up coequal with the arcology's other young people.`;
}
if (slave.burst < 1) {
r += ` ${sn} `;
if (slave.fetish === "mindbroken" || slave.fuckdoll > 0) {
r += `has few thoughts about the matter.`;
} else if (slave.devotion > 95) {
r += `loves you already, but ${he}'ll <span class='hotpink'>love you even more</span> for this.`;
} else if (slave.devotion > 50) {
r += `knows about these and will be <span class='hotpink'>overjoyed,</span> ${he} will miss ${his} ${child}, but ${he} expected that.`;
} else if (slave.devotion > 20) {
r += `will naturally miss ${his} ${child}, but will <span class='hotpink'>;take comfort@@ in the hope that ${his} offspring will have a better life.`;
} else {
r += `will naturally retain some resentment over being separated from ${his} ${child}, but this should be balanced by hope that ${his} offspring will have a better life.`;
}
}
break;
case "Private":
if (T.call !== 1) r += `${child} ${T.count > 1 ? ' are':' is'} sent to be privately raised, to be brought up as a future high class citizen.`;
if (slave.burst < 1) {
r += ` ${sn} `;
if (slave.fetish === "mindbroken" || slave.fuckdoll > 0) {
r += `has few thoughts about the matter.`;
} else if (slave.devotion > 95) {
r += `will <span class='hotpink'>worship you utterly</span> for this.`;
} else if (slave.devotion > 50) {
r += `understands that this is the best possible outcome for the offspring of a slave, and will be <span class='hotpink'>overjoyed.</span>`;
} else if (slave.devotion > 20) {
r += `will miss ${his} ${child}, but will be <span class='hotpink'>very grateful,</span> since ${he}'ll understand this is the best possible outcome for a slave mother.`;
} else {
r += `will resent being separated from ${his} ${child}, but <span class='hotpink'>should understand and be grateful</span> that this is the best possible outcome here.`;
}
}
r += ` The ${child} will be raised privately, with expert care and tutoring, an expensive proposition.`;
break;
case "Sold":
if (T.call !== 1) {
r += `${T.call !== 1 ? "${his} ${T.count > 1 ? 'babies':'baby'}":"Where they"} `;
}
if (slave.prestige > 1 || slave.pornPrestige > 2) {
T.babyCost = jsRandom(-12,100);
if (slave.prematureBirth > 0) { T.babyCost = jsRandom(-32,40); }
r += `went for ${T.curBabies > 1 ? ' a total ':'a'} bid of`;
} else {
T.babyCost = jsRandom(-12,12);
if (slave.prematureBirth > 0) { T.babyCost = -45; }
r += `sold for ${T.curBabies > 1 ? ' a total of':''}`;
}
const cash = cashFormat(T.count*(50+T.babyCost));r += ` <span class='yellowgreen'>${cash}.</span>`;
if (slave.prematureBirth > 0) r += ` A low price due to the added costs of caring for ${T.count > 1 ? 'them':'it'}.`;
if (slave.burst < 1) {
r += ` ${sn} `;
if (slave.fetish === "mindbroken" || slave.fuckdoll > 0) {
r += `has few thoughts about the matter.`;
} else if (slave.devotion > 95) {
r += `adheres to your thoughts so strongly that even though you backed out of caring for ${his} ${child}, ${he} still truly believes you are doing ${him} an honor.`;
} else if (slave.devotion > 50) {
r += `is <span class='mediumorchid'>deeply hurt</span> by your sudden decision to sell ${his} ${child} instead of having ${T.count > 1 ? 'them':'it'} cared for. ${His} trust in your words <span class='gold'>wavers</span> as ${he} thinks of ${his} ${child}'s future.`;
slave.trust -= 5, slave.devotion -= 5;
} else if (slave.devotion > 20) {
r += `is <span class='mediumorchid'>devastated</span> by your sudden decision to sell ${his} ${child} instead of having ${T.count > 1 ? 'them':'it'} cared for. ${His} mind struggles to comprehend <span class='gold'>such betrayal.</span>`;
slave.trust -= 10, slave.devotion -= 10;
} else {
r += `For a moment, ${he} saw a glimmer of good in you; <span class='mediumorchid'>${He} was clearly wrong.</span> ${His} mind struggles to comprehend <span class='gold'>why ${he} could ever even think of trusting such a person.</span>`;
slave.trust -= 30, slave.devotion -= 30;
}
}
cashX(T.curBabies*(50+T.babyCost), "babyTransfer", slave);
break;
}
return r;
};
...@@ -210,26 +210,70 @@ Performing a cesarean section is trivial for the remote surgery to carry out. $a ...@@ -210,26 +210,70 @@ Performing a cesarean section is trivial for the remote surgery to carry out. $a
<<set _lostBabies = 1>> <<set _lostBabies = 1>>
handed off to the Societal Elite to be raised into upstanding members of the new society. handed off to the Societal Elite to be raised into upstanding members of the new society.
<<elseif $Cash4Babies == 1 && ($activeSlave.relationship != -3) && ($activeSlave.assignment != "serve in the master suite") && ($activeSlave.assignment != "be your Concubine")>> <<elseif $Cash4Babies == 1 && ($activeSlave.relationship != -3) && ($activeSlave.assignment != "serve in the master suite") && ($activeSlave.assignment != "be your Concubine")>>
<<set _lostBabies = 1, _call = 1>> <<set _lostBabies = 1, _babyCost = random(-12,12)>>
<<= BirthDestinationText("Sold",$activeSlave)>> sold for a total of @@.yellowgreen;<<print cashFormat(_curBabies*(50+_babyCost))>>.@@
<<elseif $universalRulesChildrenBecomeBreeders > 0 && $arcologies[0].FSRepopulationFocus > 40 && $DefaultBirthDestination === "individually decided fates">> <<set $cash += _curBabies*(50+_babyCost)>>
<<set _lostBabies = 1, _call = 0, $breederOrphanageTotal += _curBabies>> <<elseif $universalRulesChildrenBecomeBreeders > 0 && $arcologies[0].FSRepopulationFocus > 40 && $DefaultBirthDestination === "anywhere">>
<<= BirthDestinationText("Breeder",$activeSlave)>> <<set _lostBabies = 1>>
sent to one of $arcologies[0].name's future minded schools, to be administered fertility and virility treatments as well as be brought up to take pride in reproduction. $activeSlave.slaveName
<<if $activeSlave.fetish == "mindbroken" || $activeSlave.fuckdoll > 0>>
has few thoughts about the matter.
<<elseif $activeSlave.devotion > 95>>
loves you already, but $he'll @@.hotpink;love you even more@@ for this. $He can't wait to see $his child<<if _curBabies > 1>>ren<</if>> proudly furthering your cause.
<<set $activeSlave.devotion += 4>>
<<elseif $activeSlave.devotion > 50>>
heard about these and will be @@.hotpink;happy that $his child<<if $activeSlave.pregType > 1>>ren<</if>> will have a purpose in your society other than slavery.@@ $He will miss $his child<<if $activeSlave.pregType > 1>>ren<</if>>, but $he expected that.
<<set $activeSlave.devotion += 4>>
<<elseif $activeSlave.devotion > 20>>
will naturally miss $his child<<if _curBabies > 1>>ren<</if>>, but will is broken enough to hope that $his offspring will have a better life, or at least an enjoyable one.
<<else>>
will of course @@.mediumorchid;hate you for this.@@ The mere thought of $his $fertilityAge year old daughter<<if _curBabies > 1>>s<</if>> swollen with life, and proud of it, fills $him with @@.gold;disdain.@@
<<set $activeSlave.devotion -= 4, $activeSlave.trust -= 4>>
<</if>>
<<set $breederOrphanageTotal += _curBabies>>
<</if>> <</if>>
<<if _lostBabies != 1 && $DefaultBirthDestination === "individually decided fates">> <<if _lostBabies != 1 && $DefaultBirthDestination === "individually decided fates">>
<br><br> <br><br>
<<link '...sent to a slave orphanage.'>> <<link '...sent to a slave orphanage.'>>
<<replace #_disposition>> <<replace #_disposition>>
<<set $slaveOrphanageTotal += _curBabies, _call = 0>> <<set $slaveOrphanageTotal += _curBabies>>
<<= BirthDestinationText("Orphanage",$activeSlave)>> sent to one of $arcologies[0].name's slave orphanages. $activeSlave.slaveName
<<if $activeSlave.fetish == "mindbroken" || $activeSlave.fuckdoll > 0>>
has few thoughts about the matter.
<<elseif $activeSlave.devotion > 95>>
worships you so completely that $he will not resent this.
<<elseif $activeSlave.devotion > 50>>
is devoted to you, but $he will @@.mediumorchid;struggle to accept this.@@
<<set $activeSlave.devotion -= 2>>
<<elseif $activeSlave.devotion > 20>>
has accepted being a sex slave, but $he will @@.mediumorchid;resent this intensely.@@
<<set $activeSlave.devotion -= 3>>
<<else>>
will of course @@.mediumorchid;hate you for this.@@
<<set $activeSlave.devotion -= 4>>
<</if>>
<</replace>> <</replace>>
<<set $nextButton = "Back">><<UpdateNextButton>> /* unlock Continue button */ <<set $nextButton = "Back">><<UpdateNextButton>> /* unlock Continue button */
<</link>> <</link>>
<<if $arcologies[0].FSRepopulationFocus > 40>> <<if $arcologies[0].FSRepopulationFocus > 40>>
<br><<link '...sent to a breeder school.'>> <br><<link '...sent to a breeder school.'>>
<<replace #_disposition>> <<replace #_disposition>>
<<set $breederOrphanageTotal += _curBabies, _call = 0>> sent to one of $arcologies[0].name's future minded schools, to be administered fertility and virility treatments as well as be brought up to take pride in reproduction. $activeSlave.slaveName
<<= BirthDestinationText("Breeder",$activeSlave)>> <<if $activeSlave.fetish == "mindbroken" || $activeSlave.fuckdoll > 0>>
has few thoughts about the matter.
<<elseif $activeSlave.devotion > 95>>
loves you already, but $he'll @@.hotpink;love you even more@@ for this. $He can't wait to see $his child<<if _curBabies > 1>>ren<</if>> proudly furthering your cause.
<<set $activeSlave.devotion += 4>>
<<elseif $activeSlave.devotion > 50>>
heard about these and will be @@.hotpink;happy that $his child<<if $activeSlave.pregType > 1>>ren<</if>> will have a purpose in your society other than slavery.@@ $He will miss $his child<<if $activeSlave.pregType > 1>>ren<</if>>, but $he expected that.
<<set $activeSlave.devotion += 4>>
<<elseif $activeSlave.devotion > 20>>
will naturally miss $his child<<if _curBabies > 1>>ren<</if>>, but will is broken enough to hope that $his offspring will have a better life, or at least an enjoyable one.
<<else>>
will of course @@.mediumorchid;hate you for this.@@ The mere thought of $his $fertilityAge year old daughter<<if _curBabies > 1>>s<</if>> swollen with life, and proud of it, fills $him with @@.gold;disdain.@@
<<set $activeSlave.devotion -= 4, $activeSlave.trust -= 4>>
<</if>>
<<set $breederOrphanageTotal += _curBabies>>
<</replace>> <</replace>>
<<set $nextButton = "Back">><<UpdateNextButton>> /* unlock Continue button */ <<set $nextButton = "Back">><<UpdateNextButton>> /* unlock Continue button */
<</link>> <</link>>
...@@ -237,34 +281,105 @@ Performing a cesarean section is trivial for the remote surgery to carry out. $a ...@@ -237,34 +281,105 @@ Performing a cesarean section is trivial for the remote surgery to carry out. $a
<</if>> <</if>>
<br><<link '...sent to a citizen school.'>> <br><<link '...sent to a citizen school.'>>
<<replace #_disposition>> <<replace #_disposition>>
<<set $activeSlave.devotion += 4, $citizenOrphanageTotal += _curBabies, _call = 0>> sent to one of $arcologies[0].name's citizen schools, to be brought up coequal with the arcology's other young people. $activeSlave.slaveName
<<= BirthDestinationText("Citizen",$activeSlave)>> <<if $activeSlave.fetish == "mindbroken" || $activeSlave.fuckdoll > 0>>
has few thoughts about the matter.
<<elseif $activeSlave.devotion > 95>>
loves you already, but $he'll @@.hotpink;love you even more@@ for this.
<<elseif $activeSlave.devotion > 50>>
knows about these and will be @@.hotpink;overjoyed.@@ $He will miss $his child<<if _curBabies > 1>>ren<</if>>, but $he expected that.
<<elseif $activeSlave.devotion > 20>>
will naturally miss $his child<<if _curBabies > 1>>ren<</if>>, but will @@.hotpink;take comfort@@ in the hope that $his offspring will have a better life.
<<else>>
will naturally retain some resentment over being separated from $his child<<if _curBabies > 1>>ren<</if>>, but this should be balanced by hope that $his offspring will have a better life.
<</if>>
<<set $activeSlave.devotion += 4, $citizenOrphanageTotal += _curBabies>>
<</replace>> <</replace>>
<<set $nextButton = "Back">><<UpdateNextButton>> /* unlock Continue button */ <<set $nextButton = "Back">><<UpdateNextButton>> /* unlock Continue button */
<</link>> <</link>>
//Will cost <<print cashFormat(100)>> weekly// //Will cost <<print cashFormat(100)>> weekly//
<br><<link '...sent to be raised privately.'>> <br><<link '...sent to be raised privately.'>>
<<replace #_disposition>> <<replace #_disposition>>
<<set $activeSlave.devotion += 6, $privateOrphanageTotal += _curBabies, _call = 0>> The child<<if _curBabies > 1>>ren are<<else>> is<</if>> sent to be privately raised, to be brought up as a future high class citizen. $activeSlave.slaveName
The <<= BirthDestinationText("Private",$activeSlave)>> <<if $activeSlave.fetish == "mindbroken" || $activeSlave.fuckdoll > 0>>
has few thoughts about the matter.
<<elseif $activeSlave.devotion > 95>>
will @@.hotpink;worship you utterly@@ for this.
<<elseif $activeSlave.devotion > 50>>
understands that this is the best possible outcome for the offspring of slave, and will be @@.hotpink;overjoyed.@@
<<elseif $activeSlave.devotion > 20>>
will miss $his child<<if _curBabies > 1>>ren<</if>>, but will be @@.hotpink;very grateful,@@ since $he'll understand this is the best possible outcome for a slave mother.
<<else>>
will resent being separated from $his child<<if _curBabies > 1>>ren<</if>>, but @@.hotpink;should understand and be grateful@@ that this is the best possible outcome here.
<</if>>
The child<<if _curBabies > 1>>ren<</if>> will be raised privately, with expert care and tutoring, an expensive proposition.
<<set $activeSlave.devotion += 6, $privateOrphanageTotal += _curBabies>>
<</replace>> <</replace>>
<<set $nextButton = "Back">><<UpdateNextButton>> /* unlock Continue button */ <<set $nextButton = "Back">><<UpdateNextButton>> /* unlock Continue button */
<</link>> <</link>>
//Will cost <<print cashFormat(500)>> weekly// //Will cost <<print cashFormat(500)>> weekly//
<<elseif _lostBabies != 1 && $DefaultBirthDestination != "individually decided fates">> <<elseif _lostBabies != 1 && $DefaultBirthDestination != "individually decided fates">>
<<set _call = 1>> $His <<if _curBabies > 1>>babies<<else>>baby<</if>> were sent to $DefaultBirthDestination. $His <<if _curBabies > 1>>babies<<else>>baby<</if>> were sent to $DefaultBirthDestination. $activeSlave.slaveName
<<switch $DefaultBirthDestination>> <<switch $DefaultBirthDestination>>
<<case "an orphanage">> <<case "an orphanage">>
<<= BirthDestinationText("Orphanage",$activeSlave)>> <<if $activeSlave.devotion > 95>>
worships you so completely that $he will not resent this.
<<elseif $activeSlave.devotion > 50>>
is devoted to you, but $he will @@.mediumorchid;struggle to accept this.@@
<<set $activeSlave.devotion -= 2>>
<<elseif $activeSlave.devotion > 20>>
has accepted being a sex slave, but $he will @@.mediumorchid;resent this intensely.@@
<<set $activeSlave.devotion -= 3>>
<<else>>
will of course @@.mediumorchid;hate you for this.@@
<<set $activeSlave.devotion -= 4>>
<</if>>
<<set $slaveOrphanageTotal += _curBabies>> <<set $slaveOrphanageTotal += _curBabies>>
<<case "a citizen school">> <<case "a citizen school">>
<<= BirthDestinationText("Citizen",$activeSlave)>> <<if $activeSlave.devotion > 95>>
loves you already, but <<print $he>>'ll @@.hotpink;love you even more@@ for this.
<<elseif $activeSlave.devotion > 50>>
knows about these and will be @@.hotpink;overjoyed.@@ $He will miss $his child<<if _curBabies > 1>>ren<</if>>, but $he expected that.
<<elseif $activeSlave.devotion > 20>>
will naturally miss $his child<<if _curBabies > 1>>ren<</if>>, but will @@.hotpink;take comfort@@ in the hope that $his offspring will have a better life.
<<else>>
will naturally retain some resentment over being separated from $his child<<if _curBabies > 1>>ren<</if>>, but this should be balanced by hope that $his offspring will have a better life.
<</if>>
<<set $activeSlave.devotion += 4, $citizenOrphanageTotal += _curBabies>> <<set $activeSlave.devotion += 4, $citizenOrphanageTotal += _curBabies>>
<<case "a private school">> <<case "a private school">>
<<= BirthDestinationText("Private",$activeSlave)>> <<if $activeSlave.devotion > 95>>
will @@.hotpink;worship you utterly@@ for this.
<<elseif $activeSlave.devotion > 50>>
understands that this is the best possible outcome for the offspring of slave, and will be @@.hotpink;overjoyed.@@
<<elseif $activeSlave.devotion > 20>>
will miss $his child<<if _curBabies > 1>>ren<</if>>, but will be @@.hotpink;very grateful,@@ since <<print $he>>'ll understand this is the best possible outcome for a slave mother.
<<else>>
will resent being separated from $his child<<if _curBabies > 1>>ren<</if>>, but @@.hotpink;should understand and be grateful@@ that this is the best possible outcome here.
<</if>>
The child<<if _curBabies > 1>>ren<</if>> will be raised privately, with expert care and tutoring, an expensive proposition.
<<set $activeSlave.devotion += 6, $privateOrphanageTotal += _curBabies>> <<set $activeSlave.devotion += 6, $privateOrphanageTotal += _curBabies>>
<<case "the market">> <<case "the market">>
<<= BirthDestinationText("Sold",$activeSlave)>> <<if $activeSlave.prestige > 1 || $activeSlave.pornPrestige > 2>>
<<set _babyCost = random(-12,100)>>
<<if $activeSlave.prematureBirth > 0>><<set _babyCost = random(-32,40)>><</if>>
<<else>>
<<set _babyCost = random(-12,12)>>
<<if $activeSlave.prematureBirth > 0>><<set _babyCost = -45>><</if>>
<</if>>
$His <<if _curBabies > 1>>babies<<else>>baby<</if>> were sold for <<if _curBabies > 1>>a total of <</if>>@@.yellowgreen;<<print cashFormat(_curBabies*(50+_babyCost))>>.@@<<if $activeSlave.prematureBirth == 1>> A low price due to the added costs of caring for them.<</if>>
<<if $activeSlave.devotion > 95>>
$He adheres to your thoughts so strongly that even though you backed out of caring for $his child<<if _curBabies > 1>>ren<</if>>, $he still truly believes you are doing $him an honor.
<<elseif $activeSlave.devotion > 50>>
$He is @@.mediumorchid;deeply hurt@@ by your sudden decision to sell $his child<<if _curBabies > 1>>ren<</if>> instead of having <<if _curBabies > 1>>them<<else>>it<</if>> cared for. $His trust in your words @@.gold;wavers@@ as $he thinks of $his child<<if _curBabies > 1>>ren<</if>>'s future.
<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>>
<<elseif $activeSlave.devotion > 20>>
$He is @@.mediumorchid;devastated@@ by your sudden decision to sell $his child<<if _curBabies > 1>>ren<</if>> instead of having <<if _curBabies > 1>>them<<else>>it<</if>> cared for. $His mind struggles to comprehend @@.gold;such betrayal.@@
<<set $activeSlave.trust -= 10, $activeSlave.devotion -= 10>>
<<else>>
For a moment, $he saw a glimmer of good in you; @@.mediumorchid;$he was clearly wrong.@@ $His mind struggles to comprehend @@.gold;why $he could ever even thing of trusting such a person.@@
<<set $activeSlave.trust -= 30, $activeSlave.devotion -= 30>>
<</if>>
<<set $cash += _curBabies*(50+_babyCost)>>
<</switch>> <</switch>>
<<else>> <<else>>
<<set $nextButton = "Back">><<UpdateNextButton>> /* unlock Continue button */ <<set $nextButton = "Back">><<UpdateNextButton>> /* unlock Continue button */
......
...@@ -198,22 +198,24 @@ ...@@ -198,22 +198,24 @@
From there, $his child<<if _curBabies > 1>>ren are<<else>> is<</if>> collected by the Societal Elite to be raised into upstanding members of the new society. From there, $his child<<if _curBabies > 1>>ren are<<else>> is<</if>> collected by the Societal Elite to be raised into upstanding members of the new society.
<<elseif $Cash4Babies == 1 && $DefaultBirthDestination !== "the market">> <<elseif $Cash4Babies == 1 && $DefaultBirthDestination !== "the market">>
<<set _lostBabies = 1>> <<set _lostBabies = 1>>
<<= BirthDestinationText("Sold",$slaves[_b])>> <<set _babyCost = random(-12,12)>>
<<if $slaves[_b].prematureBirth == 1>><<set _babyCost = -45>><</if>>
$His <<if _curBabies > 1>>babies<<else>>baby<</if>> sold for <<if _curBabies > 1>>a total of <</if>>@@.yellowgreen;<<print cashFormat(_curBabies*(50+_babyCost))>>.@@<<if $slaves[_b].prematureBirth == 1>> A low price due to the added costs of caring for them.<</if>>
<<run cashX((_curBabies*(50+_babyCost)), "babyTransfer")>>
<</if>> <</if>>
<<if _lostBabies != 1 && $universalRulesChildrenBecomeBreeders > 0 && $arcologies[0].FSRepopulationFocus > 40 && $DefaultBirthDestination === "individually decided fates">> <<if _lostBabies != 1 && $universalRulesChildrenBecomeBreeders > 0 && $arcologies[0].FSRepopulationFocus > 40 && $DefaultBirthDestination === "individually decided fates">>
<<set _lostBabies = 1>> <<set _lostBabies = 1>>
$His <<= BirthDestinationText("Breeder",$slaves[_b])>> $His child<<if _curBabies > 1>>ren are<<else>> is<</if>> sent to one of $arcologies[0].name's future minded schools, to be administered fertility and virility treatments as well as be brought up to take pride in reproduction. Hopefully there they will be trained to not suffer the same fate.
<<set $breederOrphanageTotal += _count>> <<set $breederOrphanageTotal += _count>>
<<elseif _lostBabies != 1 && $DefaultBirthDestination === "individually decided fates" && $universalRulesChildrenBecomeBreeders < 1>> <<elseif _lostBabies != 1 && $DefaultBirthDestination === "individually decided fates" && $universalRulesChildrenBecomeBreeders < 1>>
Unless you provide otherwise, the child<<if _curBabies > 1>>ren<</if>> will be remanded to one of $arcologies[0].name's slave orphanages. Unless you provide otherwise, the child<<if _curBabies > 1>>ren<</if>> will be remanded to one of $arcologies[0].name's slave orphanages.
<<set _call = 1>> <<= BirthDestinationText("Orphanage",$slaves[_b])>>
<<set $slaveOrphanageTotal += _count>> <<set $slaveOrphanageTotal += _count>>
<<capture $i, $dispositionId, _count>> <<capture $i, $dispositionId, _count>>
<br> <br>
<<if $arcologies[0].FSRepopulationFocus > 40>> <<if $arcologies[0].FSRepopulationFocus > 40>>
<<link 'Send them to a breeder school'>> <<link 'Send them to a breeder school'>>
<<replace `"#" + $dispositionId`>> <<replace `"#" + $dispositionId`>>
The child<<if _count > 1>>ren are<<else>> is<</if>> <<= BirthDestinationText("Breeder",$slaves[_b])>> The child<<if _count > 1>>ren are<<else>> is<</if>> sent to one of $arcologies[0].name's future minded schools, to be administered fertility and virility treatments as well as be brought up to take pride in reproduction. Hopefully there they will be trained to not suffer the same fate.
<<set $breederOrphanageTotal += _count, $slaveOrphanageTotal -= _count>> <<set $breederOrphanageTotal += _count, $slaveOrphanageTotal -= _count>>
<</replace>> <</replace>>
<</link>> <</link>>
...@@ -221,14 +223,14 @@ ...@@ -221,14 +223,14 @@
<</if>> <</if>>
<<link 'Send them to a citizen school'>> <<link 'Send them to a citizen school'>>
<<replace `"#" + $dispositionId`>> <<replace `"#" + $dispositionId`>>
The child<<if _count > 1>>ren are<<else>> is<</if>> <<= BirthDestinationText("Citizen",$slaves[_b])>> The child<<if _count > 1>>ren are<<else>> is<</if>> sent to one of $arcologies[0].name's citizen schools, to be brought up coequal with the arcology's other young people.
<<set $slaves[_b].devotion += 4, $citizenOrphanageTotal += _count, $slaveOrphanageTotal -= _count>> <<set $slaves[_b].devotion += 4, $citizenOrphanageTotal += _count, $slaveOrphanageTotal -= _count>>
<</replace>> <</replace>>
<</link>> <</link>>
//Will cost <<print cashFormat(100)>> weekly// //Will cost <<print cashFormat(100)>> weekly//
| <<link 'Have them raised privately'>> | <<link 'Have them raised privately'>>
<<replace `"#" + $dispositionId`>> <<replace `"#" + $dispositionId`>>
The <<= BirthDestinationText("Private",$slaves[_b])>> The child<<if _count > 1>>ren are<<else>> is<</if>> sent to be privately raised, to be brought up as a future high class citizen.
<<set $slaves[_b].devotion += 6, $privateOrphanageTotal += _count, $slaveOrphanageTotal -= _count>> <<set $slaves[_b].devotion += 6, $privateOrphanageTotal += _count, $slaveOrphanageTotal -= _count>>
<</replace>> <</replace>>
<</link>> <</link>>
...@@ -237,14 +239,20 @@ ...@@ -237,14 +239,20 @@
<<if $slaves[_b].prestige > 1 || $slaves[_b].pornPrestige > 2>> <<if $slaves[_b].prestige > 1 || $slaves[_b].pornPrestige > 2>>
| <<link 'Send them to auction'>> | <<link 'Send them to auction'>>
<<replace `"#" + $dispositionId`>> <<replace `"#" + $dispositionId`>>
<<= BirthDestinationText("Sold",$slaves[_b])>> <<set _babyCost = random(-12,12)>>
<<if $slaves[_b].prematureBirth == 1>><<set _babyCost = -45>><</if>>
$His <<if _curBabies > 1>>babies<<else>>baby<</if>> sold for <<if _curBabies > 1>>a total of <</if>>@@.yellowgreen;<<print cashFormat(_curBabies*(50+_babyCost))>>.@@<<if $slaves[_b].prematureBirth == 1>> A low price due to the added costs of caring for them.<</if>>
<<run cashX((_curBabies*(50+_babyCost)), "babyTransfer")>>
<<set $slaveOrphanageTotal -= _count>> <<set $slaveOrphanageTotal -= _count>>
<</replace>> <</replace>>
<</link>> <</link>>
<<else>> <<else>>
| <<link 'Sell them anyway'>> | <<link 'Sell them anyway'>>
<<replace `"#" + $dispositionId`>> <<replace `"#" + $dispositionId`>>
<<= BirthDestinationText("Sold",$slaves[_b])>> <<set _babyCost = random(-12,12)>>
<<if $slaves[_b].prematureBirth == 1>><<set _babyCost = -45>><</if>>
$His <<if _curBabies > 1>>babies<<else>>baby<</if>> sold for <<if _curBabies > 1>>a total of <</if>>@@.yellowgreen;<<print cashFormat(_curBabies*(50+_babyCost))>>.@@<<if $slaves[_b].prematureBirth == 1>> A low price due to the added costs of caring for them.<</if>>
<<run cashX((_curBabies*(50+_babyCost)), "babyTransfer")>>
<<set $slaveOrphanageTotal -= _count>> <<set $slaveOrphanageTotal -= _count>>
<</replace>> <</replace>>
<</link>> <</link>>
...@@ -254,7 +262,11 @@ ...@@ -254,7 +262,11 @@
<</if>> <</if>>
<</span>> <</span>>
<<elseif $Cash4Babies == 1 && _curBabies > 0 && $DefaultBirthDestination === "individually decided fates" && $universalRulesChildrenBecomeBreeders < 1>> <<elseif $Cash4Babies == 1 && _curBabies > 0 && $DefaultBirthDestination === "individually decided fates" && $universalRulesChildrenBecomeBreeders < 1>>
<<= BirthDestinationText("Sold",$slaves[_b])>> <br><br>
<<set _babyCost = random(-12,12)>>
<<if $slaves[_b].prematureBirth == 1>><<set _babyCost = -45>><</if>>
$His <<if _curBabies > 1>>babies<<else>>baby<</if>> were sold for <<if _curBabies > 1>>a total of <</if>>@@.yellowgreen;<<print cashFormat(_curBabies*(50+_babyCost))>>.@@<<if $slaves[_b].prematureBirth == 1>> A low price due to the added costs of caring for them.<</if>>
<<run cashX((_curBabies*(50+_babyCost)), "babyTransfer")>>
<</if>> <</if>>
<<if $arcologies[0].FSRestart != "unset" && _curBabies > 0 && $eugenicsFullControl != 1>> <<if $arcologies[0].FSRestart != "unset" && _curBabies > 0 && $eugenicsFullControl != 1>>
......
...@@ -912,23 +912,59 @@ All in all, ...@@ -912,23 +912,59 @@ All in all,
<<set $slaves[$i].trust += 3, $slaves[$i].devotion += 3>> <<set $slaves[$i].trust += 3, $slaves[$i].devotion += 3>>
<<set _lostBabies = 0>> <<set _lostBabies = 0>>
<<else>> <<else>>
<<= BirthDestinationText("Sold",$slaves[$i])>> $His <<if _curBabies > 1>>babies<<else>>baby<</if>> sold for <<if _curBabies > 1>>a total of <</if>>@@.yellowgreen;<<print cashFormat(_curBabies*(50+_babyCost))>>.@@<<if $slaves[$i].prematureBirth == 1>> A low price due to the added costs of caring for them.<</if>>
<<set $cash += _curBabies*(50+_babyCost)>>
<</if>> <</if>>
<</if>> <</if>>
<<if _lostBabies != 1 && $universalRulesChildrenBecomeBreeders > 0 && $arcologies[0].FSRepopulationFocus > 40 && $DefaultBirthDestination === "individually decided fates">> <<if _lostBabies != 1 && $universalRulesChildrenBecomeBreeders > 0 && $arcologies[0].FSRepopulationFocus > 40 && $DefaultBirthDestination === "individually decided fates">>
<<set _lostBabies = 1>> <<set _lostBabies = 1>>
$His <<= BirthDestinationText("Breeder",$slaves[$i])>> $His child<<if _count > 1>>ren are<<else>> is<</if>> sent to one of $arcologies[0].name's future minded schools, to be administered fertility and virility treatments as well as be brought up to take pride in reproduction. $slaves[$i].slaveName
<<set $breederOrphanageTotal += _curBabies>> <<if $slaves[$i].devotion > 95>>
<<elseif _lostBabies != 1 && $DefaultBirthDestination === "individually decided fates" && $universalRulesChildrenBecomeBreeders < 1>> loves you already, but <<print $he>>'ll @@.hotpink;love you even more@@ for this. $He can't wait to see $his child<<if _count > 1>>ren<</if>> proudly furthering your cause.
Unless you provide otherwise, the child<<if _curBabies > 1>>ren<</if>> will be remanded to one of $arcologies[0].name's slave orphanages. <<set $slaves[$i].devotion += 4>>
<<set _call = 1>> <<= BirthDestinationText("Orphanage",$slaves[$i])>> <<elseif $slaves[$i].devotion > 50>>
heard about these and will be @@.hotpink;happy that $his child<<if _count > 1>>ren<</if>> will have a purpose in your society other than slavery.@@ $He will miss $his child<<if _count > 1>>ren<</if>>, but $he expected that.
<<set $slaves[$i].devotion += 4>>
<<elseif $slaves[$i].devotion > 20>>
will naturally miss $his child<<if _count > 1>>ren<</if>>, but will is broken enough to hope that $his offspring will have a better life, or at least an enjoyable one.
<<else>>
will of course @@.mediumorchid;hate you for this.@@ The mere thought of $his $fertilityAge year old daughter<<if _count > 1>>s<</if>> swollen with life, and proud of it, fills $him with @@.gold;disdain.@@
<<set $slaves[$i].devotion -= 4, $slaves[$i].trust -= 4>>
<</if>>
<<set $breederOrphanageTotal += _count, $slaveOrphanageTotal -= _count>>
<<elseif _lostBabies != 1 && $DefaultBirthDestination === "anywhere" && $universalRulesChildrenBecomeBreeders < 1>>
<<set $slaveOrphanageTotal += _curBabies>> <<set $slaveOrphanageTotal += _curBabies>>
Unless you provide otherwise, the child<<if _curBabies > 1>>ren<</if>> will be remanded to one of $arcologies[0].name's slave orphanages. $slaves[$i].slaveName
<<if $slaves[$i].devotion > 95>>
worships you so completely that $he will not resent this.
<<elseif $slaves[$i].devotion > 50>>
is devoted to you, but $he will @@.mediumorchid;struggle to accept this.@@
<<set $slaves[$i].devotion -= 2>>
<<elseif $slaves[$i].devotion > 20>>
has accepted being a sex slave, but $he will @@.mediumorchid;resent this intensely.@@
<<set $slaves[$i].devotion -= 3>>
<<else>>
will of course @@.mediumorchid;hate you for this.@@
<<set $slaves[$i].devotion -= 4>>
<</if>>
<<capture $i, $dispositionId, _count>> <<capture $i, $dispositionId, _count>>
<br> <br>
<<if $arcologies[0].FSRepopulationFocus > 40>> <<if $arcologies[0].FSRepopulationFocus > 40>>
<<link 'Send them to a breeder school'>> <<link 'Send them to a breeder school'>>
<<replace `"#" + $dispositionId`>> <<replace `"#" + $dispositionId`>>
The child<<if _count > 1>>ren are<<else>> is<</if>> <<= BirthDestinationText("Breeder",$slaves[$i])>> The child<<if _count > 1>>ren are<<else>> is<</if>> sent to one of $arcologies[0].name's future minded schools, to be administered fertility and virility treatments as well as be brought up to take pride in reproduction. $slaves[$i].slaveName
<<if $slaves[$i].devotion > 95>>
loves you already, but <<print $he>>'ll @@.hotpink;love you even more@@ for this. $He can't wait to see $his child<<if _count > 1>>ren<</if>> proudly furthering your cause.
<<set $slaves[$i].devotion += 4>>
<<elseif $slaves[$i].devotion > 50>>
heard about these and will be @@.hotpink;happy that $his child<<if _count > 1>>ren<</if>> will have a purpose in your society other than slavery.@@ $He will miss $his child<<if _count > 1>>ren<</if>>, but $he expected that.
<<set $slaves[$i].devotion += 4>>
<<elseif $slaves[$i].devotion > 20>>
will naturally miss $his child<<if _count > 1>>ren<</if>>, but will is broken enough to hope that $his offspring will have a better life, or at least an enjoyable one.
<<else>>
will of course @@.mediumorchid;hate you for this.@@ The mere thought of $his $fertilityAge year old daughter<<if _count > 1>>s<</if>> swollen with life, and proud of it, fills $him with @@.gold;disdain.@@
<<set $slaves[$i].devotion -= 4, $slaves[$i].trust -= 4>>
<</if>>
<<set $breederOrphanageTotal += _count, $slaveOrphanageTotal -= _count>> <<set $breederOrphanageTotal += _count, $slaveOrphanageTotal -= _count>>
<</replace>> <</replace>>
<</link>> <</link>>
...@@ -936,14 +972,33 @@ All in all, ...@@ -936,14 +972,33 @@ All in all,
<</if>> <</if>>
<<link 'Send them to a citizen school'>> <<link 'Send them to a citizen school'>>
<<replace `"#" + $dispositionId`>> <<replace `"#" + $dispositionId`>>
The child<<if _count > 1>>ren are<<else>> is<</if>> <<= BirthDestinationText("Citizen",$slaves[$i])>> The child<<if _count > 1>>ren are<<else>> is<</if>> sent to one of $arcologies[0].name's citizen schools, to be brought up coequal with the arcology's other young people. $slaves[$i].slaveName
<<if $slaves[$i].devotion > 95>>
loves you already, but <<print $he>>'ll @@.hotpink;love you even more@@ for this.
<<elseif $slaves[$i].devotion > 50>>
knows about these and will be @@.hotpink;overjoyed.@@ $He will miss $his child<<if _count > 1>>ren<</if>>, but $he expected that.
<<elseif $slaves[$i].devotion > 20>>
will naturally miss $his child<<if _count > 1>>ren<</if>>, but will @@.hotpink;take comfort@@ in the hope that $his offspring will have a better life.
<<else>>
will naturally retain some resentment over being separated from $his child<<if _count > 1>>ren<</if>>, but this should be balanced by hope that $his offspring will have a better life.
<</if>>
<<set $slaves[$i].devotion += 4, $citizenOrphanageTotal += _count, $slaveOrphanageTotal -= _count>> <<set $slaves[$i].devotion += 4, $citizenOrphanageTotal += _count, $slaveOrphanageTotal -= _count>>
<</replace>> <</replace>>
<</link>> <</link>>
//Will cost <<print cashFormat(100)>> weekly// //Will cost <<print cashFormat(100)>> weekly//
| <<link 'Have them raised privately'>> | <<link 'Have them raised privately'>>
<<replace `"#" + $dispositionId`>> <<replace `"#" + $dispositionId`>>
The <<= BirthDestinationText("Private",$slaves[$i])>> The child<<if _count > 1>>ren are<<else>> is<</if>> sent to be privately raised, to be brought up as a future high class citizen. $slaves[$i].slaveName
<<if $slaves[$i].devotion > 95>>
will @@.hotpink;worship you utterly@@ for this.
<<elseif $slaves[$i].devotion > 50>>
understands that this is the best possible outcome for the offspring of slave, and will be @@.hotpink;overjoyed.@@
<<elseif $slaves[$i].devotion > 20>>
will miss $his child<<if _count > 1>>ren<</if>>, but will be @@.hotpink;very grateful,@@ since <<print $he>>'ll understand this is the best possible outcome for a slave mother.
<<else>>
will resent being separated from $his child<<if _count > 1>>ren<</if>>, but @@.hotpink;should understand and be grateful@@ that this is the best possible outcome here.
<</if>>
The child<<if _count > 1>>ren<</if>> will be raised privately, with expert care and tutoring, an expensive proposition.
<<set $slaves[$i].devotion += 6, $privateOrphanageTotal += _count, $slaveOrphanageTotal -= _count>> <<set $slaves[$i].devotion += 6, $privateOrphanageTotal += _count, $slaveOrphanageTotal -= _count>>
<</replace>> <</replace>>
<</link>> <</link>>
...@@ -952,15 +1007,43 @@ All in all, ...@@ -952,15 +1007,43 @@ All in all,
<<if $slaves[$i].prestige > 1 || $slaves[$i].pornPrestige > 2>> <<if $slaves[$i].prestige > 1 || $slaves[$i].pornPrestige > 2>>
| <<link 'Send them to auction'>> | <<link 'Send them to auction'>>
<<replace `"#" + $dispositionId`>> <<replace `"#" + $dispositionId`>>
<<= BirthDestinationText("Sold",$slaves[$i])>> <<set _babyCost = random(-12,100)>>
<<set $slaveOrphanageTotal -= _count>> <<if $slaves[$i].prematureBirth == 1>><<set _babyCost = random(-32,40)>><</if>>
$His <<if _count > 1>>babies<<else>>baby<</if>> went for a <<if _curBabies > 1>>total <</if>>bid of @@.yellowgreen;<<print cashFormat(_count*(50+_babyCost))>>.@@<<if $slaves[$i].prematureBirth == 1>> A low price due to the added costs of caring for them.<</if>>
<<if $slaves[$i].devotion > 95>>
$He adheres to your thoughts so strongly that even though you backed out of caring for $his child<<if _count > 1>>ren<</if>>, $he still truly believes you are doing $him an honor.
<<elseif $slaves[$i].devotion > 50>>
$He is @@.mediumorchid;deeply hurt@@ by your sudden decision to sell $his child<<if _count > 1>>ren<</if>> instead of having <<if _count > 1>>them<<else>>it<</if>> cared for. $His trust in your words @@.gold;wavers@@ as $he thinks of $his child<<if _count > 1>>ren<</if>>'s future.
<<set $slaves[$i].trust -= 5, $slaves[$i].devotion -= 5>>
<<elseif $slaves[$i].devotion > 20>>
$He is @@.mediumorchid;devastated@@ by your sudden decision to sell $his child<<if _count > 1>>ren<</if>> instead of having <<if _count > 1>>them<<else>>it<</if>> cared for. $His mind struggles to comprehend @@.gold;such betrayal.@@
<<set $slaves[$i].trust -= 10, $slaves[$i].devotion -= 10>>
<<else>>
For a moment, $he saw a glimmer of good in you; @@.mediumorchid;$he was clearly wrong.@@ $His mind struggles to comprehend @@.gold;why $he could ever even think of trusting such a person.@@
<<set $slaves[$i].trust -= 30, $slaves[$i].devotion -= 30>>
<</if>>
<<set $cash += _curBabies*(50+_babyCost), $slaveOrphanageTotal -= _count>>
<</replace>> <</replace>>
<</link>> <</link>>
<<else>> <<else>>
| <<link 'Sell them anyway'>> | <<link 'Sell them anyway'>>
<<replace `"#" + $dispositionId`>> <<replace `"#" + $dispositionId`>>
<<= BirthDestinationText("Sold",$slaves[$i])>> <<set _babyCost = random(-12,12)>>
<<set $slaveOrphanageTotal -= _count>> <<if $slaves[$i].prematureBirth == 1>><<set _babyCost = -45>><</if>>
$His <<if _count > 1>>babies<<else>>baby<</if>> sold for <<if _curBabies > 1>>a total of <</if>>@@.yellowgreen;<<print cashFormat(_count*(50+_babyCost))>>.@@<<if $slaves[$i].prematureBirth == 1>> A low price due to the added costs of caring for them.<</if>>
<<if $slaves[$i].devotion > 95>>
$He adheres to your thoughts so strongly that even though you backed out of caring for $his child<<if _count > 1>>ren<</if>>, $he still truly believes you are doing $him an honor.
<<elseif $slaves[$i].devotion > 50>>
$He is @@.mediumorchid;deeply hurt@@ by your sudden decision to sell $his child<<if _count > 1>>ren<</if>> instead of having <<if _count > 1>>them<<else>>it<</if>> cared for. $His trust in your words @@.gold;wavers@@ as $he thinks of $his child<<if _count > 1>>ren<</if>>'s future.
<<set $slaves[$i].trust -= 5, $slaves[$i].devotion -= 5>>
<<elseif $slaves[$i].devotion > 20>>
$He is @@.mediumorchid;devastated@@ by your sudden decision to sell $his child<<if _count > 1>>ren<</if>> instead of having <<if _count > 1>>them<<else>>it<</if>> cared for. $His mind struggles to comprehend @@.gold;such betrayal.@@
<<set $slaves[$i].trust -= 10, $slaves[$i].devotion -= 10>>
<<else>>
For a moment, $he saw a glimmer of good in you; @@.mediumorchid;$he was clearly wrong.@@ $His mind struggles to comprehend @@.gold;why $he could ever even think of trusting such a person.@@
<<set $slaves[$i].trust -= 30, $slaves[$i].devotion -= 30>>
<</if>>
<<set $cash += _curBabies*(50+_babyCost), $slaveOrphanageTotal -= _count>>
<</replace>> <</replace>>
<</link>> <</link>>
<</if>> <</if>>
......
...@@ -39,19 +39,67 @@ I need to break single passage to several widgets, as it's been overcomplicated ...@@ -39,19 +39,67 @@ I need to break single passage to several widgets, as it's been overcomplicated
<<seBirthMainScene>> <<seBirthMainScene>>
<<seBirthBabies>> <<seBirthBabies>>
<<if $DefaultBirthDestination != "individually decided fates" && $universalRulesChildrenBecomeBreeders < 1>> <<if $DefaultBirthDestination != "individually decided fates" && $universalRulesChildrenBecomeBreeders < 1>>
<<set _call = 1>> $His <<if _curBabies > 1>>babies were<<else>>baby was<</if>> sent to $DefaultBirthDestination. $His <<if _curBabies > 1>>babies were<<else>>baby was<</if>> sent to $DefaultBirthDestination. $slaves[$i].slaveName
<<switch $DefaultBirthDestination>> <<switch $DefaultBirthDestination>>
<<case "an orphanage">> <<case "an orphanage">>
<<= BirthDestinationText("Orphanage",$slaves[$i])>> <<if $slaves[$i].devotion > 95>>
worships you so completely that $he will not resent this.
<<elseif $slaves[$i].devotion > 50>>
is devoted to you, but $he will @@.mediumorchid;struggle to accept this.@@
<<set $slaves[$i].devotion -= 2>>
<<elseif $slaves[$i].devotion > 20>>
has accepted being a sex slave, but $he will @@.mediumorchid;resent this intensely.@@
<<set $slaves[$i].devotion -= 3>>
<<else>>
will of course @@.mediumorchid;hate you for this.@@
<<set $slaves[$i].devotion -= 4>>
<</if>>
<<set $slaveOrphanageTotal += _curBabies>> <<set $slaveOrphanageTotal += _curBabies>>
<<case "a citizen school">> <<case "a citizen school">>
child<<if _count > 1>>ren are<<else>> is<</if>> <<= BirthDestinationText("Citizen",$slaves[$i])>> <<if $slaves[$i].devotion > 95>>
loves you already, but <<print $he>>'ll @@.hotpink;love you even more@@ for this.
<<elseif $slaves[$i].devotion > 50>>
knows about these and will be @@.hotpink;overjoyed.@@ $He will miss $his child<<if _curBabies > 1>>ren<</if>>, but $he expected that.
<<elseif $slaves[$i].devotion > 20>>
will naturally miss $his child<<if _curBabies > 1>>ren<</if>>, but will @@.hotpink;take comfort@@ in the hope that $his offspring will have a better life.
<<else>>
will naturally retain some resentment over being separated from $his child<<if _curBabies > 1>>ren<</if>>, but this should be balanced by hope that $his offspring will have a better life.
<</if>>
<<set $slaves[$i].devotion += 4, $citizenOrphanageTotal += _curBabies>> <<set $slaves[$i].devotion += 4, $citizenOrphanageTotal += _curBabies>>
<<case "a private school">> <<case "a private school">>
<<= BirthDestinationText("Private",$slaves[$i])>> <<if $slaves[$i].devotion > 95>>
will @@.hotpink;worship you utterly@@ for this.
<<elseif $slaves[$i].devotion > 50>>
understands that this is the best possible outcome for the offspring of slave, and will be @@.hotpink;overjoyed.@@
<<elseif $slaves[$i].devotion > 20>>
will miss $his child<<if _curBabies > 1>>ren<</if>>, but will be @@.hotpink;very grateful,@@ since <<print $he>>'ll understand this is the best possible outcome for a slave mother.
<<else>>
will resent being separated from $his child<<if _curBabies > 1>>ren<</if>>, but @@.hotpink;should understand and be grateful@@ that this is the best possible outcome here.
<</if>>
The child<<if _curBabies > 1>>ren<</if>> will be raised privately, with expert care and tutoring, an expensive proposition.
<<set $slaves[$i].devotion += 6, $privateOrphanageTotal += _curBabies>> <<set $slaves[$i].devotion += 6, $privateOrphanageTotal += _curBabies>>
<<case "the market">> <<case "the market">>
<<= BirthDestinationText("Sold",$slaves[$i])>> <<if $slaves[$i].prestige > 1 || $slaves[$i].pornPrestige > 2>>
<<set _babyCost = random(-12,100)>>
<<if $slaves[$i].prematureBirth > 0>><<set _babyCost = random(-32,40)>><</if>>
<<else>>
<<set _babyCost = random(-12,12)>>
<<if $slaves[$i].prematureBirth > 0>><<set _babyCost = -45>><</if>>
<</if>>
$His <<if _curBabies > 1>>babies<<else>>baby<</if>> were sold for <<if _curBabies > 1>>a total of <</if>>@@.yellowgreen;<<print cashFormat(_curBabies*(50+_babyCost))>>.@@<<if $slaves[$i].prematureBirth == 1>> A low price due to the added costs of caring for them.<</if>>
<<if $slaves[$i].devotion > 95>>
$He adheres to your thoughts so strongly that even though you backed out of caring for $his child<<if _curBabies > 1>>ren<</if>>, $he still truly believes you are doing $him an honor.
<<elseif $slaves[$i].devotion > 50>>
$He is @@.mediumorchid;deeply hurt@@ by your sudden decision to sell $his child<<if _curBabies > 1>>ren<</if>> instead of having <<if _curBabies > 1>>them<<else>>it<</if>> cared for. $His trust in your words @@.gold;wavers@@ as $he thinks of $his child<<if _curBabies > 1>>ren<</if>>'s future.
<<set $slaves[$i].trust -= 5, $slaves[$i].devotion -= 5>>
<<elseif $slaves[$i].devotion > 20>>
$He is @@.mediumorchid;devastated@@ by your sudden decision to sell $his child<<if _curBabies > 1>>ren<</if>> instead of having <<if _curBabies > 1>>them<<else>>it<</if>> cared for. $His mind struggles to comprehend @@.gold;such betrayal.@@
<<set $slaves[$i].trust -= 10, $slaves[$i].devotion -= 10>>
<<else>>
For a moment, $he saw a glimmer of good in you; @@.mediumorchid;$he was clearly wrong.@@ $His mind struggles to comprehend @@.gold;why $he could ever even thing of trusting such a person.@@
<<set $slaves[$i].trust -= 30, $slaves[$i].devotion -= 30>>
<</if>>
<<set $cash += _curBabies*(50+_babyCost)>>
<</switch>> <</switch>>
<</if>> <</if>>
<<seBirthPostpartum>> <<seBirthPostpartum>>
......
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