diff --git a/devNotes/AnatomyOfAFreeCitiesEvent.txt b/devNotes/AnatomyOfAFreeCitiesEvent.txt index 864a3f7f8ddf7bfadb9265ba340a5d9553fbd84a..c02a4cecce4f0863ba7eb63c2c1cddef7ead0dbf 100644 --- a/devNotes/AnatomyOfAFreeCitiesEvent.txt +++ b/devNotes/AnatomyOfAFreeCitiesEvent.txt @@ -15,6 +15,7 @@ Most events have some kind of precondition for when they happen. Scheduled event NonRandomEvent (26-33) <<elseif (_effectiveWeek == 14) && $badC != 1>> +<<<<<<< HEAD <<set _valid = $slaves.find(function(s) { return s.curatives > 1 || s.inflationType == "curative"; })>> <<if def _valid>> <<set $badC = 1, $Event = "bad curatives">> @@ -23,6 +24,16 @@ Most events have some kind of precondition for when they happen. Scheduled event <<set $badC = 1>> <<goto "Nonrandom Event">> <</if>> +======= + <<set _valid = $slaves.find(function(s) { return s.curatives > 1 || s.inflationType == "curative"; })>> + <<if def _valid>> + <<set $badC = 1, $Event = "bad curatives">> + <<goto "Generic Plot Events">> + <<else>> + <<set $badC = 1>> + <<goto "Nonrandom Event">> + <</if>> +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 If it is week fourteen and the player hasn't ready seen the event, a check is then made for slaves that either are on curatives or have their implants filled by curatives. If it was successful then load the "bad curatives" generic event, if unsuccessful set the flag anyway and read from the Nonrandom Event passage. @@ -100,9 +111,15 @@ For example this cut up version of "paternalist encounter" from REFS (l:106-139) <</link>> <<if $cash >= 2000>> +<<<<<<< HEAD <br><<link "Take the poor slave girl into your custody">> <br><<link "Publicly confront the citizen">> +======= + <br><<link "Take the poor slave girl into your custody">> + + <br><<link "Publicly confront the citizen">> +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 So here you can either, A) "Alert your drones and keep walking", B) if $cash is above 2000 you can take acquire the slave or C) "Publicly confront the citizen". diff --git a/devNotes/scene-guide.txt b/devNotes/scene-guide.txt index 51bb972006af40465f53f588b27042ad57e0d8e4..ae1b9b4ba2bc7d4357a3e717d60f507d276658fa 100644 --- a/devNotes/scene-guide.txt +++ b/devNotes/scene-guide.txt @@ -37,7 +37,7 @@ SHOW THIS TEXT INSTEAD IF NEITHER CONDITION IS MET, SHOW THIS <</if>> -Conditions are usually comparative (i.e. $a < $b or $b == 5 or $c != $d.e) and can be chained together with && (and) or || (or) and grouped with parens () - for example: +Conditions are usually comparative (i.e. $a < $b or $b == 5 or $c != $d.e) and can be chained together with && (and) or || (or) and grouped with parenthesis () - for example: <<if($a > 1 || ($b == 2 && $c != $a))>> lets you check that either variable A is greater than one, or both B equals two and C is not equal to A. There are also a few misc functions that let you check things like whether a slave can get pregnant or whether two slaves are mutually fertile diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index a51390e2aeea4f0f92ed9728fd72a4601bad752e..e648cfc656e67a4de19ef0c634f32a81f30b4d10 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -11198,7 +11198,7 @@ window.WombInit = function(actor) { } else if (actor.womb.length == 0 && actor.pregType != 0 && actor.broodmother == 0) { WombImpregnate(actor, actor.pregType, actor.pregSource, actor.preg); } else if (actor.womb.length == 0 && actor.pregType != 0 && actor.broodmother > 0 && actor.broodmotherOnHold < 1) { - //sorry but for already present broodmothers it's impossible to calculate fully, aproximation used. + //sorry but for already present broodmothers it's impossible to calculate fully, approximation used. var i, pw = actor.preg, bCount, bLeft; if (pw > 40) pw = 40; //to avoid disaster. bCount = Math.floor(actor.pregType/pw); @@ -11212,7 +11212,7 @@ window.WombInit = function(actor) { } if (bLeft > 0) { - WombImpregnate(actor, bLeft, actor.pregSource, i+1); // setting up leftower of fetuses. + WombImpregnate(actor, bLeft, actor.pregSource, i+1); // setting up leftover of fetuses. } } }; @@ -11523,7 +11523,7 @@ window.WombFetusCount = function(actor) return actor.womb.length; } -//give reference to fetus object, but not remove fetus, use for manupulation in the womb. +//give reference to fetus object, but not remove fetus, use for manipulation in the womb. window.WombGetFetus = function(actor, fetusNum) { WombInit(actor); @@ -11569,7 +11569,7 @@ window.WombChangeGene = function(actor, geneName, newValue) actor.womb.forEach(ft => ft.genetics[geneName] = newValue); } -// replaces untraceable fatherIDs with missingParentID. Required for concurrent pregancy to differentiate between siblings. +// replaces untraceable fatherIDs with missingParentID. Required for concurrent pregnancy to differentiate between siblings. window.MissingParentIDCorrection = function(actor) { WombInit(actor); actor.womb @@ -34686,13 +34686,13 @@ window.GenerateNewSlave = (function(){ } if (slave.boobs < 250) { - slave.nipples = jsEither(["tiny", "tiny", "tiny", "tiny", "cute", "cute", "puffy", "partially inverted"]); + slave.nipples = jsEither(["cute", "cute", "partially inverted", "puffy", "tiny", "tiny", "tiny", "tiny"]); } else if (slave.boobs < 500) { - slave.nipples = jsEither(["tiny", "cute", "cute", "cute", "puffy", "partially inverted"]); + slave.nipples = jsEither(["cute", "cute", "cute", "partially inverted", "puffy", "tiny"]); } else if (slave.boobs < 1000) { - slave.nipples = jsEither(["tiny", "cute", "cute", "cute", "puffy", "puffy", "partially inverted", "inverted"]); + slave.nipples = jsEither(["cute", "cute", "cute", "inverted", "partially inverted", "puffy", "puffy", "tiny"]); } else { - slave.nipples = jsEither(["cute", "puffy", "partially inverted", "inverted", "huge"]); + slave.nipples = jsEither(["cute", "huge", "inverted", "partially inverted", "puffy"]); } }; @@ -38471,8 +38471,8 @@ window.Beauty = (function() { window.FResult = (function() { "use strict"; - // we can't initialise our global variables on load, because SugarCube.State isn't initialised - // instead, declare them and initialise on run time + // we can't initialize our global variables on load, because SugarCube.State isn't initialized + // instead, declare them and initialize on run time let V, result, incest_bonus; function FResult(slave) { V = State.variables; diff --git a/slave variables documentation - Pregmod.txt b/slave variables documentation - Pregmod.txt index cca112a417609edfd3d8e7efdc8d587790c15eac..1d94088030aa8d8c166dfcb66c0dbb255d03ee6e 100644 --- a/slave variables documentation - Pregmod.txt +++ b/slave variables documentation - Pregmod.txt @@ -2640,28 +2640,28 @@ is fetish known to player behavioralFlaw: "none" -"arrogant" - clings to her dignity, thinks slavery is beneath her -"bitchy" - can't keep her opinions to herself -"odd" - says and does odd things -"hates men" - hates men -"hates women" - hates women -"gluttonous" - likes eating, gains weight -"anorexic" - dislikes eating and being forced to eat, loses weight -"devout" - resistance through religious faith -"liberated" - believes slavery is wrong +"arrogant" - clings to her dignity, thinks slavery is beneath her +"bitchy" - can't keep her opinions to herself +"odd" - says and does odd things +"hates men" - hates men +"hates women" - hates women +"gluttonous" - likes eating, gains weight +"anorexic" - dislikes eating and being forced to eat, loses weight +"devout" - resistance through religious faith +"liberated" - believes slavery is wrong behavioralQuirk: "none" -"confident" - believes she has value as a slave -"cutting" - often has as witty or cunning remark ready, knows when to say it -"funny" - is funny -"fitness" - loves working out -"adores women" - likes spending time with women -"adores men" - likes spending time with men -"insecure" - defines herself on the thoughts of others -"sinful" - breaks cultural norms -"advocate" - advocates slavery +"confident" - believes she has value as a slave +"cutting" - often has as witty or cunning remark ready, knows when to say it +"funny" - is funny +"fitness" - loves working out +"adores women" - likes spending time with women +"adores men" - likes spending time with men +"insecure" - defines herself on the thoughts of others +"sinful" - breaks cultural norms +"advocate" - advocates slavery sexualFlaw: @@ -2689,6 +2689,7 @@ sexualFlaw: sexualQuirk: "none" +<<<<<<< HEAD "gagfuck queen" - can take a facefucking "painal queen" - knows how far she can go without getting hurt "strugglefuck queen" - knows how much resistance her partners want @@ -2698,6 +2699,17 @@ sexualQuirk: "caring" - enjoys bring her partners to orgasm "unflinching" - willing to do anything "size queen" - prefers big cocks +======= +"gagfuck queen" - can take a facefucking +"painal queen" - knows how far she can go without getting hurt +"strugglefuck queen" - knows how much resistance her partners want +"tease" - is a tease +"romantic" - enjoys the closeness of sex +"perverted" - enjoys breaking sexual boundaries +"caring" - enjoys bring her partners to orgasm +"unflinching" - willing to do anything +"size queen" - prefers big cocks +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 geneticQuirks: @@ -3435,18 +3447,18 @@ To test if your slave is functioning, start up a normal game, swap to cheat mode -@@.green; - something good or health/libido/attraction gain -@@.red; - something bad or health/libido/attraction loss -@@.hotpink; - devotion gain -@@.mediumorchid; - devotion loss +@@.green; - something good or health/libido/attraction gain +@@.red; - something bad or health/libido/attraction loss +@@.hotpink; - devotion gain +@@.mediumorchid; - devotion loss @@.mediumaquamarine; - trust gain -@@.gold; - trust loss -@@.coral; - notable change and fetish loss -@@.lightcoral; - fetish strength gain, fetish acquisition and fetish discovery -@@.lime; - growth/improvement to a body part (reversed in some cases) -@@.orange; - shrinking/degradation of a body part (reversed in some cases) -@@.lightsalmon; - rivalry -@@.lightgreen; - relationship +@@.gold; - trust loss +@@.coral; - notable change and fetish loss +@@.lightcoral; - fetish strength gain, fetish acquisition and fetish discovery +@@.lime; - growth/improvement to a body part (reversed in some cases) +@@.orange; - shrinking/degradation of a body part (reversed in some cases) +@@.lightsalmon; - rivalry +@@.lightgreen; - relationship wombJS.tw subsystem: diff --git a/src/Mods/DinnerParty/dinnerPartyExecution.tw b/src/Mods/DinnerParty/dinnerPartyExecution.tw index 3a50c2c44f6d87b1249dc9ed2520338112b20797..cee2449b8f2429deb0ec846ae6b35ce28e37e409 100644 --- a/src/Mods/DinnerParty/dinnerPartyExecution.tw +++ b/src/Mods/DinnerParty/dinnerPartyExecution.tw @@ -345,12 +345,12 @@ <<set _dishRating -= 1>> <</if>> <<if $activeSlave.lipsImplant > 0>> - All of sudden one of your guest's face turns red, then purple. It is clear he is choking on something. You leap out of your seat, rush over to him and start the Heimlich maneuver. On your third thrust into his abdominal, a piece of lip implants flies out of his mouth and hits another guest square in the face. You apologize profusely for your carelessness in selecting the meat. The rest of your guests had a great laugh at your @@.red;expense@@. + All of sudden one of your guests' face turns red, then purple. It is clear he is choking on something. You leap out of your seat, rush over to him and start the Heimlich maneuver. On your third thrust into his abdominal, a piece of lip implants flies out of his mouth and hits another guest square in the face. You apologize profusely for your carelessness in selecting the meat. The rest of your guests had a great laugh at your @@.red;expense@@. <<set _dishRating -= 5>> <<set $rep -= 500>> <</if>> <<if $activeSlave.buttImplant > 0>> - All of sudden one of your guest clutches his chest. His face turns pale as a ghost, foaming at the mouth falls over onto the table. You rush over to him, it is clear he is not breathing. You don't know what's wrong with him. It could not have been poison, since any toxins in the food would have been detected by your virtual assistant. You order your slave to rush the man to the nearest emergency clinic. You were informed later that he had died from ingesting a silicone butt implant. Your reputation @@.red;suffers@@ greatly due to this incident. + All of sudden one of your guests clutches his chest. His face turns pale as a ghost, foaming at the mouth falls over onto the table. You rush over to him, it is clear he is not breathing. You don't know what's wrong with him. It could not have been poison, since any toxins in the food would have been detected by your virtual assistant. You order your slave to rush the man to the nearest emergency clinic. You were informed later that he had died from ingesting a silicone butt implant. Your reputation @@.red;suffers@@ greatly due to this incident. <<set _dishRating -= 10>> <<set $rep -= 5000>> <</if>> @@ -440,7 +440,7 @@ <<set $HeadGirl.vagina += 1>> <</if>> One man moves to the head of $HeadGirl.slaveName and shoved his cock into _his2 mouth, fucking _his2 throat roughly. He buries his cock deep down _his2 throat all the way to his balls. - He places both hands around _his2 neck and squeezes with every stroke. Your head girl's face turns red and gags uncontrollably. _His2 eyes rolls back as another man shoved his hard cock in _his2 asshole, sodomizing _him2 with no mercy. As your head girl made squeaking noises in pain, serval guests picked up forks and jabbed it at _his2 butt and _his2 back chanting "more meat... more meat..." and "squeal piggy squeal". You slump over your chair at the head of the table. Gulping down your drink, fighting back the urge to order your security drones to open fire on those men. You know those men would never dare to harm your head girl, not permanently, at least not anything your remote surgery couldn't fix. It's not as if you haven't done worse to your slaves, but the message is clear, the attack on your head girl was meant as disrespect and an insult towards you. Raping your head girl is like raping you. You stare at the group of men gang raping your head girl at the end of your own dining table, you burning their @@.yellow;names and their faces@@ into your memory as they take turns fucking _him2. They make use of _his2 every hole. When they are done, _he2 was left on the floor, battered and bruised, covered in cum and blood from superficial wounds. + He places both hands around _his2 neck and squeezes with every stroke. Your head girl's face turns red and gags uncontrollably. _His2 eyes rolls back as another man shoved his hard cock in _his2 asshole, sodomizing _him2 with no mercy. As your head girl made squeaking noises in pain, several guests picked up forks and jabbed it at _his2 butt and _his2 back chanting "more meat... more meat..." and "squeal piggy squeal". You slump over your chair at the head of the table. Gulping down your drink, fighting back the urge to order your security drones to open fire on those men. You know those men would never dare to harm your head girl, not permanently, at least not anything your remote surgery couldn't fix. It's not as if you haven't done worse to your slaves, but the message is clear, the attack on your head girl was meant as disrespect and an insult towards you. Raping your head girl is like raping you. You stare at the group of men gang raping your head girl at the end of your own dining table, you burning their @@.yellow;names and their faces@@ into your memory as they take turns fucking _him2. They make use of _his2 every hole. When they are done, _he2 was left on the floor, battered and bruised, covered in cum and blood from superficial wounds. The leader of the pack pulls out his half erect cock pees on your head girl as a final insult towards you. The poor _girl2 is so spent that _he2 doesn't even flinch at the urine hitting _his2 face. He finishes showering your head girl, then turns towards you and says smilingly: <br><br> @@ -450,9 +450,9 @@ <<else>> //madam//, <</if>> - //you trained a fine obedient slave. _He2 certainly understands _his2 position well."// You grit your teeth faking a smile, repeating the old the old adage, @@.yellow;revenge is dish best served cold@@. You have made some enemies tonight; you begin to plan a military conquest of them all. You will enjoy storming their arcologies and making them pay for this insult. + //you trained a fine obedient slave. _He2 certainly understands _his2 position well."// You grit your teeth faking a smile, mentally repeating the old adage: @@.yellow;revenge is dish best served cold@@. You have made some enemies tonight; you begin to plan a military conquest of them all. You will enjoy storming their arcologies and making them pay for this insult. <br><br> - The abuse your head girl suffers had @@.red;decreased _his2 health@@ and _he2 is @@.mediumorchid;less devoted@@ to you as you allowed _him2 to be abused. + The abuse your head girl suffers had @@.red;decreased _his2 health@@ and _he2 is @@.mediumorchid;less devoted@@ to you, as you allowed _him2 to be abused. <br> <<set $HeadGirl.health -= 20>> <<set $HeadGirl.devotion -= 20>> diff --git a/src/SecExp/attackGenerator.tw b/src/SecExp/attackGenerator.tw index ff6782f29054c2da0bfaa216c2f240f922f48ca2..be593a973cacd16d11330ea703ef6e0744e125a4 100644 --- a/src/SecExp/attackGenerator.tw +++ b/src/SecExp/attackGenerator.tw @@ -40,7 +40,7 @@ <<set $lastAttackWeeks = 0>> <<set $leadingTroops = "assistant">> <<set $deployableUnits = 2 * $readiness>> - <<set $chosenTactic = either("Bait and Bleed", "Guerrilla", "Choke Points", "Interior Lines", "Pincer Maneuver", "Defense In Depth", "Blitzkrieg", "Human Wave")>> + <<set $chosenTactic = either("Bait and Bleed", "Blitzkrieg", "Choke Points", "Defense In Depth", "Guerrilla", "Human Wave", "Interior Lines", "Pincer Maneuver")>> /* _type is the chance out of 100 of an attack of that type happening */ <<set _raider = 25>> <<set _oldWorld = 25>> @@ -115,15 +115,15 @@ /* terrain */ <<if $terrain == "urban">> - <<set $battleTerrain = either("outskirts","urban","wasteland")>> + <<set $battleTerrain = either("outskirts", "urban", "wasteland")>> <<elseif $terrain == "rural">> - <<set $battleTerrain = either("hills","outskirts","rural","wasteland")>> + <<set $battleTerrain = either("hills", "outskirts", "rural", "wasteland")>> <<elseif $terrain == "ravine">> - <<set $battleTerrain = either("mountains","outskirts","hills","wasteland")>> + <<set $battleTerrain = either("hills", "mountains", "outskirts", "wasteland")>> <<elseif $terrain == "marine">> - <<set $battleTerrain = either("coast","outskirts","hills","wasteland")>> + <<set $battleTerrain = either("coast", "hills", "outskirts", "wasteland")>> <<elseif $terrain == "oceanic">> - <<set $battleTerrain = either("coast","outskirts","hills","wasteland")>> + <<set $battleTerrain = either("coast", "hills", "outskirts", "wasteland")>> <<else>> <<set $battleTerrain = "error">> <</if>> diff --git a/src/SecExp/attackHandler.tw b/src/SecExp/attackHandler.tw index 3a6fee13345822830ff5f66c5bba53a612be34c9..24e4271c114feb962eef9ad8c73b5d99e5665a52 100644 --- a/src/SecExp/attackHandler.tw +++ b/src/SecExp/attackHandler.tw @@ -61,912 +61,1036 @@ <<else>> -/*Init*/ -<<if $majorBattle == 0>> - <<set _turns = $maxTurns>> -<</if>> -<<set _turn = 0>> -<<set _attack = 0>> -<<set _defense = 0>> -<<set _morale = 0>> -<<set _hp = 0>> -<<set _baseHp = 0>> -<<set _enemyAttack = 0>> -<<set _enemyDefense = 0>> -<<set _enemyMorale = 0>> -<<set _enemyHp = 0>> -<<set _enemyBaseHp = 0>> -<<set _woundChance = 5>> /* leader has a base chance of 5% to get wounded */ -<<set _tacChance = 0.5>> /* by default tactics have a 50% chance of succeeding */ -<<set _atkMod = 1>> -<<set _defMod = 1>> -<<set _militiaMod = 1>> -<<set _slaveMod = 1>> -<<set _mercMod = 1>> -<<set _enemyMod = 1>> -<<set _SFMod = 1>> -<<set _expBonus = 0>> -<<set _loyaltyBonus = 0>> -<<set _armyMod = 0>> - -/* major battle */ -<<if $majorBattle == 1>> - <<set _militiaMod = 1.5>> - <<set _slaveMod = 1.5>> - <<set _mercMod = 1.5>> - <<set _enemyMod = 1.5>> - <<set _SFMod = 1.5>> - <<set _turns = $maxTurns * 2>> - <<if $SF.Toggle && $SF.Active >= 1>> - <<if $SFUnit.Firebase >= 7>> - <<set _atkMod += ($SFUnit.Firebase - 6) * 0.05>> + /*Init*/ + <<if $majorBattle == 0>> + <<set _turns = $maxTurns>> + <</if>> + <<set _turn = 0>> + <<set _attack = 0>> + <<set _defense = 0>> + <<set _morale = 0>> + <<set _hp = 0>> + <<set _baseHp = 0>> + <<set _enemyAttack = 0>> + <<set _enemyDefense = 0>> + <<set _enemyMorale = 0>> + <<set _enemyHp = 0>> + <<set _enemyBaseHp = 0>> + <<set _woundChance = 5>> /* leader has a base chance of 5% to get wounded */ + <<set _tacChance = 0.5>> /* by default tactics have a 50% chance of succeeding */ + <<set _atkMod = 1>> + <<set _defMod = 1>> + <<set _militiaMod = 1>> + <<set _slaveMod = 1>> + <<set _mercMod = 1>> + <<set _enemyMod = 1>> + <<set _SFMod = 1>> + <<set _expBonus = 0>> + <<set _loyaltyBonus = 0>> + <<set _armyMod = 0>> + + /* major battle */ + <<if $majorBattle == 1>> + <<set _militiaMod = 1.5>> + <<set _slaveMod = 1.5>> + <<set _mercMod = 1.5>> + <<set _enemyMod = 1.5>> + <<set _SFMod = 1.5>> + <<set _turns = $maxTurns * 2>> + <<if $SF.Toggle && $SF.Active >= 1>> + <<if $SFUnit.Firebase >= 7>> + <<set _atkMod += ($SFUnit.Firebase - 6) * 0.05>> + <</if>> + <<if $SFUnit.GunS >= 1>> + <<set _defMod += $SFUnit.GunS * 0.05>> + <</if>> + <<if $SFUnit.Satellite >= 5 && $SatLaunched > 0>> + <<set _atkMod += ($SFUnit.Satellite - 5) * 0.05>> + <</if>> + <<if $SFUnit.GiantRobot >= 6>> + <<set _defMod += ($SFUnit.GiantRobot - 5) * 0.05>> + <</if>> + <<if $SFUnit.MissileSilo >= 1 && $SatLaunched > 0>> + <<set _atkMod += $SFUnit.MissileSilo * 0.05>> + <<set _defMod += $SFUnit.MissileSilo * 0.05>> + <</if>> <</if>> - <<if $SFUnit.GunS >= 1>> - <<set _defMod += $SFUnit.GunS * 0.05>> + <</if>> + + /* Leaders */ + <<if $leadingTroops == "PC">> + <<if $authority <= 2500 && $authority > 1000>> + <<set _slaveMod -= 0.10>> + <<elseif $authority <= 1000>> + <<set _slaveMod -= 0.25>> + <<elseif $authority >= 5000 && $authority < 15000>> + <<set _slaveMod += 0.10>> + <<elseif $authority >= 15000>> + <<set _slaveMod += 0.25>> <</if>> - <<if $SFUnit.Satellite >= 5 && $SatLaunched > 0>> - <<set _atkMod += ($SFUnit.Satellite - 5) * 0.05>> + <<if $PC.career == "escort" || $PC.career == "servant">> + <<set _slaveMod += 0.10>> + <<elseif $PC.career == "slaver">> + <<set _slaveMod -= 0.10>> <</if>> - <<if $SFUnit.GiantRobot >= 6>> - <<set _defMod += ($SFUnit.GiantRobot - 5) * 0.05>> + <<if $rep <= 2500 && $rep > 1000>> + <<set _militiaMod -= 0.10>> + <<elseif $rep <= 1000>> + <<set _militiaMod -= 0.25>> + <<elseif $rep >= 5000 && $rep < 15000>> + <<set _militiaMod += 0.10>> + <<elseif $rep >= 15000>> + <<set _militiaMod += 0.25>> <</if>> - <<if $SFUnit.MissileSilo >= 1 && $SatLaunched > 0>> - <<set _atkMod += $SFUnit.MissileSilo * 0.05>> - <<set _defMod += $SFUnit.MissileSilo * 0.05>> + <<if $PC.career == "celebrity" || $PC.career == "capitalist">> + <<set _militiaMod += 0.10>> + <<elseif $PC.career == "gang" || $PC.career == "escort">> + <<set _militiaMod -= 0.10>> <</if>> - <</if>> -<</if>> - -/* Leaders */ -<<if $leadingTroops == "PC">> - <<if $authority <= 2500 && $authority > 1000>> - <<set _slaveMod -= 0.10>> - <<elseif $authority <= 1000>> - <<set _slaveMod -= 0.25>> - <<elseif $authority >= 5000 && $authority < 15000>> - <<set _slaveMod += 0.10>> - <<elseif $authority >= 15000>> - <<set _slaveMod += 0.25>> - <</if>> - <<if $PC.career == "escort" || $PC.career == "servant">> - <<set _slaveMod += 0.10>> - <<elseif $PC.career == "slaver">> - <<set _slaveMod -= 0.10>> - <</if>> - <<if $rep <= 2500 && $rep > 1000>> - <<set _militiaMod -= 0.10>> - <<elseif $rep <= 1000>> - <<set _militiaMod -= 0.25>> - <<elseif $rep >= 5000 && $rep < 15000>> - <<set _militiaMod += 0.10>> - <<elseif $rep >= 15000>> - <<set _militiaMod += 0.25>> - <</if>> - <<if $PC.career == "celebrity" || $PC.career == "capitalist">> - <<set _militiaMod += 0.10>> - <<elseif $PC.career == "gang" || $PC.career == "escort">> - <<set _militiaMod -= 0.10>> - <</if>> - <<if $PC.career == "mercenary" || $PC.warfare > 75>> - <<set _mercMod += 0.10>> - <<set _SFMod += 0.10>> - <<elseif $PC.career == "wealth" || $PC.career == "servant">> - <<set _mercMod -= 0.10>> - <<set _SFMod -= 0.10>> - <</if>> - <<if $rep >= 15000>> - <<set _enemyMod -= 0.10>> - <</if>> - <<if $PC.warfare <= 25 && $PC.warfare > 10>> - <<set _atkMod -= 0.15>> - <<set _tacChance -= 0.15>> - <<elseif $PC.warfare <= 10>> - <<set _atkMod -= 0.20>> - <<set _defMod -= 0.10>> - <<set _tacChance -= 0.30>> - <<elseif $PC.warfare >= 50 && $PC.warfare >= 50>> - <<set _atkMod += 0.15>> - <<set _tacChance += 0.15>> - <<elseif $PC.warfare >= 75>> - <<set _atkMod += 0.20>> - <<set _defMod += 0.10>> - <<set _tacChance += 0.30>> - <</if>> - /* 80% chance of increasing warfare */ - <<if $PC.warfare < 100 && random(1,100) <= 80>> - <<set $gainedWarfare = 1>> - <<set $PC.warfare += 10>> - <<set $PC.warfare = Math.clamp($PC.warfare,-100,100)>> - <</if>> - /* does the PC get wounded? */ - <<if $PC.career == "mercenary" || $PC.career == "gang">> - <<set _woundChance -= 3>> - <</if>> - <<if $PC.physicalAge >= 60>> - <<set _woundChance += 1>> - <</if>> - <<if $PC.belly > 5000>> - <<set _woundChance += 1>> - <</if>> - <<if $PC.boobsBonus >= 2>> - <<set _woundChance += 1>> - <</if>> - <<if $PC.butt >= 2>> - <<set _woundChance += 1>> - <</if>> - <<if $PC.preg >= 30>> - <<set _woundChance += 1>> - <</if>> - <<if $PC.balls == 2>> - <<set _woundChance += 1>> - <</if>> - <<if $PC.ballsImplant >= 2>> - <<set _woundChance += 1>> - <</if>> - <<if random(1,100) <= _woundChance>> - <<set $leaderWounded = 1>> - <<set _militiaMod -= 0.2>> - <<set _slaveMod -= 0.2>> - <<set _mercMod -= 0.2>> - <<set _SFMod -= 0.2>> - <<set _enemyMod += 0.2>> - <<set $PCWounded = 1>> - <</if>> -<<elseif $leadingTroops == "assistant">> - <<if $rep < 10000 && $authority < 10000>> - <<set _militiaMod -= 0.15>> - <<set _slaveMod -= 0.15>> - <<set _mercMod -= 0.15>> - <<set _SFMod -= 0.15>> - <</if>> - <<if $assistantPower == 0>> - <<set _atkMod -= 0.10>> - <<set _defMod -= 0.10>> - <<set _tacChance -= 0.20>> - <<elseif $assistantPower == 2>> - <<set _atkMod += 0.15>> - <<set _defMod += 0.15>> - <<set _tacChance += 0.30>> - <</if>> -<<elseif $leadingTroops == "bodyguard">> - <<if $Bodyguard.devotion < -20>> - <<set _slaveMod -= 0.15>> - <<elseif $Bodyguard.devotion > 50>> - <<set _slaveMod += 0.15>> - <</if>> - <<if ($rep < 10000 && $authority < 10000) || $Bodyguard.prestige < 1>> - <<set _militiaMod -= 0.15>> - <<set _mercMod -= 0.15>> - <<set _SFMod -= 0.15>> - <<elseif $Bodyguard.prestige >= 2>> - <<set _militiaMod += 0.10>> - <<set _mercMod += 0.10>> - <<set _SFMod += 0.10>> - <</if>> - <<if (setup.bodyguardCareers.includes($Bodyguard.career) || setup.HGCareers.includes($Bodyguard.career)) && $Bodyguard.intelligence+$Bodyguard.intelligenceImplant > 95>> - <<set _atkMod += 0.25>> - <<set _defMod += 0.25>> - <<set _tacChance += 0.50>> - <<elseif $Bodyguard.intelligence+$Bodyguard.intelligenceImplant > 95>> - <<set _atkMod += 0.20>> - <<set _defMod += 0.15>> - <<set _tacChance += 0.35>> - <<elseif (setup.bodyguardCareers.includes($Bodyguard.career) || setup.HGCareers.includes($Bodyguard.career)) && $Bodyguard.intelligence+$Bodyguard.intelligenceImplant > 50>> - <<set _atkMod += 0.15>> - <<set _defMod += 0.10>> - <<set _tacChance += 0.25>> - <<elseif $Bodyguard.intelligence+$Bodyguard.intelligenceImplant > 50>> - <<set _atkMod += 0.10>> - <<set _defMod += 0.10>> - <<set _tacChance += 0.20>> - <<elseif (setup.bodyguardCareers.includes($Bodyguard.career) || setup.HGCareers.includes($Bodyguard.career)) && $Bodyguard.intelligence+$Bodyguard.intelligenceImplant > 15>> - <<set _atkMod += 0.10>> - <<set _defMod += 0.05>> - <<set _tacChance += 0.15>> - <<elseif $Bodyguard.intelligence+$Bodyguard.intelligenceImplant > 15>> - <<set _atkMod += 0.5>> - <<set _defMod += 0.05>> - <<set _tacChance += 0.10>> - <<elseif !(setup.bodyguardCareers.includes($Bodyguard.career) && setup.HGCareers.includes($Bodyguard.career)) || $Bodyguard.intelligence+$Bodyguard.intelligenceImplant < -50>> - <<set _atkMod -= 0.15>> - <<set _defMod -= 0.15>> - <<set _tacChance -= 0.30>> - <<elseif $Bodyguard.intelligence+$Bodyguard.intelligenceImplant < -50>> - <<set _atkMod -= 0.15>> - <<set _defMod -= 0.10>> - <<set _tacChance -= 0.25>> - <<elseif !(setup.bodyguardCareers.includes($Bodyguard.career) && setup.HGCareers.includes($Bodyguard.career)) || $Bodyguard.intelligence+$Bodyguard.intelligenceImplant < -15>> - <<set _atkMod -= 0.10>> - <<set _defMod -= 0.10>> - <<set _tacChance -= 0.20>> - <<elseif $Bodyguard.intelligence+$Bodyguard.intelligenceImplant < -15>> - <<set _atkMod -= 0.10>> - <<set _defMod -= 0.05>> - <<set _tacChance -= 0.15>> - <</if>> - /* does she get wounded? */ - <<if $Bodyguard.combatSkill == 1>> - <<set _woundChance -= 2>> - <</if>> - <<if $Bodyguard.amp >= -4>> - <<set _woundChance -= 1>> - <</if>> - <<if $Bodyguard.health >= 50>> - <<set _woundChance -= 1>> - <</if>> - <<if $Bodyguard.weight > 130>> - <<set _woundChance += 1>> - <</if>> - <<if $Bodyguard.muscles < -30>> - <<set _woundChance += 1>> - <</if>> - <<if $Bodyguard.eyes <= -2>> - <<set _woundChance += 1>> - <</if>> - <<if $Bodyguard.heels == 1>> - <<set _woundChance += 1>> - <</if>> - <<if $Bodyguard.boobs >= 1400>> - <<set _woundChance += 1>> - <</if>> - <<if $Bodyguard.butt >= 6>> - <<set _woundChance += 1>> - <</if>> - <<if $Bodyguard.preg >= 30>> - <<set _woundChance += 1>> - <</if>> - <<if $Bodyguard.dick >= 8>> - <<set _woundChance += 1>> - <</if>> - <<if $Bodyguard.balls >= 8>> - <<set _woundChance += 1>> - <</if>> - <<if $Bodyguard.intelligence+$Bodyguard.intelligenceImplant < -95>> - <<set _woundChance += 1>> - <</if>> - <<if random(1,100) <= _woundChance>> - <<set $leaderWounded = 1>> - <<set _militiaMod -= 0.2>> - <<set _slaveMod -= 0.2>> - <<set _mercMod -= 0.2>> - <<set _SFMod -= 0.2>> - <<set _enemyMod += 0.2>> - <<set $woundType = random(1,10)>> - <<set _i = $slaveIndices[$Bodyguard.ID]>> - <<if $woundType == 1>> - <<set $slaves[_i].voice = 0>> - <<set $slaves[_i].health -= 60>> - <<elseif $woundType == 2>> - <<set $slaves[_i].eyes = -2>> - <<set $slaves[_i].health -= 30>> - <<elseif $woundType == 3>> - <<set $slaves[_i].amp = 1>> - <<set $slaves[_i].health = -80>> - <<elseif $woundType >= 4>> - <<if $slaves[_i].health >= -60>> + <<if $PC.career == "mercenary" || $PC.warfare > 75>> + <<set _mercMod += 0.10>> + <<set _SFMod += 0.10>> + <<elseif $PC.career == "wealth" || $PC.career == "servant">> + <<set _mercMod -= 0.10>> + <<set _SFMod -= 0.10>> + <</if>> + <<if $rep >= 15000>> + <<set _enemyMod -= 0.10>> + <</if>> + <<if $PC.warfare <= 25 && $PC.warfare > 10>> + <<set _atkMod -= 0.15>> + <<set _tacChance -= 0.15>> + <<elseif $PC.warfare <= 10>> + <<set _atkMod -= 0.20>> + <<set _defMod -= 0.10>> + <<set _tacChance -= 0.30>> + <<elseif $PC.warfare >= 50 && $PC.warfare >= 50>> + <<set _atkMod += 0.15>> + <<set _tacChance += 0.15>> + <<elseif $PC.warfare >= 75>> + <<set _atkMod += 0.20>> + <<set _defMod += 0.10>> + <<set _tacChance += 0.30>> + <</if>> + /* 80% chance of increasing warfare */ + <<if $PC.warfare < 100 && random(1,100) <= 80>> + <<set $gainedWarfare = 1>> + <<set $PC.warfare += 10>> + <<set $PC.warfare = Math.clamp($PC.warfare,-100,100)>> + <</if>> + /* does the PC get wounded? */ + <<if $PC.career == "mercenary" || $PC.career == "gang">> + <<set _woundChance -= 3>> + <</if>> + <<if $PC.physicalAge >= 60>> + <<set _woundChance += 1>> + <</if>> + <<if $PC.belly > 5000>> + <<set _woundChance += 1>> + <</if>> + <<if $PC.boobsBonus >= 2>> + <<set _woundChance += 1>> + <</if>> + <<if $PC.butt >= 2>> + <<set _woundChance += 1>> + <</if>> + <<if $PC.preg >= 30>> + <<set _woundChance += 1>> + <</if>> + <<if $PC.balls == 2>> + <<set _woundChance += 1>> + <</if>> + <<if $PC.ballsImplant >= 2>> + <<set _woundChance += 1>> + <</if>> + <<if random(1,100) <= _woundChance>> + <<set $leaderWounded = 1>> + <<set _militiaMod -= 0.2>> + <<set _slaveMod -= 0.2>> + <<set _mercMod -= 0.2>> + <<set _SFMod -= 0.2>> + <<set _enemyMod += 0.2>> + <<set $PCWounded = 1>> + <</if>> + <<elseif $leadingTroops == "assistant">> + <<if $rep < 10000 && $authority < 10000>> + <<set _militiaMod -= 0.15>> + <<set _slaveMod -= 0.15>> + <<set _mercMod -= 0.15>> + <<set _SFMod -= 0.15>> + <</if>> + <<if $assistantPower == 0>> + <<set _atkMod -= 0.10>> + <<set _defMod -= 0.10>> + <<set _tacChance -= 0.20>> + <<elseif $assistantPower == 2>> + <<set _atkMod += 0.15>> + <<set _defMod += 0.15>> + <<set _tacChance += 0.30>> + <</if>> + <<elseif $leadingTroops == "bodyguard">> + <<if $Bodyguard.devotion < -20>> + <<set _slaveMod -= 0.15>> + <<elseif $Bodyguard.devotion > 50>> + <<set _slaveMod += 0.15>> + <</if>> + <<if ($rep < 10000 && $authority < 10000) || $Bodyguard.prestige < 1>> + <<set _militiaMod -= 0.15>> + <<set _mercMod -= 0.15>> + <<set _SFMod -= 0.15>> + <<elseif $Bodyguard.prestige >= 2>> + <<set _militiaMod += 0.10>> + <<set _mercMod += 0.10>> + <<set _SFMod += 0.10>> + <</if>> + <<if (setup.bodyguardCareers.includes($Bodyguard.career) || setup.HGCareers.includes($Bodyguard.career)) && $Bodyguard.intelligence+$Bodyguard.intelligenceImplant > 95>> + <<set _atkMod += 0.25>> + <<set _defMod += 0.25>> + <<set _tacChance += 0.50>> + <<elseif $Bodyguard.intelligence+$Bodyguard.intelligenceImplant > 95>> + <<set _atkMod += 0.20>> + <<set _defMod += 0.15>> + <<set _tacChance += 0.35>> + <<elseif (setup.bodyguardCareers.includes($Bodyguard.career) || setup.HGCareers.includes($Bodyguard.career)) && $Bodyguard.intelligence+$Bodyguard.intelligenceImplant > 50>> + <<set _atkMod += 0.15>> + <<set _defMod += 0.10>> + <<set _tacChance += 0.25>> + <<elseif $Bodyguard.intelligence+$Bodyguard.intelligenceImplant > 50>> + <<set _atkMod += 0.10>> + <<set _defMod += 0.10>> + <<set _tacChance += 0.20>> + <<elseif (setup.bodyguardCareers.includes($Bodyguard.career) || setup.HGCareers.includes($Bodyguard.career)) && $Bodyguard.intelligence+$Bodyguard.intelligenceImplant > 15>> + <<set _atkMod += 0.10>> + <<set _defMod += 0.05>> + <<set _tacChance += 0.15>> + <<elseif $Bodyguard.intelligence+$Bodyguard.intelligenceImplant > 15>> + <<set _atkMod += 0.5>> + <<set _defMod += 0.05>> + <<set _tacChance += 0.10>> + <<elseif !(setup.bodyguardCareers.includes($Bodyguard.career) && setup.HGCareers.includes($Bodyguard.career)) || $Bodyguard.intelligence+$Bodyguard.intelligenceImplant < -50>> + <<set _atkMod -= 0.15>> + <<set _defMod -= 0.15>> + <<set _tacChance -= 0.30>> + <<elseif $Bodyguard.intelligence+$Bodyguard.intelligenceImplant < -50>> + <<set _atkMod -= 0.15>> + <<set _defMod -= 0.10>> + <<set _tacChance -= 0.25>> + <<elseif !(setup.bodyguardCareers.includes($Bodyguard.career) && setup.HGCareers.includes($Bodyguard.career)) || $Bodyguard.intelligence+$Bodyguard.intelligenceImplant < -15>> + <<set _atkMod -= 0.10>> + <<set _defMod -= 0.10>> + <<set _tacChance -= 0.20>> + <<elseif $Bodyguard.intelligence+$Bodyguard.intelligenceImplant < -15>> + <<set _atkMod -= 0.10>> + <<set _defMod -= 0.05>> + <<set _tacChance -= 0.15>> + <</if>> + /* does she get wounded? */ + <<if $Bodyguard.combatSkill == 1>> + <<set _woundChance -= 2>> + <</if>> + <<if $Bodyguard.amp >= -4>> + <<set _woundChance -= 1>> + <</if>> + <<if $Bodyguard.health >= 50>> + <<set _woundChance -= 1>> + <</if>> + <<if $Bodyguard.weight > 130>> + <<set _woundChance += 1>> + <</if>> + <<if $Bodyguard.muscles < -30>> + <<set _woundChance += 1>> + <</if>> + <<if $Bodyguard.eyes <= -2>> + <<set _woundChance += 1>> + <</if>> + <<if $Bodyguard.heels == 1>> + <<set _woundChance += 1>> + <</if>> + <<if $Bodyguard.boobs >= 1400>> + <<set _woundChance += 1>> + <</if>> + <<if $Bodyguard.butt >= 6>> + <<set _woundChance += 1>> + <</if>> + <<if $Bodyguard.preg >= 30>> + <<set _woundChance += 1>> + <</if>> + <<if $Bodyguard.dick >= 8>> + <<set _woundChance += 1>> + <</if>> + <<if $Bodyguard.balls >= 8>> + <<set _woundChance += 1>> + <</if>> + <<if $Bodyguard.intelligence+$Bodyguard.intelligenceImplant < -95>> + <<set _woundChance += 1>> + <</if>> + <<if random(1,100) <= _woundChance>> + <<set $leaderWounded = 1>> + <<set _militiaMod -= 0.2>> + <<set _slaveMod -= 0.2>> + <<set _mercMod -= 0.2>> + <<set _SFMod -= 0.2>> + <<set _enemyMod += 0.2>> + <<set $woundType = random(1,10)>> + <<set _i = $slaveIndices[$Bodyguard.ID]>> + <<if $woundType == 1>> + <<set $slaves[_i].voice = 0>> + <<set $slaves[_i].health -= 60>> + <<elseif $woundType == 2>> + <<set $slaves[_i].eyes = -2>> <<set $slaves[_i].health -= 30>> - <<else>> - <<set $slaves[_i].health = -90>> + <<elseif $woundType == 3>> + <<set $slaves[_i].amp = 1>> + <<set $slaves[_i].health = -80>> + <<elseif $woundType >= 4>> + <<if $slaves[_i].health >= -60>> + <<set $slaves[_i].health -= 30>> + <<else>> + <<set $slaves[_i].health = -90>> + <</if>> <</if>> <</if>> - <</if>> - /* 60% chance of getting combat skill if not already have it */ - <<if $Bodyguard.combatSkill == 0 && random(1,100) <= 60>> - <<set $gainedCombat = 1>> - <<set _i = $slaveIndices[$Bodyguard.ID]>> - <<set $slaves[_i].combatSkill = 1>> - <</if>> -<<elseif $leadingTroops == "headGirl">> - <<if $HeadGirl.devotion < -20>> - <<set _slaveMod -= 0.15>> - <<elseif $HeadGirl.devotion > 51>> - <<set _slaveMod += 0.15>> - <</if>> - <<if ($rep < 10000 && $authority < 10000) || $HeadGirl.prestige < 1>> - <<set _militiaMod -= 0.15>> - <<set _mercMod -= 0.15>> - <<set _SFMod -= 0.15>> - <<elseif $HeadGirl.prestige >= 2>> - <<set _militiaMod += 0.10>> - <<set _mercMod += 0.10>> - <<set _SFMod += 0.10>> - <</if>> - <<if (setup.bodyguardCareers.includes($HeadGirl.career) || setup.HGCareers.includes($HeadGirl.career)) && $HeadGirl.intelligence+$HeadGirl.intelligenceImplant > 95>> - <<set _atkMod += 0.25>> - <<set _defMod += 0.25>> - <<set _tacChance += 0.50>> - <<elseif $HeadGirl.intelligence+$HeadGirl.intelligenceImplant > 95>> - <<set _atkMod += 0.20>> - <<set _defMod += 0.15>> - <<set _tacChance += 0.35>> - <<elseif (setup.bodyguardCareers.includes($HeadGirl.career) || setup.HGCareers.includes($HeadGirl.career)) && $HeadGirl.intelligence+$HeadGirl.intelligenceImplant > 50>> - <<set _atkMod += 0.15>> - <<set _defMod += 0.10>> - <<set _tacChance += 0.25>> - <<elseif $HeadGirl.intelligence+$HeadGirl.intelligenceImplant > 50>> - <<set _atkMod += 0.10>> - <<set _defMod += 0.10>> - <<set _tacChance += 0.20>> - <<elseif (setup.bodyguardCareers.includes($HeadGirl.career) || setup.HGCareers.includes($HeadGirl.career)) && $HeadGirl.intelligence+$HeadGirl.intelligenceImplant > 15>> - <<set _atkMod += 0.10>> - <<set _defMod += 0.05>> - <<set _tacChance += 0.15>> - <<elseif $HeadGirl.intelligence+$HeadGirl.intelligenceImplant > 15>> - <<set _atkMod += 0.05>> - <<set _defMod += 0.05>> - <<set _tacChance += 0.10>> - <<elseif !(setup.bodyguardCareers.includes($HeadGirl.career) && setup.HGCareers.includes($HeadGirl.career)) || $HeadGirl.intelligence+$HeadGirl.intelligenceImplant < -50>> - <<set _atkMod -= 0.15>> - <<set _defMod -= 0.15>> - <<set _tacChance -= 0.30>> - <<elseif $HeadGirl.intelligence+$HeadGirl.intelligenceImplant < -50>> - <<set _atkMod -= 0.15>> - <<set _defMod -= 0.10>> - <<set _tacChance -= 0.25>> - <<elseif !(setup.bodyguardCareers.includes($HeadGirl.career) && setup.HGCareers.includes($HeadGirl.career)) || $HeadGirl.intelligence+$HeadGirl.intelligenceImplant < -15>> - <<set _atkMod -= 0.10>> - <<set _defMod -= 0.10>> - <<set _tacChance -= 0.20>> - <<elseif $HeadGirl.intelligence+$HeadGirl.intelligenceImplant < -15>> - <<set _atkMod -= 0.10>> - <<set _defMod -= 0.05>> - <<set _tacChance -= 0.15>> - <</if>> - /* does she get wounded? */ - <<if $HeadGirl.combatSkill == 1>> - <<set _woundChance -= 3>> - <</if>> - <<if $HeadGirl.amp >= -4>> - <<set _woundChance -= 1>> - <</if>> - <<if $HeadGirl.health >= 50>> - <<set _woundChance -= 2>> - <</if>> - <<if $HeadGirl.weight > 130>> - <<set _woundChance += 1>> - <</if>> - <<if $HeadGirl.muscles < -30>> - <<set _woundChance += 1>> - <</if>> - <<if $HeadGirl.eyes <= -2>> - <<set _woundChance += 1>> - <</if>> - <<if $HeadGirl.heels == 1>> - <<set _woundChance += 1>> - <</if>> - <<if $HeadGirl.boobs >= 1400>> - <<set _woundChance += 1>> - <</if>> - <<if $HeadGirl.butt >= 6>> - <<set _woundChance += 1>> - <</if>> - <<if $HeadGirl.preg >= 30>> - <<set _woundChance += 1>> - <</if>> - <<if $HeadGirl.dick >= 8>> - <<set _woundChance += 1>> - <</if>> - <<if $HeadGirl.balls >= 8>> - <<set _woundChance += 1>> - <</if>> - <<if $HeadGirl.intelligence+$HeadGirl.intelligenceImplant < -95>> - <<set _woundChance += 1>> - <</if>> - <<if random(1,100) <= _woundChance>> - <<set $leaderWounded = 1>> - <<set _militiaMod -= 0.2>> - <<set _slaveMod -= 0.2>> - <<set _mercMod -= 0.2>> - <<set _SFMod -= 0.2>> - <<set _enemyMod += 0.2>> - <<set $woundType = random(1,10)>> - <<set _i = $slaveIndices[$HeadGirl.ID]>> - <<if $woundType == 1>> - <<set $slaves[_i].voice = 0>> - <<set $slaves[_i].health -= 60>> - <<elseif $woundType == 2>> - <<set $slaves[_i].eyes = -2>> - <<set $slaves[_i].health -= 30>> - <<elseif $woundType == 3>> - <<set $slaves[_i].amp = 1>> - <<set $slaves[_i].health = -80>> - <<elseif $woundType >= 4>> - <<if $slaves[_i].health >= -60>> + /* 60% chance of getting combat skill if not already have it */ + <<if $Bodyguard.combatSkill == 0 && random(1,100) <= 60>> + <<set $gainedCombat = 1>> + <<set _i = $slaveIndices[$Bodyguard.ID]>> + <<set $slaves[_i].combatSkill = 1>> + <</if>> + <<elseif $leadingTroops == "headGirl">> + <<if $HeadGirl.devotion < -20>> + <<set _slaveMod -= 0.15>> + <<elseif $HeadGirl.devotion > 51>> + <<set _slaveMod += 0.15>> + <</if>> + <<if ($rep < 10000 && $authority < 10000) || $HeadGirl.prestige < 1>> + <<set _militiaMod -= 0.15>> + <<set _mercMod -= 0.15>> + <<set _SFMod -= 0.15>> + <<elseif $HeadGirl.prestige >= 2>> + <<set _militiaMod += 0.10>> + <<set _mercMod += 0.10>> + <<set _SFMod += 0.10>> + <</if>> + <<if (setup.bodyguardCareers.includes($HeadGirl.career) || setup.HGCareers.includes($HeadGirl.career)) && $HeadGirl.intelligence+$HeadGirl.intelligenceImplant > 95>> + <<set _atkMod += 0.25>> + <<set _defMod += 0.25>> + <<set _tacChance += 0.50>> + <<elseif $HeadGirl.intelligence+$HeadGirl.intelligenceImplant > 95>> + <<set _atkMod += 0.20>> + <<set _defMod += 0.15>> + <<set _tacChance += 0.35>> + <<elseif (setup.bodyguardCareers.includes($HeadGirl.career) || setup.HGCareers.includes($HeadGirl.career)) && $HeadGirl.intelligence+$HeadGirl.intelligenceImplant > 50>> + <<set _atkMod += 0.15>> + <<set _defMod += 0.10>> + <<set _tacChance += 0.25>> + <<elseif $HeadGirl.intelligence+$HeadGirl.intelligenceImplant > 50>> + <<set _atkMod += 0.10>> + <<set _defMod += 0.10>> + <<set _tacChance += 0.20>> + <<elseif (setup.bodyguardCareers.includes($HeadGirl.career) || setup.HGCareers.includes($HeadGirl.career)) && $HeadGirl.intelligence+$HeadGirl.intelligenceImplant > 15>> + <<set _atkMod += 0.10>> + <<set _defMod += 0.05>> + <<set _tacChance += 0.15>> + <<elseif $HeadGirl.intelligence+$HeadGirl.intelligenceImplant > 15>> + <<set _atkMod += 0.05>> + <<set _defMod += 0.05>> + <<set _tacChance += 0.10>> + <<elseif !(setup.bodyguardCareers.includes($HeadGirl.career) && setup.HGCareers.includes($HeadGirl.career)) || $HeadGirl.intelligence+$HeadGirl.intelligenceImplant < -50>> + <<set _atkMod -= 0.15>> + <<set _defMod -= 0.15>> + <<set _tacChance -= 0.30>> + <<elseif $HeadGirl.intelligence+$HeadGirl.intelligenceImplant < -50>> + <<set _atkMod -= 0.15>> + <<set _defMod -= 0.10>> + <<set _tacChance -= 0.25>> + <<elseif !(setup.bodyguardCareers.includes($HeadGirl.career) && setup.HGCareers.includes($HeadGirl.career)) || $HeadGirl.intelligence+$HeadGirl.intelligenceImplant < -15>> + <<set _atkMod -= 0.10>> + <<set _defMod -= 0.10>> + <<set _tacChance -= 0.20>> + <<elseif $HeadGirl.intelligence+$HeadGirl.intelligenceImplant < -15>> + <<set _atkMod -= 0.10>> + <<set _defMod -= 0.05>> + <<set _tacChance -= 0.15>> + <</if>> + /* does she get wounded? */ + <<if $HeadGirl.combatSkill == 1>> + <<set _woundChance -= 3>> + <</if>> + <<if $HeadGirl.amp >= -4>> + <<set _woundChance -= 1>> + <</if>> + <<if $HeadGirl.health >= 50>> + <<set _woundChance -= 2>> + <</if>> + <<if $HeadGirl.weight > 130>> + <<set _woundChance += 1>> + <</if>> + <<if $HeadGirl.muscles < -30>> + <<set _woundChance += 1>> + <</if>> + <<if $HeadGirl.eyes <= -2>> + <<set _woundChance += 1>> + <</if>> + <<if $HeadGirl.heels == 1>> + <<set _woundChance += 1>> + <</if>> + <<if $HeadGirl.boobs >= 1400>> + <<set _woundChance += 1>> + <</if>> + <<if $HeadGirl.butt >= 6>> + <<set _woundChance += 1>> + <</if>> + <<if $HeadGirl.preg >= 30>> + <<set _woundChance += 1>> + <</if>> + <<if $HeadGirl.dick >= 8>> + <<set _woundChance += 1>> + <</if>> + <<if $HeadGirl.balls >= 8>> + <<set _woundChance += 1>> + <</if>> + <<if $HeadGirl.intelligence+$HeadGirl.intelligenceImplant < -95>> + <<set _woundChance += 1>> + <</if>> + <<if random(1,100) <= _woundChance>> + <<set $leaderWounded = 1>> + <<set _militiaMod -= 0.2>> + <<set _slaveMod -= 0.2>> + <<set _mercMod -= 0.2>> + <<set _SFMod -= 0.2>> + <<set _enemyMod += 0.2>> + <<set $woundType = random(1,10)>> + <<set _i = $slaveIndices[$HeadGirl.ID]>> + <<if $woundType == 1>> + <<set $slaves[_i].voice = 0>> + <<set $slaves[_i].health -= 60>> + <<elseif $woundType == 2>> + <<set $slaves[_i].eyes = -2>> <<set $slaves[_i].health -= 30>> - <<else>> - <<set $slaves[_i].health = -90>> + <<elseif $woundType == 3>> + <<set $slaves[_i].amp = 1>> + <<set $slaves[_i].health = -80>> + <<elseif $woundType >= 4>> + <<if $slaves[_i].health >= -60>> + <<set $slaves[_i].health -= 30>> + <<else>> + <<set $slaves[_i].health = -90>> + <</if>> <</if>> <</if>> - <</if>> - /* 60% chance of getting combat skill if not already have it */ - <<if $HeadGirl.combatSkill == 0 && random(1,100) <= 60>> - <<set $gainedCombat = 1>> - <<set _i = $slaveIndices[$HeadGirl.ID]>> - <<set $slaves[_i].combatSkill = 1>> - <</if>> -<<elseif $leadingTroops == "citizen">> - <<if $arcologies[0].FSDegradationist == "unset" && $arcologies[0].FSPaternalist == "unset">> - <<set _militiaMod += 0.15>> - <<set _slaveMod -= 0.15>> - <<elseif $arcologies[0].FSPaternalist != "unset">> - <<set _militiaMod += 0.15>> - <<set _slaveMod += 0.10>> - <<elseif $arcologies[0].FSDegradationist != "unset">> - <<set _militiaMod += 0.15>> - <<set _slaveMod -= 0.35>> - <</if>> - <<if $arcologies[0].FSRomanRevivalist != "unset">> + /* 60% chance of getting combat skill if not already have it */ + <<if $HeadGirl.combatSkill == 0 && random(1,100) <= 60>> + <<set $gainedCombat = 1>> + <<set _i = $slaveIndices[$HeadGirl.ID]>> + <<set $slaves[_i].combatSkill = 1>> + <</if>> + <<elseif $leadingTroops == "citizen">> + <<if $arcologies[0].FSDegradationist == "unset" && $arcologies[0].FSPaternalist == "unset">> + <<set _militiaMod += 0.15>> + <<set _slaveMod -= 0.15>> + <<elseif $arcologies[0].FSPaternalist != "unset">> + <<set _militiaMod += 0.15>> + <<set _slaveMod += 0.10>> + <<elseif $arcologies[0].FSDegradationist != "unset">> + <<set _militiaMod += 0.15>> + <<set _slaveMod -= 0.35>> + <</if>> + <<if $arcologies[0].FSRomanRevivalist != "unset">> + <<set _mercMod += 0.10>> + <<set _SFMod += 0.10>> + <<else>> + <<set _mercMod -= 0.10>> + <<set _SFMod -= 0.10>> + <</if>> + <<set _atkMod += either(-1,1) * random(10) * 0.1>> + <<set _defMod += either(-1,1) * random(10) * 0.1>> + <<set _tacChance += either(-1,1) * random(20) * 0.1>> + <<elseif $leadingTroops == "mercenary">> <<set _mercMod += 0.10>> <<set _SFMod += 0.10>> - <<else>> - <<set _mercMod -= 0.10>> - <<set _SFMod -= 0.10>> - <</if>> - <<set _atkMod += either(-1,1) * random(10) * 0.1>> - <<set _defMod += either(-1,1) * random(10) * 0.1>> - <<set _tacChance += either(-1,1) * random(20) * 0.1>> -<<elseif $leadingTroops == "mercenary">> - <<set _mercMod += 0.10>> - <<set _SFMod += 0.10>> - <<if $arcologies[0].FSRomanRevivalist != "unset">> - <<set _militiaMod += 0.10>> - <<else>> - <<set _militiaMod -= 0.10>> - <</if>> - <<if $arcologies[0].FSDegradationist != "unset">> - <<set _slaveMod -= 0.35>> - <</if>> - <<set _atkMod += random(15) * 0.1>> - <<set _defMod += random(15) * 0.1>> - <<set _tacChance += random(30) * 0.1>> -<<elseif $leadingTroops == "colonel">> - <<set _mercMod += 0.10>> - <<set _SFMod += 0.15>> - <<if $arcologies[0].FSRomanRevivalist != "unset">> - <<set _militiaMod += 0.10>> - <<else>> - <<set _militiaMod -= 0.10>> - <</if>> - <<if $arcologies[0].FSDegradationist != "unset">> - <<set _slaveMod -= 0.35>> - <</if>> - <<set _atkMod += random(30) * 0.1>> - <<set _defMod += random(30) * 0.1>> - <<set _tacChance += random(40) * 0.1>> -<</if>> -/* Terrain and Tactics */ -<<if $battleTerrain == "urban">> - <<if $chosenTactic == "Bait and Bleed">> - <<set _atkMod += 0.15>> - <<set _defMod += 0.10>> - <<set _tacChance += 0.25>> - <<elseif $chosenTactic == "Guerrilla">> - <<set _atkMod += 0.10>> - <<set _defMod += 0.15>> - <<set _tacChance += 0.25>> - <<elseif $chosenTactic == "Choke Points">> - <<set _atkMod += 0.10>> - <<set _defMod += 0.15>> - <<set _tacChance += 0.25>> - <<elseif $chosenTactic == "Interior Lines">> - <<set _atkMod += 0.05>> - <<set _defMod += 0.10>> - <<set _tacChance += 0.15>> - <<elseif $chosenTactic == "Pincer Maneuver">> - <<set _atkMod -= 0.05>> - <<set _defMod -= 0.10>> - <<set _tacChance -= 0.15>> - <<elseif $chosenTactic == "Defense In Depth">> - <<set _atkMod -= 0.05>> - <<set _defMod -= 0.05>> - <<set _tacChance -= 0.10>> - <<elseif $chosenTactic == "Blitzkrieg">> - <<set _atkMod -= 0.15>> - <<set _defMod -= 0.10>> - <<set _tacChance -= 0.25>> - <<elseif $chosenTactic == "Human Wave">> - <<set _atkMod -= 0.15>> - <<set _defMod -= 0.15>> - <<set _tacChance -= 0.30>> - <</if>> -<<elseif $battleTerrain == "rural">> - <<if $chosenTactic == "Bait and Bleed">> - <<set _atkMod -= 0.05>> - <<set _defMod -= 0.10>> - <<set _tacChance -= 0.15>> - <<elseif $chosenTactic == "Guerrilla">> - <<set _atkMod -= 0.10>> - <<set _defMod -= 0.10>> - <<set _tacChance -= 0.20>> - <<elseif $chosenTactic == "Choke Points">> - <<set _atkMod -= 0.10>> - <<set _defMod -= 0.15>> - <<set _tacChance -= 0.25>> - <<elseif $chosenTactic == "Interior Lines">> - <<set _atkMod += 0.10>> - <<set _defMod += 0.15>> - <<set _tacChance += 0.25>> - <<elseif $chosenTactic == "Pincer Maneuver">> - <<set _atkMod += 0.15>> - <<set _defMod += 0.10>> - <<set _tacChance += 0.25>> - <<elseif $chosenTactic == "Defense In Depth">> - <<set _atkMod += 0.15>> - <<set _defMod += 0.15>> - <<set _tacChance += 0.30>> - <<elseif $chosenTactic == "Blitzkrieg">> - <<set _atkMod += 0.15>> - <<set _defMod += 0.10>> - <<set _tacChance += 0.25>> - <<elseif $chosenTactic == "Human Wave">> - <<set _atkMod += 0.20>> - <<set _defMod += 0.05>> - <<set _tacChance += 0.25>> - <</if>> -<<elseif $battleTerrain == "hills">> - <<if $chosenTactic == "Bait and Bleed">> - <<set _atkMod += 0.05>> - <<set _defMod += 0.05>> - <<set _tacChance += 0.10>> - <<elseif $chosenTactic == "Guerrilla">> - <<set _atkMod += 0.05>> - <<set _defMod += 0.10>> - <<set _tacChance += 0.15>> - <<elseif $chosenTactic == "Choke Points">> - <<set _atkMod += 0.10>> - <<set _defMod += 0.10>> - <<set _tacChance += 0.20>> - <<elseif $chosenTactic == "Interior Lines">> - <<set _atkMod -= 0.05>> - <<set _defMod -= 0.05>> - <<set _tacChance -= 0.10>> - <<elseif $chosenTactic == "Pincer Maneuver">> - <<set _atkMod += 0.10>> - <<set _defMod += 0.05>> - <<set _tacChance += 0.15>> - <<elseif $chosenTactic == "Defense In Depth">> - <<set _atkMod -= 0.10>> - <<set _defMod -= 0.05>> - <<set _tacChance -= 0.15>> - <<elseif $chosenTactic == "Blitzkrieg">> - <<set _atkMod -= 0.10>> - <<set _defMod -= 0.15>> - <<set _tacChance += 0.25>> - <<elseif $chosenTactic == "Human Wave">> - <<set _atkMod -= 0.15>> - <<set _defMod -= 0.15>> - <<set _tacChance -= 0.30>> - <</if>> -<<elseif $battleTerrain == "coast">> - <<if $chosenTactic == "Bait and Bleed">> - <<set _atkMod -= 0.05>> - <<set _defMod -= 0.05>> - <<set _tacChance -= 0.10>> - <<elseif $chosenTactic == "Guerrilla">> - <<set _atkMod += 0.05>> - <<set _defMod += 0.05>> - <<set _tacChance += 0.10>> - <<elseif $chosenTactic == "Choke Points">> - <<set _atkMod += 0.05>> - <<set _defMod += 0.15>> - <<set _tacChance += 0.15>> - <<elseif $chosenTactic == "Interior Lines">> - <<set _atkMod += 0.10>> - <<set _defMod += 0.10>> - <<set _tacChance += 0.20>> - <<elseif $chosenTactic == "Pincer Maneuver">> - <<set _atkMod -= 0.10>> - <<set _defMod -= 0.10>> - <<set _tacChance -= 0.20>> - <<elseif $chosenTactic == "Defense In Depth">> - <<set _atkMod += 0.10>> - <<set _defMod += 0.10>> - <<set _tacChance += 0.20>> - <<elseif $chosenTactic == "Blitzkrieg">> - <<set _atkMod -= 0.05>> - <<set _defMod -= 0.05>> - <<set _tacChance -= 0.10>> - <<elseif $chosenTactic == "Human Wave">> - <<set _atkMod += 0.05>> - <<set _defMod -= 0.05>> + <<if $arcologies[0].FSRomanRevivalist != "unset">> + <<set _militiaMod += 0.10>> + <<else>> + <<set _militiaMod -= 0.10>> + <</if>> + <<if $arcologies[0].FSDegradationist != "unset">> + <<set _slaveMod -= 0.35>> + <</if>> + <<set _atkMod += random(15) * 0.1>> + <<set _defMod += random(15) * 0.1>> + <<set _tacChance += random(30) * 0.1>> + <<elseif $leadingTroops == "colonel">> + <<set _mercMod += 0.10>> + <<set _SFMod += 0.15>> + <<if $arcologies[0].FSRomanRevivalist != "unset">> + <<set _militiaMod += 0.10>> + <<else>> + <<set _militiaMod -= 0.10>> + <</if>> + <<if $arcologies[0].FSDegradationist != "unset">> + <<set _slaveMod -= 0.35>> + <</if>> + <<set _atkMod += random(30) * 0.1>> + <<set _defMod += random(30) * 0.1>> + <<set _tacChance += random(40) * 0.1>> + <</if>> + /* Terrain and Tactics */ + <<if $battleTerrain == "urban">> + <<if $chosenTactic == "Bait and Bleed">> + <<set _atkMod += 0.15>> + <<set _defMod += 0.10>> + <<set _tacChance += 0.25>> + <<elseif $chosenTactic == "Guerrilla">> + <<set _atkMod += 0.10>> + <<set _defMod += 0.15>> + <<set _tacChance += 0.25>> + <<elseif $chosenTactic == "Choke Points">> + <<set _atkMod += 0.10>> + <<set _defMod += 0.15>> + <<set _tacChance += 0.25>> + <<elseif $chosenTactic == "Interior Lines">> + <<set _atkMod += 0.05>> + <<set _defMod += 0.10>> + <<set _tacChance += 0.15>> + <<elseif $chosenTactic == "Pincer Maneuver">> + <<set _atkMod -= 0.05>> + <<set _defMod -= 0.10>> + <<set _tacChance -= 0.15>> + <<elseif $chosenTactic == "Defense In Depth">> + <<set _atkMod -= 0.05>> + <<set _defMod -= 0.05>> + <<set _tacChance -= 0.10>> + <<elseif $chosenTactic == "Blitzkrieg">> + <<set _atkMod -= 0.15>> + <<set _defMod -= 0.10>> + <<set _tacChance -= 0.25>> + <<elseif $chosenTactic == "Human Wave">> + <<set _atkMod -= 0.15>> + <<set _defMod -= 0.15>> + <<set _tacChance -= 0.30>> + <</if>> + <<elseif $battleTerrain == "rural">> + <<if $chosenTactic == "Bait and Bleed">> + <<set _atkMod -= 0.05>> + <<set _defMod -= 0.10>> + <<set _tacChance -= 0.15>> + <<elseif $chosenTactic == "Guerrilla">> + <<set _atkMod -= 0.10>> + <<set _defMod -= 0.10>> + <<set _tacChance -= 0.20>> + <<elseif $chosenTactic == "Choke Points">> + <<set _atkMod -= 0.10>> + <<set _defMod -= 0.15>> + <<set _tacChance -= 0.25>> + <<elseif $chosenTactic == "Interior Lines">> + <<set _atkMod += 0.10>> + <<set _defMod += 0.15>> + <<set _tacChance += 0.25>> + <<elseif $chosenTactic == "Pincer Maneuver">> + <<set _atkMod += 0.15>> + <<set _defMod += 0.10>> + <<set _tacChance += 0.25>> + <<elseif $chosenTactic == "Defense In Depth">> + <<set _atkMod += 0.15>> + <<set _defMod += 0.15>> + <<set _tacChance += 0.30>> + <<elseif $chosenTactic == "Blitzkrieg">> + <<set _atkMod += 0.15>> + <<set _defMod += 0.10>> + <<set _tacChance += 0.25>> + <<elseif $chosenTactic == "Human Wave">> + <<set _atkMod += 0.20>> + <<set _defMod += 0.05>> + <<set _tacChance += 0.25>> + <</if>> + <<elseif $battleTerrain == "hills">> + <<if $chosenTactic == "Bait and Bleed">> + <<set _atkMod += 0.05>> + <<set _defMod += 0.05>> + <<set _tacChance += 0.10>> + <<elseif $chosenTactic == "Guerrilla">> + <<set _atkMod += 0.05>> + <<set _defMod += 0.10>> + <<set _tacChance += 0.15>> + <<elseif $chosenTactic == "Choke Points">> + <<set _atkMod += 0.10>> + <<set _defMod += 0.10>> + <<set _tacChance += 0.20>> + <<elseif $chosenTactic == "Interior Lines">> + <<set _atkMod -= 0.05>> + <<set _defMod -= 0.05>> + <<set _tacChance -= 0.10>> + <<elseif $chosenTactic == "Pincer Maneuver">> + <<set _atkMod += 0.10>> + <<set _defMod += 0.05>> + <<set _tacChance += 0.15>> + <<elseif $chosenTactic == "Defense In Depth">> + <<set _atkMod -= 0.10>> + <<set _defMod -= 0.05>> + <<set _tacChance -= 0.15>> + <<elseif $chosenTactic == "Blitzkrieg">> + <<set _atkMod -= 0.10>> + <<set _defMod -= 0.15>> + <<set _tacChance += 0.25>> + <<elseif $chosenTactic == "Human Wave">> + <<set _atkMod -= 0.15>> + <<set _defMod -= 0.15>> + <<set _tacChance -= 0.30>> + <</if>> + <<elseif $battleTerrain == "coast">> + <<if $chosenTactic == "Bait and Bleed">> + <<set _atkMod -= 0.05>> + <<set _defMod -= 0.05>> + <<set _tacChance -= 0.10>> + <<elseif $chosenTactic == "Guerrilla">> + <<set _atkMod += 0.05>> + <<set _defMod += 0.05>> + <<set _tacChance += 0.10>> + <<elseif $chosenTactic == "Choke Points">> + <<set _atkMod += 0.05>> + <<set _defMod += 0.15>> + <<set _tacChance += 0.15>> + <<elseif $chosenTactic == "Interior Lines">> + <<set _atkMod += 0.10>> + <<set _defMod += 0.10>> + <<set _tacChance += 0.20>> + <<elseif $chosenTactic == "Pincer Maneuver">> + <<set _atkMod -= 0.10>> + <<set _defMod -= 0.10>> + <<set _tacChance -= 0.20>> + <<elseif $chosenTactic == "Defense In Depth">> + <<set _atkMod += 0.10>> + <<set _defMod += 0.10>> + <<set _tacChance += 0.20>> + <<elseif $chosenTactic == "Blitzkrieg">> + <<set _atkMod -= 0.05>> + <<set _defMod -= 0.05>> + <<set _tacChance -= 0.10>> + <<elseif $chosenTactic == "Human Wave">> + <<set _atkMod += 0.05>> + <<set _defMod -= 0.05>> + <</if>> + <<elseif $battleTerrain == "outskirts">> + <<if $chosenTactic == "Bait and Bleed">> + <<set _atkMod -= 0.10>> + <<set _defMod -= 0.15>> + <<set _tacChance -= 0.25>> + <<elseif $chosenTactic == "Guerrilla">> + <<set _atkMod -= 0.10>> + <<set _defMod -= 0.05>> + <<set _tacChance -= 0.15>> + <<elseif $chosenTactic == "Choke Points">> + <<set _atkMod += 0.10>> + <<set _defMod += 0.15>> + <<set _tacChance += 0.25>> + <<elseif $chosenTactic == "Interior Lines">> + <<set _atkMod += 0.15>> + <<set _defMod += 0.10>> + <<set _tacChance += 0.25>> + <<elseif $chosenTactic == "Pincer Maneuver">> + <<set _atkMod += 0.05>> + <<set _defMod += 0.10>> + <<set _tacChance += 0.15>> + <<elseif $chosenTactic == "Defense In Depth">> + <<set _atkMod += 0.10>> + <<set _defMod += 0.15>> + <<set _tacChance += 0.25>> + <<elseif $chosenTactic == "Blitzkrieg">> + <<set _atkMod += 0.10>> + <<set _defMod -= 0.05>> + <<set _tacChance += 0.05>> + <<elseif $chosenTactic == "Human Wave">> + <<set _atkMod += 0.10>> + <<set _defMod -= 0.10>> + <</if>> + <<elseif $battleTerrain == "mountains">> + <<if $chosenTactic == "Bait and Bleed">> + <<set _atkMod += 0.10>> + <<set _defMod += 0.15>> + <<set _tacChance += 0.25>> + <<elseif $chosenTactic == "Guerrilla">> + <<set _atkMod += 0.10>> + <<set _defMod += 0.15>> + <<set _tacChance += 0.25>> + <<elseif $chosenTactic == "Choke Points">> + <<set _atkMod += 0.05>> + <<set _defMod += 0.20>> + <<set _tacChance += 0.25>> + <<elseif $chosenTactic == "Interior Lines">> + <<set _atkMod += 0.10>> + <<set _defMod += 0.10>> + <<set _tacChance += 0.20>> + <<elseif $chosenTactic == "Pincer Maneuver">> + <<set _atkMod += 0.10>> + <<set _defMod -= 0.05>> + <<set _tacChance += 0.05>> + <<elseif $chosenTactic == "Defense In Depth">> + <<set _atkMod += 0.10>> + <<set _defMod += 0.10>> + <<set _tacChance += 0.20>> + <<elseif $chosenTactic == "Blitzkrieg">> + <<set _atkMod -= 0.10>> + <<set _defMod -= 0.10>> + <<set _tacChance -= 0.20>> + <<elseif $chosenTactic == "Human Wave">> + <<set _atkMod -= 0.10>> + <<set _defMod -= 0.10>> + <<set _tacChance -= 0.20>> + <</if>> + <<elseif $battleTerrain == "wasteland">> + <<if $chosenTactic == "Bait and Bleed">> + <<set _atkMod += 0.05>> + <<set _defMod += 0.05>> + <<set _tacChance += 0.10>> + <<elseif $chosenTactic == "Guerrilla">> + <<set _atkMod += 0.10>> + <<set _defMod += 0.05>> + <<set _tacChance += 0.15>> + <<elseif $chosenTactic == "Choke Points">> + <<set _atkMod -= 0.10>> + <<set _defMod += 0.05>> + <<set _tacChance -= 0.05>> + <<elseif $chosenTactic == "Interior Lines">> + <<set _atkMod += 0.10>> + <<set _defMod += 0.15>> + <<set _tacChance += 0.25>> + <<elseif $chosenTactic == "Pincer Maneuver">> + <<set _atkMod += 0.15>> + <<set _defMod += 0.10>> + <<set _tacChance += 0.25>> + <<elseif $chosenTactic == "Defense In Depth">> + <<set _atkMod += 0.05>> + <<set _defMod += 0.10>> + <<set _tacChance += 0.15>> + <<elseif $chosenTactic == "Blitzkrieg">> + <<set _atkMod += 0.15>> + <<set _defMod += 0.15>> + <<set _tacChance += 0.30>> + <<elseif $chosenTactic == "Human Wave">> + <<set _atkMod += 0.20>> + <<set _defMod += 0.05>> + <<set _tacChance += 0.25>> + <</if>> <</if>> -<<elseif $battleTerrain == "outskirts">> + <<if $chosenTactic == "Bait and Bleed">> - <<set _atkMod -= 0.10>> - <<set _defMod -= 0.15>> - <<set _tacChance -= 0.25>> + <<if $attackType == "raiders">> + <<set _tacChance -= 0.10>> + <<elseif $attackType == "free city">> + <<set _tacChance += 0.10>> + <<elseif $attackType == "old world">> + <<set _tacChance += 0.25>> + <<elseif $attackType == "freedom fighters">> + <<set _tacChance -= 0.15>> + <</if>> <<elseif $chosenTactic == "Guerrilla">> - <<set _atkMod -= 0.10>> - <<set _defMod -= 0.05>> - <<set _tacChance -= 0.15>> + <<if $attackType == "raiders">> + <<set _tacChance -= 0.20>> + <<elseif $attackType == "free city">> + <<set _tacChance += 0.15>> + <<elseif $attackType == "old world">> + <<set _tacChance += 0.25>> + <<elseif $attackType == "freedom fighters">> + <<set _tacChance -= 0.25>> + <</if>> <<elseif $chosenTactic == "Choke Points">> - <<set _atkMod += 0.10>> - <<set _defMod += 0.15>> - <<set _tacChance += 0.25>> + <<if $attackType == "raiders">> + <<set _tacChance += 0.25>> + <<elseif $attackType == "free city">> + <<set _tacChance -= 0.05>> + <<elseif $attackType == "old world">> + <<set _tacChance -= 0.10>> + <<elseif $attackType == "freedom fighters">> + <<set _tacChance += 0.05>> + <</if>> <<elseif $chosenTactic == "Interior Lines">> - <<set _atkMod += 0.15>> - <<set _defMod += 0.10>> - <<set _tacChance += 0.25>> + <<if $attackType == "raiders">> + <<set _tacChance -= 0.15>> + <<elseif $attackType == "free city">> + <<set _tacChance += 0.15>> + <<elseif $attackType == "old world">> + <<set _tacChance += 0.20>> + <<elseif $attackType == "freedom fighters">> + <<set _tacChance -= 0.10>> + <</if>> <<elseif $chosenTactic == "Pincer Maneuver">> - <<set _atkMod += 0.05>> - <<set _defMod += 0.10>> - <<set _tacChance += 0.15>> + <<if $attackType == "raiders">> + <<set _tacChance += 0.15>> + <<elseif $attackType == "free city">> + <<set _tacChance += 0.10>> + <<elseif $attackType == "old world">> + <<set _tacChance -= 0.10>> + <<elseif $attackType == "freedom fighters">> + <<set _tacChance += 0.15>> + <</if>> <<elseif $chosenTactic == "Defense In Depth">> - <<set _atkMod += 0.10>> - <<set _defMod += 0.15>> - <<set _tacChance += 0.25>> + <<if $attackType == "raiders">> + <<set _tacChance -= 0.20>> + <<elseif $attackType == "free city">> + <<set _tacChance += 0.10>> + <<elseif $attackType == "old world">> + <<set _tacChance += 0.20>> + <<elseif $attackType == "freedom fighters">> + <<set _tacChance -= 0.05>> + <</if>> <<elseif $chosenTactic == "Blitzkrieg">> - <<set _atkMod += 0.10>> - <<set _defMod -= 0.05>> - <<set _tacChance += 0.05>> + <<if $attackType == "raiders">> + <<set _tacChance += 0.10>> + <<elseif $attackType == "free city">> + <<set _tacChance -= 0.20>> + <<elseif $attackType == "old world">> + <<set _tacChance += 0.25>> + <<elseif $attackType == "freedom fighters">> + <<set _tacChance -= 0.10>> + <</if>> <<elseif $chosenTactic == "Human Wave">> - <<set _atkMod += 0.10>> - <<set _defMod -= 0.10>> + <<if $attackType == "raiders">> + <<set _tacChance -= 0.10>> + <<elseif $attackType == "free city">> + <<set _tacChance += 0.10>> + <<elseif $attackType == "old world">> + <<set _tacChance -= 0.15>> + <<elseif $attackType == "freedom fighters">> + <<set _tacChance += 0.10>> + <</if>> <</if>> -<<elseif $battleTerrain == "mountains">> - <<if $chosenTactic == "Bait and Bleed">> - <<set _atkMod += 0.10>> - <<set _defMod += 0.15>> - <<set _tacChance += 0.25>> - <<elseif $chosenTactic == "Guerrilla">> - <<set _atkMod += 0.10>> - <<set _defMod += 0.15>> - <<set _tacChance += 0.25>> - <<elseif $chosenTactic == "Choke Points">> - <<set _atkMod += 0.05>> - <<set _defMod += 0.20>> - <<set _tacChance += 0.25>> - <<elseif $chosenTactic == "Interior Lines">> + + /* Calculates if tactics are successful */ + /* minimum chance is 10% */ + <<if _tacChance <= 0>> + <<set _tacChance = 0.1>> + <</if>> + <<if random(1,100) <= _tacChance * 100>> + <<set _enemyMod -= 0.30>> + <<set _militiaMod += 0.20>> + <<set _slaveMod += 0.20>> + <<set _mercMod += 0.20>> <<set _atkMod += 0.10>> <<set _defMod += 0.10>> - <<set _tacChance += 0.20>> - <<elseif $chosenTactic == "Pincer Maneuver">> - <<set _atkMod += 0.10>> - <<set _defMod -= 0.05>> - <<set _tacChance += 0.05>> - <<elseif $chosenTactic == "Defense In Depth">> - <<set _atkMod += 0.10>> - <<set _defMod += 0.10>> - <<set _tacChance += 0.20>> - <<elseif $chosenTactic == "Blitzkrieg">> - <<set _atkMod -= 0.10>> - <<set _defMod -= 0.10>> - <<set _tacChance -= 0.20>> - <<elseif $chosenTactic == "Human Wave">> + <<set $tacticsSuccessful = 1>> + <<else>> + <<set _enemyMod += 0.20>> + <<set _militiaMod -= 0.20>> + <<set _slaveMod -= 0.20>> + <<set _mercMod -= 0.20>> <<set _atkMod -= 0.10>> <<set _defMod -= 0.10>> - <<set _tacChance -= 0.20>> - <</if>> -<<elseif $battleTerrain == "wasteland">> - <<if $chosenTactic == "Bait and Bleed">> - <<set _atkMod += 0.05>> - <<set _defMod += 0.05>> - <<set _tacChance += 0.10>> - <<elseif $chosenTactic == "Guerrilla">> - <<set _atkMod += 0.10>> - <<set _defMod += 0.05>> - <<set _tacChance += 0.15>> - <<elseif $chosenTactic == "Choke Points">> - <<set _atkMod -= 0.10>> - <<set _defMod += 0.05>> - <<set _tacChance -= 0.05>> - <<elseif $chosenTactic == "Interior Lines">> - <<set _atkMod += 0.10>> - <<set _defMod += 0.15>> - <<set _tacChance += 0.25>> - <<elseif $chosenTactic == "Pincer Maneuver">> - <<set _atkMod += 0.15>> - <<set _defMod += 0.10>> - <<set _tacChance += 0.25>> - <<elseif $chosenTactic == "Defense In Depth">> - <<set _atkMod += 0.05>> - <<set _defMod += 0.10>> - <<set _tacChance += 0.15>> - <<elseif $chosenTactic == "Blitzkrieg">> - <<set _atkMod += 0.15>> - <<set _defMod += 0.15>> - <<set _tacChance += 0.30>> - <<elseif $chosenTactic == "Human Wave">> - <<set _atkMod += 0.20>> - <<set _defMod += 0.05>> - <<set _tacChance += 0.25>> + <<set $tacticsSuccessful = 0>> + <</if>> + + /* enemy morale mods */ + <<if $week < 30>> + <<set _enemyMod += 0.15>> + <<elseif $week < 60>> + <<set _enemyMod += 0.30>> + <<elseif $week < 90>> + <<set _enemyMod += 0.45>> + <<elseif $week < 120>> + <<set _enemyMod += 0.60>> + <<else>> + <<set _enemyMod += 0.75>> + <</if>> + + /* calculates PC army stats */ + <<if $secBots.isDeployed == 1>> + <<set _attack += ($secBotsBaseAttack + $secBotsBaseAttack * $secBots.equip * $equipMod) * _atkMod>> + <<set _defense += ($secBotsBaseDefense + $secBotsBaseDefense * $secBots.equip * $equipMod) * _defMod>> + <<set _hp += $secBotsBaseHp * $secBots.troops>> + <</if>> + <<for _i = 0; _i < $militiaUnits.length; _i++>> + <<if $militiaUnits[_i].isDeployed == 1>> + <<if $militiaUnits[_i].training <= 10>> + <<set _expBonus = 0>> + <<elseif $militiaUnits[_i].training <= 33>> + <<set _expBonus = 0.10>> + <<elseif $militiaUnits[_i].training <= 66>> + <<set _expBonus = 0.25>> + <<else>> + <<set _expBonus = 0.50>> + <</if>> + <<if $militiaUnits[_i].loyalty <= 10>> + <<set _loyaltyBonus = 0>> + <<elseif $militiaUnits[_i].loyalty <= 33>> + <<set _loyaltyBonus = 0.10>> + <<elseif $militiaUnits[_i].loyalty <= 66>> + <<set _loyaltyBonus = 0.20>> + <<else>> + <<set _loyaltyBonus = 0.30>> + <</if>> + <<set _attack += ($militiaBaseAttack + $militiaBaseAttack * $militiaUnits[_i].equip * $equipMod + $militiaBaseAttack * _expBonus + $militiaBaseAttack * _loyaltyBonus + $militiaBaseAttack * $militiaUnits[_i].SF * 0.20 + $militiaUnits[_i].cyber) * _atkMod>> + <<set _defense += ($militiaBaseDefense + $militiaBaseDefense * $militiaUnits[_i].equip * $equipMod + $militiaBaseDefense * _expBonus + $militiaBaseDefense * _loyaltyBonus + $militiaBaseDefense * $militiaUnits[_i].SF * 0.20 + $militiaUnits[_i].cyber) * _defMod>> + <<set _hp += ($militiaBaseHp + $militiaUnits[_i].cyber + $militiaBaseHp * $militiaUnits[_i].medics * 0.25) * $militiaUnits[_i].troops>> + <</if>> + <</for>> + <<for _i = 0; _i < $slaveUnits.length; _i++>> + <<if $slaveUnits[_i].isDeployed == 1>> + <<if $slaveUnits[_i].training <= 33>> + <<set _expBonus = 0>> + <<elseif $slaveUnits[_i].training <= 66>> + <<set _expBonus = 0.25>> + <<else>> + <<set _expBonus = 0.50>> + <</if>> + <<if $slaveUnits[_i].loyalty <= 10>> + <<set _loyaltyBonus = 0>> + <<elseif $slaveUnits[_i].loyalty <= 33>> + <<set _loyaltyBonus = 0.10>> + <<elseif $slaveUnits[_i].loyalty <= 66>> + <<set _loyaltyBonus = 0.20>> + <<else>> + <<set _loyaltyBonus = 0.30>> + <</if>> + <<set _attack += ($slaveBaseAttack + $slaveBaseAttack * $slaveUnits[_i].equip * $equipMod + $slaveBaseAttack * _expBonus + $slaveBaseAttack * _loyaltyBonus + $slaveBaseAttack * $slaveUnits[_i].SF * 0.20 + $slaveUnits[_i].cyber) * _atkMod>> + <<set _defense += ($slaveBaseDefense + $slaveBaseDefense * $slaveUnits[_i].equip * $equipMod + $slaveBaseDefense * _expBonus + $slaveBaseDefense * _loyaltyBonus + $slaveBaseDefense * $slaveUnits[_i].SF * 0.20 + $slaveUnits[_i].cyber) * _defMod>> + <<set _hp += ($slaveBaseHp + $slaveUnits[_i].cyber + $slaveBaseHp * $slaveUnits[_i].medics * 0.25) * $slaveUnits[_i].troops>> + <</if>> + <</for>> + <<for _i = 0; _i < $mercUnits.length; _i++>> + <<if $mercUnits[_i].isDeployed == 1>> + <<if $mercUnits[_i].training <= 33>> + <<set _expBonus = 0>> + <<elseif $mercUnits[_i].training <= 66>> + <<set _expBonus = 0.25>> + <<else>> + <<set _expBonus = 0.50>> + <</if>> + <<if $mercUnits[_i].loyalty <= 10>> + <<set _loyaltyBonus = 0>> + <<elseif $mercUnits[_i].loyalty <= 33>> + <<set _loyaltyBonus = 0.10>> + <<elseif $mercUnits[_i].loyalty <= 66>> + <<set _loyaltyBonus = 0.20>> + <<else>> + <<set _loyaltyBonus = 0.30>> + <</if>> + <<set _attack += ($mercBaseAttack + $mercBaseAttack * $mercUnits[_i].equip * $equipMod + $mercBaseAttack * _expBonus + $mercBaseAttack * _loyaltyBonus + $mercBaseAttack * $mercUnits[_i].SF * 0.20 + $mercUnits[_i].cyber) * _atkMod>> + <<set _defense += ($mercBaseDefense + $mercBaseDefense * $mercUnits[_i].equip * $equipMod + $mercBaseDefense * _expBonus + $mercBaseDefense * _loyaltyBonus + $mercBaseDefense * $mercUnits[_i].SF * 0.20 + $mercUnits[_i].cyber) * _defMod>> + <<set _hp += ($mercBaseHp + $mercUnits[_i].cyber + $mercBaseHp * $mercUnits[_i].medics * 0.25) * $mercUnits[_i].troops>> + <</if>> + <</for>> + + <<if $SF.Toggle && $SF.Active >= 1 && $SFIntervention>> + <<set $SFatk = 0>> + <<set $SFdef = 0>> + <<set $SFhp = 0>> + <<calcSFStatistics>> + <<set _attack += $SFatk>> + <<set _defense += $SFdef>> + <<set _hp += $SFhp>> + <</if>> + + /* morale and baseHp calculation */ + /* minimum modifier is -50%, maximum is +50% */ + <<if _militiaMod < 0.5>> + <<set _militiaMod = 0.5>> + <<elseif _militiaMod > 1.5>> + <<set _militiaMod = 1.5>> + <</if>> + <<if _slaveMod < 0.5>> + <<set _slaveMod = 0.5>> + <<elseif _slaveMod > 1.5>> + <<set _slaveMod = 1.5>> + <</if>> + <<if _mercMod < 0.5>> + <<set _mercMod = 0.5>> + <<elseif _mercMod > 1.5>> + <<set _mercMod = 1.5>> + <</if>> + <<if _SFMod < 0.5>> + <<set _SFMod = 0.5>> + <<elseif _SFMod > 1.5>> + <<set _SFMod = 1.5>> + <</if>> + + <<set $troopCount = 0>> + <<calcTroopCount>> + <<set _moraleTroopMod = Math.clamp($troopCount / 100,1,5)>> + + <<set _morale = ($secBotsMorale * $deployingBots + $militiaBaseMorale * _militiaMod * $deployingMilitia + $slaveBaseMorale * _slaveMod * $deployingSlaves + $mercBaseMorale * _mercMod * $deployingMercs + $SFBaseMorale * $SFIntervention * _SFMod) / ($deployingBots + $deployingMilitia +$deployingSlaves + $deployingMercs + $SFIntervention)>> + <<set _morale = _morale + _morale * $secBarracksUpgrades.luxury * 0.05>> /* barracks bonus */ + <<set _morale *= _moraleTroopMod>> + <<set _baseHp = ($secBotsBaseHp * $deployingBots + $militiaBaseHp * $deployingMilitia + $slaveBaseHp * $deployingSlaves + $mercBaseHp * $deployingMercs + $SFBaseHp * $SFIntervention) / ($deployingBots + $deployingMilitia +$deployingSlaves + $deployingMercs + $SFIntervention)>> + + /* calculates enemy army stats */ + <<if $week <= 30>> + <<set _armyMod = $attackTroops / 80>> + <<elseif $week <= 60>> + <<set _armyMod = $attackTroops / 75>> + <<elseif $week <= 90>> + <<set _armyMod = $attackTroops / 70>> + <<elseif $week <= 120>> + <<set _armyMod = $attackTroops / 65>> + <<else>> + <<set _armyMod = $attackTroops / 60>> <</if>> -<</if>> - -<<if $chosenTactic == "Bait and Bleed">> - <<if $attackType == "raiders">> - <<set _tacChance -= 0.10>> - <<elseif $attackType == "free city">> - <<set _tacChance += 0.10>> - <<elseif $attackType == "old world">> - <<set _tacChance += 0.25>> - <<elseif $attackType == "freedom fighters">> - <<set _tacChance -= 0.15>> + <<set _armyMod = Math.trunc(_armyMod)>> + <<if $majorBattle == 1>> + <<set _armyMod *= 2>> <</if>> -<<elseif $chosenTactic == "Guerrilla">> - <<if $attackType == "raiders">> - <<set _tacChance -= 0.20>> - <<elseif $attackType == "free city">> - <<set _tacChance += 0.15>> - <<elseif $attackType == "old world">> - <<set _tacChance += 0.25>> - <<elseif $attackType == "freedom fighters">> - <<set _tacChance -= 0.25>> + <<if _armyMod <= 0>> + <<set _armyMod = 1>> <</if>> -<<elseif $chosenTactic == "Choke Points">> + + <<set _enemyMoraleTroopMod = Math.clamp($attackTroops / 100,1,5)>> + <<if $attackType == "raiders">> - <<set _tacChance += 0.25>> + <<set _enemyAttack = ($raBaseAttack + $weapManu * $sellTo.raiders + $raBaseAttack * $attackEquip * $equipMod) * _armyMod>> + <<set _enemyDefense = ($raBaseDefense + $weapManu * $sellTo.raiders + $raBaseDefense * $attackEquip * $equipMod) * _armyMod>> + <<set _enemyMorale = $raBaseMorale * _enemyMod * _enemyMoraleTroopMod>> + <<set _enemyHp = $raBaseHp * $attackTroops>> + <<set _enemyBaseHp = $raBaseHp>> <<elseif $attackType == "free city">> - <<set _tacChance -= 0.05>> + <<set _enemyAttack = ($fcBaseAttack + $weapManu * $sellTo.FC + $fcBaseAttack * $attackEquip * $equipMod) * _armyMod>> + <<set _enemyDefense = ($fcBaseDefense + $weapManu * $sellTo.FC + $fcBaseDefense * $attackEquip * $equipMod) * _armyMod>> + <<set _enemyMorale = $fcBaseMorale * _enemyMod * _enemyMoraleTroopMod>> + <<set _enemyHp = $fcBaseHp * $attackTroops>> + <<set _enemyBaseHp = $fcBaseHp>> <<elseif $attackType == "old world">> - <<set _tacChance -= 0.10>> + <<set _enemyAttack = ($owBaseAttack + $weapManu * $sellTo.oldWorld + $owBaseAttack * $attackEquip * $equipMod) * _armyMod>> + <<set _enemyDefense = ($owBaseDefense + $weapManu * $sellTo.oldWorld + $owBaseDefense * $attackEquip * $equipMod) * _armyMod>> + <<set _enemyMorale = $owBaseMorale * _enemyMod * _enemyMoraleTroopMod>> + <<set _enemyHp = $owBaseHp * $attackTroops>> + <<set _enemyBaseHp = $owBaseHp>> <<elseif $attackType == "freedom fighters">> - <<set _tacChance += 0.05>> + <<set _enemyAttack = ($ffBaseAttack + $weapManu * $sellTo.oldWorld + $ffBaseAttack * $attackEquip * $equipMod) * _armyMod>> + <<set _enemyDefense = ($ffBaseDefense + $weapManu * $sellTo.oldWorld + $ffBaseDefense * $attackEquip * $equipMod) * _armyMod>> + <<set _enemyMorale = $ffBaseMorale * _enemyMod * _enemyMoraleTroopMod>> + <<set _enemyHp = $ffBaseHp * $attackTroops>> + <<set _enemyBaseHp = $ffBaseHp>> <</if>> -<<elseif $chosenTactic == "Interior Lines">> - <<if $attackType == "raiders">> - <<set _tacChance -= 0.15>> - <<elseif $attackType == "free city">> - <<set _tacChance += 0.15>> - <<elseif $attackType == "old world">> - <<set _tacChance += 0.20>> - <<elseif $attackType == "freedom fighters">> - <<set _tacChance -= 0.10>> + + /* difficulty */ + <<set _enemyAttack *= $difficulty>> + <<set _enemyDefense *= $difficulty>> + <<set _enemyMorale *= $difficulty>> + <<set _enemyHp *= $difficulty>> + <<set _enemyBaseHp *= $difficulty>> + + <<if isNaN(_attack)>> + <br>@@.red;Error: attack value reported NaN@@ <</if>> -<<elseif $chosenTactic == "Pincer Maneuver">> - <<if $attackType == "raiders">> - <<set _tacChance += 0.15>> - <<elseif $attackType == "free city">> - <<set _tacChance += 0.10>> - <<elseif $attackType == "old world">> - <<set _tacChance -= 0.10>> - <<elseif $attackType == "freedom fighters">> - <<set _tacChance += 0.15>> + <<if isNaN(_defense)>> + <br>@@.red;Error: defense value reported NaN@@ <</if>> -<<elseif $chosenTactic == "Defense In Depth">> - <<if $attackType == "raiders">> - <<set _tacChance -= 0.20>> - <<elseif $attackType == "free city">> - <<set _tacChance += 0.10>> - <<elseif $attackType == "old world">> - <<set _tacChance += 0.20>> - <<elseif $attackType == "freedom fighters">> - <<set _tacChance -= 0.05>> + <<if isNaN(_hp)>> + <br>@@.red;Error: hp value reported NaN@@ <</if>> -<<elseif $chosenTactic == "Blitzkrieg">> - <<if $attackType == "raiders">> - <<set _tacChance += 0.10>> - <<elseif $attackType == "free city">> - <<set _tacChance -= 0.20>> - <<elseif $attackType == "old world">> - <<set _tacChance += 0.25>> - <<elseif $attackType == "freedom fighters">> - <<set _tacChance -= 0.10>> + <<if isNaN(_morale)>> + <br>@@.red;Error: morale value reported NaN@@ <</if>> -<<elseif $chosenTactic == "Human Wave">> - <<if $attackType == "raiders">> - <<set _tacChance -= 0.10>> - <<elseif $attackType == "free city">> - <<set _tacChance += 0.10>> - <<elseif $attackType == "old world">> - <<set _tacChance -= 0.15>> - <<elseif $attackType == "freedom fighters">> - <<set _tacChance += 0.10>> + <<if isNaN(_enemyAttack)>> + <br>@@.red;Error: enemy attack value reported NaN@@ <</if>> -<</if>> - -/* Calculates if tactics are successful */ -/* minimum chance is 10% */ -<<if _tacChance <= 0>> - <<set _tacChance = 0.1>> -<</if>> -<<if random(1,100) <= _tacChance * 100>> - <<set _enemyMod -= 0.30>> - <<set _militiaMod += 0.20>> - <<set _slaveMod += 0.20>> - <<set _mercMod += 0.20>> - <<set _atkMod += 0.10>> - <<set _defMod += 0.10>> - <<set $tacticsSuccessful = 1>> -<<else>> - <<set _enemyMod += 0.20>> - <<set _militiaMod -= 0.20>> - <<set _slaveMod -= 0.20>> - <<set _mercMod -= 0.20>> - <<set _atkMod -= 0.10>> - <<set _defMod -= 0.10>> - <<set $tacticsSuccessful = 0>> -<</if>> - -/* enemy morale mods */ -<<if $week < 30>> - <<set _enemyMod += 0.15>> -<<elseif $week < 60>> - <<set _enemyMod += 0.30>> -<<elseif $week < 90>> - <<set _enemyMod += 0.45>> -<<elseif $week < 120>> - <<set _enemyMod += 0.60>> -<<else>> - <<set _enemyMod += 0.75>> -<</if>> - -/* calculates PC army stats */ -<<if $secBots.isDeployed == 1>> - <<set _attack += ($secBotsBaseAttack + $secBotsBaseAttack * $secBots.equip * $equipMod) * _atkMod>> - <<set _defense += ($secBotsBaseDefense + $secBotsBaseDefense * $secBots.equip * $equipMod) * _defMod>> - <<set _hp += $secBotsBaseHp * $secBots.troops>> -<</if>> -<<for _i = 0; _i < $militiaUnits.length; _i++>> - <<if $militiaUnits[_i].isDeployed == 1>> - <<if $militiaUnits[_i].training <= 10>> - <<set _expBonus = 0>> - <<elseif $militiaUnits[_i].training <= 33>> - <<set _expBonus = 0.10>> - <<elseif $militiaUnits[_i].training <= 66>> - <<set _expBonus = 0.25>> - <<else>> - <<set _expBonus = 0.50>> - <</if>> - <<if $militiaUnits[_i].loyalty <= 10>> - <<set _loyaltyBonus = 0>> - <<elseif $militiaUnits[_i].loyalty <= 33>> - <<set _loyaltyBonus = 0.10>> - <<elseif $militiaUnits[_i].loyalty <= 66>> - <<set _loyaltyBonus = 0.20>> - <<else>> - <<set _loyaltyBonus = 0.30>> - <</if>> - <<set _attack += ($militiaBaseAttack + $militiaBaseAttack * $militiaUnits[_i].equip * $equipMod + $militiaBaseAttack * _expBonus + $militiaBaseAttack * _loyaltyBonus + $militiaBaseAttack * $militiaUnits[_i].SF * 0.20 + $militiaUnits[_i].cyber) * _atkMod>> - <<set _defense += ($militiaBaseDefense + $militiaBaseDefense * $militiaUnits[_i].equip * $equipMod + $militiaBaseDefense * _expBonus + $militiaBaseDefense * _loyaltyBonus + $militiaBaseDefense * $militiaUnits[_i].SF * 0.20 + $militiaUnits[_i].cyber) * _defMod>> - <<set _hp += ($militiaBaseHp + $militiaUnits[_i].cyber + $militiaBaseHp * $militiaUnits[_i].medics * 0.25) * $militiaUnits[_i].troops>> + <<if isNaN(_enemyDefense)>> + <br>@@.red;Error: enemy defense value reported NaN@@ <</if>> -<</for>> -<<for _i = 0; _i < $slaveUnits.length; _i++>> - <<if $slaveUnits[_i].isDeployed == 1>> - <<if $slaveUnits[_i].training <= 33>> - <<set _expBonus = 0>> - <<elseif $slaveUnits[_i].training <= 66>> - <<set _expBonus = 0.25>> - <<else>> - <<set _expBonus = 0.50>> - <</if>> - <<if $slaveUnits[_i].loyalty <= 10>> - <<set _loyaltyBonus = 0>> - <<elseif $slaveUnits[_i].loyalty <= 33>> - <<set _loyaltyBonus = 0.10>> - <<elseif $slaveUnits[_i].loyalty <= 66>> - <<set _loyaltyBonus = 0.20>> - <<else>> - <<set _loyaltyBonus = 0.30>> - <</if>> - <<set _attack += ($slaveBaseAttack + $slaveBaseAttack * $slaveUnits[_i].equip * $equipMod + $slaveBaseAttack * _expBonus + $slaveBaseAttack * _loyaltyBonus + $slaveBaseAttack * $slaveUnits[_i].SF * 0.20 + $slaveUnits[_i].cyber) * _atkMod>> - <<set _defense += ($slaveBaseDefense + $slaveBaseDefense * $slaveUnits[_i].equip * $equipMod + $slaveBaseDefense * _expBonus + $slaveBaseDefense * _loyaltyBonus + $slaveBaseDefense * $slaveUnits[_i].SF * 0.20 + $slaveUnits[_i].cyber) * _defMod>> - <<set _hp += ($slaveBaseHp + $slaveUnits[_i].cyber + $slaveBaseHp * $slaveUnits[_i].medics * 0.25) * $slaveUnits[_i].troops>> + <<if isNaN(_enemyHp)>> + <br>@@.red;Error: enemy hp value reported NaN@@ <</if>> -<</for>> -<<for _i = 0; _i < $mercUnits.length; _i++>> - <<if $mercUnits[_i].isDeployed == 1>> - <<if $mercUnits[_i].training <= 33>> - <<set _expBonus = 0>> - <<elseif $mercUnits[_i].training <= 66>> - <<set _expBonus = 0.25>> - <<else>> - <<set _expBonus = 0.50>> - <</if>> - <<if $mercUnits[_i].loyalty <= 10>> - <<set _loyaltyBonus = 0>> - <<elseif $mercUnits[_i].loyalty <= 33>> - <<set _loyaltyBonus = 0.10>> - <<elseif $mercUnits[_i].loyalty <= 66>> - <<set _loyaltyBonus = 0.20>> - <<else>> - <<set _loyaltyBonus = 0.30>> - <</if>> - <<set _attack += ($mercBaseAttack + $mercBaseAttack * $mercUnits[_i].equip * $equipMod + $mercBaseAttack * _expBonus + $mercBaseAttack * _loyaltyBonus + $mercBaseAttack * $mercUnits[_i].SF * 0.20 + $mercUnits[_i].cyber) * _atkMod>> - <<set _defense += ($mercBaseDefense + $mercBaseDefense * $mercUnits[_i].equip * $equipMod + $mercBaseDefense * _expBonus + $mercBaseDefense * _loyaltyBonus + $mercBaseDefense * $mercUnits[_i].SF * 0.20 + $mercUnits[_i].cyber) * _defMod>> - <<set _hp += ($mercBaseHp + $mercUnits[_i].cyber + $mercBaseHp * $mercUnits[_i].medics * 0.25) * $mercUnits[_i].troops>> + <<if isNaN(_enemyMorale)>> + <br>@@.red;Error: enemy morale value reported NaN@@ <</if>> +<<<<<<< HEAD <</for>> <<if $SF.Toggle && $SF.Active >= 1 && $SFIntervention>> @@ -1169,84 +1293,164 @@ __Enemy__: <<if $showBattleStatistics == 1>> turn: <<print _i + 1>><</if>> /* player army attacks */ <<set _damage = Math.clamp(_attack - _enemyDefense,_attack * 0.1,_attack)>> +======= + + <<if $showBattleStatistics == 1>> + <<set _atkMod -= 1, _defMod -= 1, _militiaMod -= 1, _mercMod -= 1, _slaveMod -= 1, _SFMod -= 1, _enemyMod -= 1, _moraleTroopMod -= 1, _enemyMoraleTroopMod -= 1, _difficulty = $difficulty -1>> + <<set _atkMod = Math.round(_atkMod * 100)>> + <<set _defMod = Math.round(_defMod * 100)>> + <<set _militiaMod = Math.round(_militiaMod * 100)>> + <<set _mercMod = Math.round(_mercMod * 100)>> + <<set _slaveMod = Math.round(_slaveMod * 100)>> + <<set _SFMod = Math.round(_SFMod * 100)>> + <<set _enemyMod = Math.round(_enemyMod * 100)>> + <<set _barracksBonus = $secBarracksUpgrades.luxury * 5>> + <<set _moraleTroopMod = Math.round(_moraleTroopMod * 100)>> + <<set _enemyMoraleTroopMod = Math.round(_enemyMoraleTroopMod * 100)>> + <<set _difficulty *= 100>> + + __Difficulty__: +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <br> - <<if $showBattleStatistics == 1>> player damage: <<print commaNum(Math.round(_damage))>><</if>> - <<set _enemyHp -= _damage>> + <<if $difficulty == 0.5>> + Very easy + <<elseif $difficulty == 0.75>> + Easy + <<elseif $difficulty == 1>> + Normal + <<elseif $difficulty == 1.25>> + Hard + <<else>> + Very hard + <</if>> <br> - <<if $showBattleStatistics == 1>> remaining enemy Hp: <<print commaNum(Math.round(_enemyHp))>><</if>> - <<set $enemyLosses += _damage / _enemyBaseHp>> - <<set _moraleDamage = Math.clamp(_damage / 2 + _damage / _enemyBaseHp,0,_damage*1.5)>> - <<set _enemyMorale -= _moraleDamage>> <br> - <<if $showBattleStatistics == 1>> remaining enemy morale: <<print commaNum(Math.round(_enemyMorale))>><</if>> - <<if _enemyHp <= 0 || _enemyMorale <= 0>> - <br> - <<if $showBattleStatistics == 1>> <br>Victory!<</if>> - <<set $battleResult = 3>> - <<set $battleTurns = _i>> - <<break>> - <</if>> - - /* attacker army attacks */ - <<set _damage = _enemyAttack - _defense>> - <<if _damage < _enemyAttack * 0.1>> - <<set _damage = _enemyAttack * 0.1>> + __Army__: + <br>troops: <<print commaNum(Math.round($troopCount))>> + <br>attack: <<print commaNum(Math.round(_attack))>> + <br>defense: <<print commaNum(Math.round(_defense))>> + <br>hp: <<print commaNum(Math.round(_hp))>> + <br>morale: <<print commaNum(Math.round(_morale))>> + <br>attack modifier: <<if _atkMod > 0>>+<</if>>_atkMod% + <br>defense modifier: <<if _defMod > 0>>+<</if>>_defMod% + <br>average base HP: <<print commaNum(Math.round(_baseHp))>> + <br>militia morale modifier: <<if _militiaMod > 0>>+<</if>>_militiaMod% + <br>slaves morale modifier: <<if _slaveMod > 0>>+<</if>>_slaveMod% + <br>mercenaries morale modifier: <<if _mercMod > 0>>+<</if>>_mercMod% + <<if $SF.Toggle && $SF.Active >= 1 && $SFIntervention>> + <br>special force morale modifier: <<if _SFMod > 0>>+<</if>>_SFMod% + <</if>> + <<if $secBarracksUpgrades.luxury >= 1>> + <br>Barracks bonus morale modifier: +<<print _barracksBonus>>% + <</if>> + <<if _moraleTroopMod>> + <br>morale increase due to troop numbers: +<<print _moraleTroopMod>>% <</if>> <br> - <<if $showBattleStatistics == 1>> enemy damage: <<print commaNum(Math.round(_damage))>><</if>> - <<set _hp -= _damage>> <br> - <<if $showBattleStatistics == 1>> remaining hp: <<print commaNum(Math.round(_hp))>><</if>> - <<set $losses += _damage / _baseHp>> - <<set _moraleDamage = Math.clamp(_damage / 2 + _damage / _baseHp,0,_damage*1.5)>> - <<set _morale -= _moraleDamage>> + __Tactics__: + <br>tactic chance of success: <<print commaNum(Math.round(_tacChance * 100))>>% + <br>was tactic chosen successful?: <<if $tacticsSuccessful == 1>> yes <<else>> no<</if>> <br> - <<if $showBattleStatistics == 1>> remaining morale: <<print Math.round(_morale)>><</if>> - <<if _hp <= 0 || _morale <= 0>> - <br> - <<if $showBattleStatistics == 1>> <br>Defeat!<</if>> - <<set $battleResult = -3>> - <<set $battleTurns = _i>> - <<break>> - <</if>> -<</for>> -<<if $battleResult != 3 && $battleResult != -3>> <br> - <<if _morale > _enemyMorale>> - <<if $showBattleStatistics == 1>> <br>Partial victory!<</if>> - <<set $battleResult = 2>> - <<elseif _morale < _enemyMorale>> - <<if $showBattleStatistics == 1>> <br>Partial defeat!<</if>> - <<set $battleResult = -2>> + __Enemy__: + <br>enemy troops: <<print commaNum(Math.round($attackTroops))>> + <br>enemy attack: <<print commaNum(Math.round(_enemyAttack))>> + <br>enemy defense: <<print commaNum(Math.round(_enemyDefense))>> + <br>enemy Hp: <<print commaNum(Math.round(_enemyHp))>> + <br>enemy morale: <<print commaNum(Math.round(_enemyMorale))>> + <br>enemy base Hp: <<print commaNum(Math.round(_enemyBaseHp))>> + <br>enemy morale modifier: <<if _enemyMod > 0>>+<</if>>_enemyMod% + <<if _enemyMoraleTroopMod > 0>> + <br>enemy morale increase due to troop numbers: +<<print _enemyMoraleTroopMod>>% + <</if>> + <br>Difficulty modifier: <<if _difficulty > 0>>+<</if>><<print _difficulty>>% + <</if>> + + /* simulates the combat by pitting attk against def */ + <<for _i = 0; _i < _turns; _i++>> + <br><br> + <<if $showBattleStatistics == 1>> turn: <<print _i + 1>><</if>> + /* player army attacks */ + <<set _damage = Math.clamp(_attack - _enemyDefense,_attack * 0.1,_attack)>> + <br> + <<if $showBattleStatistics == 1>> player damage: <<print commaNum(Math.round(_damage))>><</if>> + <<set _enemyHp -= _damage>> + <br> + <<if $showBattleStatistics == 1>> remaining enemy Hp: <<print commaNum(Math.round(_enemyHp))>><</if>> + <<set $enemyLosses += _damage / _enemyBaseHp>> + <<set _moraleDamage = Math.clamp(_damage / 2 + _damage / _enemyBaseHp,0,_damage*1.5)>> + <<set _enemyMorale -= _moraleDamage>> + <br> + <<if $showBattleStatistics == 1>> remaining enemy morale: <<print commaNum(Math.round(_enemyMorale))>><</if>> + <<if _enemyHp <= 0 || _enemyMorale <= 0>> + <br> + <<if $showBattleStatistics == 1>> <br>Victory!<</if>> + <<set $battleResult = 3>> + <<set $battleTurns = _i>> + <<break>> + <</if>> + + /* attacker army attacks */ + <<set _damage = _enemyAttack - _defense>> + <<if _damage < _enemyAttack * 0.1>> + <<set _damage = _enemyAttack * 0.1>> + <</if>> + <br> + <<if $showBattleStatistics == 1>> enemy damage: <<print commaNum(Math.round(_damage))>><</if>> + <<set _hp -= _damage>> + <br> + <<if $showBattleStatistics == 1>> remaining hp: <<print commaNum(Math.round(_hp))>><</if>> + <<set $losses += _damage / _baseHp>> + <<set _moraleDamage = Math.clamp(_damage / 2 + _damage / _baseHp,0,_damage*1.5)>> + <<set _morale -= _moraleDamage>> + <br> + <<if $showBattleStatistics == 1>> remaining morale: <<print Math.round(_morale)>><</if>> + <<if _hp <= 0 || _morale <= 0>> + <br> + <<if $showBattleStatistics == 1>> <br>Defeat!<</if>> + <<set $battleResult = -3>> + <<set $battleTurns = _i>> + <<break>> + <</if>> + <</for>> + <<if $battleResult != 3 && $battleResult != -3>> + <br> + <<if _morale > _enemyMorale>> + <<if $showBattleStatistics == 1>> <br>Partial victory!<</if>> + <<set $battleResult = 2>> + <<elseif _morale < _enemyMorale>> + <<if $showBattleStatistics == 1>> <br>Partial defeat!<</if>> + <<set $battleResult = -2>> + <</if>> <</if>> -<</if>> - -<<if $showBattleStatistics == 1>> - <br> - <br>Losses: <<print commaNum(Math.trunc($losses))>> - <br>Enemy losses: <<print commaNum(Math.trunc($enemyLosses))>> -<</if>> - -<<if $battleResult > 3 || $battleResult < -3>> - <br><br>@@.red;Error: failed to determine battle result@@ -<</if>> - -<<if $showBattleStatistics == 1 && $majorBattle == 1 && $majorBattleGameOver == 1 && $battleResult == -3>> - <br><br> - <<link "Proceed">> + + <<if $showBattleStatistics == 1>> + <br> + <br>Losses: <<print commaNum(Math.trunc($losses))>> + <br>Enemy losses: <<print commaNum(Math.trunc($enemyLosses))>> + <</if>> + + <<if $battleResult > 3 || $battleResult < -3>> + <br><br>@@.red;Error: failed to determine battle result@@ + <</if>> + + <<if $showBattleStatistics == 1 && $majorBattle == 1 && $majorBattleGameOver == 1 && $battleResult == -3>> + <br><br> + <<link "Proceed">> + <<set $gameover = "major battle defeat">> + <<goto "Gameover">> + <</link>> + <<elseif $majorBattle == 1 && $majorBattleGameOver == 1 && $battleResult == -3>> <<set $gameover = "major battle defeat">> <<goto "Gameover">> - <</link>> -<<elseif $majorBattle == 1 && $majorBattleGameOver == 1 && $battleResult == -3>> - <<set $gameover = "major battle defeat">> - <<goto "Gameover">> -<<elseif $showBattleStatistics == 1>> - <br><br> - <<link "Proceed">> + <<elseif $showBattleStatistics == 1>> + <br><br> + <<link "Proceed">> + <<goto "attackReport">> + <</link>> + <<else>> <<goto "attackReport">> - <</link>> -<<else>> - <<goto "attackReport">> -<</if>> + <</if>> <</if>> /* closes check for bribery */ \ No newline at end of file diff --git a/src/SecExp/encyclopediaSecExpMain.tw b/src/SecExp/encyclopediaSecExpMain.tw index b4dd21c9807d9170b1a4fb14ff026ae24d338ebb..c293c49f4462493ec3f3cfd8ce5aea78a6b10133 100644 --- a/src/SecExp/encyclopediaSecExpMain.tw +++ b/src/SecExp/encyclopediaSecExpMain.tw @@ -11,7 +11,7 @@ <br><br>Statistics: @@.darkviolet; <br><strong>Authority</strong>:@@ <br> Representing the power the player holds over the arcology. If @@.green;[[reputation|Encyclopedia][$encyclopedia = "Arcologies and Reputation"]]@@ is how well the protagonist is known, @@.darkviolet;authority@@ is how much is feared or respected. - Authority influences many things, but it is mainly used to enact edicts, who, similarly to policies, allow to shape the sociopolitical profile of your arcology. Like @@.green;reputation@@, @@.darkviolet;authority@@ has a maximum of <<print commaNum(20000)>>. + Authority influences many things, but it is mainly used to enact edicts, who, similarly to policies, allow to shape the socio-political profile of your arcology. Like @@.green;reputation@@, @@.darkviolet;authority@@ has a maximum of <<print commaNum(20000)>>. @@.deepskyblue;<br> <br><strong>Security</strong>:@@ <br> Representing how safe the arcology is, how likely it is for a citizen to get stabbed, killed or simply mugged in the streets as well as wider concerns like diff --git a/src/SpecialForce/Firebase.tw b/src/SpecialForce/Firebase.tw index 80ac1c60964532d35f2c13df94188bc6c8449d1f..8822568ee8385bcc3bd533bf5b06998917957f51 100644 --- a/src/SpecialForce/Firebase.tw +++ b/src/SpecialForce/Firebase.tw @@ -38,7 +38,11 @@ <<else>>examining a table with a map of the surrounding area, planning manuevers in the event of an attack.<</if>> +<<<<<<< HEAD She notices your entrance and turns her attention to you. +======= + She notices your entrance and turns her attention to you. +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <<if $SFColonel.Core == "brazen">> diff --git a/src/SpecialForce/Upgrades.tw b/src/SpecialForce/Upgrades.tw index f21fd9b586cf55d8819871c8326aee4295d13656..22fdac9ea81f8a0687fab7e82b7116f117491316 100644 --- a/src/SpecialForce/Upgrades.tw +++ b/src/SpecialForce/Upgrades.tw @@ -24,13 +24,21 @@ <<else>>//Cannot afford to upgrade the Firebase.//<</if>> +<<<<<<< HEAD //Costs @@.yellowgreen;<<print cashFormat(_cF)>>@@ // +======= + //Costs @@.yellowgreen;<<print cashFormat(_cF)>>@@ // +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <<elseif $SFUnit.Firebase == _FU>>//The Firebase has been fully upgraded.// <<else>>//More upgrades are required to unlock the next tier.// +<<<<<<< HEAD <</if>> <span style="float:right;"> <<print progress($SFUnit.Firebase)>> </span><br> +======= + <</if>> <span style="float:right;"> <<print progress($SFUnit.Firebase)>> </span><br> +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 @@ -44,7 +52,11 @@ <<else>>//Cannot afford to upgrade the Armory.//<</if>> +<<<<<<< HEAD //Costs @@.yellowgreen;<<print cashFormat(_cA)>>@@ // +======= + //Costs @@.yellowgreen;<<print cashFormat(_cA)>>@@ // +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <<elseif $SFUnit.Armoury == _AU>>//The Armory has been fully upgraded.// diff --git a/src/cheats/mod_EditNeighborArcologyCheatDatatypeCleanup.tw b/src/cheats/mod_EditNeighborArcologyCheatDatatypeCleanup.tw index 0a7b83112b92fecba96ff5ba0997700f4b67ddb0..a973823a2df56d0eeff59aa43cabda441f582f2c 100644 --- a/src/cheats/mod_EditNeighborArcologyCheatDatatypeCleanup.tw +++ b/src/cheats/mod_EditNeighborArcologyCheatDatatypeCleanup.tw @@ -13,14 +13,14 @@ <<if $arcologies[_i].FSSupremacist != "unset">> <<set $arcologies[_i].FSSupremacist = Number($arcologies[_i].FSSupremacist) || "unset">> <</if>> - <<if $arcologies[_i].FSSupremacist != "unset" && !["white", "asian", "latina", "middle eastern", "black", "indo-aryan", "pacific islander", "malay", "amerindian", "southern european", "semitic", "mixed race"].includes($arcologies[_i].FSSupremacistRace)>> - <<set $arcologies[_i].FSSupremacistRace = either("white", "asian", "latina", "middle eastern", "black", "indo-aryan", "pacific islander", "malay", "amerindian", "southern european", "semitic", "mixed race")>> + <<if $arcologies[_i].FSSupremacist != "unset" && !["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($arcologies[_i].FSSupremacistRace)>> + <<set $arcologies[_i].FSSupremacistRace = either("amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white")>> <</if>> <<if $arcologies[_i].FSSubjugationist != "unset">> <<set $arcologies[_i].FSSubjugationist = Number($arcologies[_i].FSSubjugationist) || "unset">> <</if>> - <<if $arcologies[_i].FSSubjugationist != "unset" && !["white", "asian", "latina", "middle eastern", "black", "indo-aryan", "pacific islander", "malay", "amerindian", "southern european", "semitic", "mixed race"].includes($arcologies[_i].FSSubjugationistRace)>> - <<set $arcologies[_i].FSSubjugationistRace = either("white", "asian", "latina", "middle eastern", "black", "indo-aryan", "pacific islander", "malay", "amerindian", "southern european", "semitic", "mixed race")>> + <<if $arcologies[_i].FSSubjugationist != "unset" && !["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($arcologies[_i].FSSubjugationistRace)>> + <<set $arcologies[_i].FSSubjugationistRace = either("amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white")>> <</if>> <<if $arcologies[_i].FSGenderRadicalist != "unset">> <<set $arcologies[_i].FSGenderRadicalist = Number($arcologies[_i].FSGenderRadicalist) || "unset">> @@ -119,4 +119,4 @@ You have CHEATED your way to influencing the neighboring arcologies. They have been unscrupulously directed according to your CHEAT whims. -<br><br>The Eldritch horrors feast upon your CHEATING soul and look forward to more future dealings with you. The repercussions may be far reaching and the consquences dire. +<br><br>The Eldritch horrors feast upon your CHEATING soul and look forward to more future dealings with you. The repercussions may be far reaching and the consequences dire. diff --git a/src/cheats/mod_EditSlaveCheat.tw b/src/cheats/mod_EditSlaveCheat.tw index a26d979325a4d913990dd8e7fab7a8fca076e006..30e925a0cbf6c4f5c08c6aa6dd75f8ad147fcd88 100644 --- a/src/cheats/mod_EditSlaveCheat.tw +++ b/src/cheats/mod_EditSlaveCheat.tw @@ -1353,7 +1353,7 @@ Paraphilias: <<radiobutton "$tempSlave.sexualQuirk" "unflinching">> Unflinching <<radiobutton "$tempSlave.sexualQuirk" "size queen">> Size Queen <<if $tempSlave.sexualQuirk != "none">> - <<if !["cum addict", "anal addict", "attention whore", "breast growth", "abusive", "malicious", "self hating", "neglectful", "breeder"].includes($tempSlave.sexualFlaw)>> + <<if !["abusive", "anal addict", "attention whore", "breast growth", "breeder", "cum addict", "malicious", "neglectful", "self hating"].includes($tempSlave.sexualFlaw)>> <<set $tempSlave.sexualFlaw = "none">> <</if>> <</if>> diff --git a/src/facilities/nursery/longChildDescription.tw b/src/facilities/nursery/longChildDescription.tw index 51f2319de5d46ce5fb30679f082f39c4ef6779d6..974b9ca290b9790ffbb7f39907268d22e7640291 100644 --- a/src/facilities/nursery/longChildDescription.tw +++ b/src/facilities/nursery/longChildDescription.tw @@ -1042,7 +1042,7 @@ $he's <<if $activeSlave.fuckdoll == 0>> <<if $showBodyMods == 1>> - <<if ["neck", "left cheek", "right cheek", "cheeks", "left ears", "right ears", "ears"].includes($activeSlave.brandLocation)>> + <<if ["cheeks", "ears", "left cheek", "left ears", "neck", "right cheek", "right ears"].includes($activeSlave.brandLocation)>> <<brandDescription>> <</if>> <</if>> @@ -1611,7 +1611,7 @@ $He is <<if $activeSlave.fuckdoll == 0>> <<if $showBodyMods == 1>> /* Check it's not a facial brand: */ - <<if ["back", "lower back", "chest", "right shoulder", "left shoulder", "shoulders", "right upper arm", "left upper arm", "upper arms", "right lower arm", "left lower arm", "lower arms", "right wrist", "left wrist", "wrists", "right hand", "left hand", "hands", "left ankle", "right ankle", "ankles", "right calf", "left calf", "calves", "right foot", "left foot", "feet"].includes($activeSlave.brandLocation)>> + <<if ["ankles", "back", "calves", "chest", "feet", "hands", "left ankle", "left calf", "left foot", "left hand", "left lower arm", "left shoulder", "left upper arm", "left wrist", "lower arms", "lower back", "right ankle", "right calf", "right foot", "right hand", "right lower arm", "right shoulder", "right upper arm", "right wrist", "shoulders", "upper arms", "wrists"].includes($activeSlave.brandLocation)>> <<brandDescription>> <</if>> <</if>> diff --git a/src/gui/Encyclopedia/encyclopedia.tw b/src/gui/Encyclopedia/encyclopedia.tw index 9ba39ede502bd249f548856b466c3bcd38d966d3..228d0d81baf300057712075648ba7ba7a7aa8b42 100644 --- a/src/gui/Encyclopedia/encyclopedia.tw +++ b/src/gui/Encyclopedia/encyclopedia.tw @@ -2006,7 +2006,7 @@ LORE: THE FREE CITIES TODAY <br><br>Different Cities have taken different approaches to the obvious problem of dealing with criminal conduct, which in the old world breaks no traditional contract. The most common approach is to require everyone to sign contracts with the owners of their homes and workplaces to commit no crimes while there. In this way, what would be murder in the old world is a breach of the contract with one's landlord not to murder on his property. - <br><br>Penalties for such conduct are usually left to the imagination of the property owner. With the traditional roles of judge, jury and jailer concentrated into the hands of a single wealthy person, rich potentates of the Cities hold more personal power over their tenants than anyone since the great feudal lords seven centuries ago. + <br><br>Penalties for such conduct are usually left to the imagination of the property owner. With the traditional roles of judge, jury, and jailer concentrated into the hands of a single wealthy person, rich potentates of the Cities hold more personal power over their tenants than anyone since the great feudal lords seven centuries ago. <br><br>-- Torstein, Jens Learned, //The Modern Libertarian Paradise, March 25, 2032//// @@ -2100,7 +2100,7 @@ LORE: FREE CITIES CULTURE TOMORROW <<case "Naked, Barefoot, and Pregnant">> - //...and helpless, and illiterate, and dependant... + //...and helpless, and illiterate, and dependent... <br> -- Anonymous slaveowner, on the ideal woman <br><br>It must be admitted that some of the boldest statements of early 21st century social justice advocates are now receiving some justification in the Free Cities. A tourist visiting some of the more notorious arcologies is given a public, in-person lesson in precisely what some men are willing to do with women they own. For every misogynist credo there is a Free Cities slaveowner putting it into practice. @@ -2605,10 +2605,10 @@ LORE: INTERVIEWS <br>''hexall90'' for height growth drugs, incubator organ farm support and detailing, the dispensary cleanup, the joint Eugenics bad end rework, the Hippolyta Academy, and the Security Expansion Mod. <br>''sensei'' for coding in support for commas and an excellent family tree rework. <br>''laziestman'' for sexy spats. - <br>''SFanon (blank)'' for SF related work, passive player skill gain, fulfillment order, player into summary rewrite, updating and re-organising the in-game wiki in addition to the joint Eugenics bad end rework. + <br>''SFanon (blank)'' for SF related work, passive player skill gain, fulfillment order, player into summary rewrite, updating and re-organizing the in-game wiki in addition to the joint Eugenics bad end rework. <br>''anon'' for extending FCGudder's economy reports to the other facilities. <br>''MilkAnon'' for his contributions to FCTV and the FC world in general. - <br>''valen102938'' for dealing with vector art, both creating new art and utilising unused art. + <br>''valen102938'' for dealing with vector art, both creating new art and utilizing unused art. <br>''anon'' for making slaves seed their own fields. <br>''Ansopedi'' for slave career skills. <br>''Emuis'' for various compiler tweaks @@ -2624,7 +2624,7 @@ LORE: INTERVIEWS <br>''editoranon'' for cleaning text and drafting up bodyswap reactions. <br>''anon'' for the wetware CPU market. <br>''Autistic Boi'' for Mediterranean market preset. - <br>''anon'' for the PA subjugationsist and supremacist FS appearances. + <br>''anon'' for the PA subjugationist and supremacist FS appearances. <br>''Editoranon and Milkanon?'' for prison markets and the nursing handjob scene. <br>''DCoded'' for creating the favicon and adding animals to the Pit, as well as nursery and bestiality content, scenes, facilities and fixes. Also a pussy licking scene. <br>''HiveBro'' for giving hyperpregnant slaves some serious loving. diff --git a/src/init/setupVars.tw b/src/init/setupVars.tw index 756297fb1f9799b8329658794f5343c2bb395b0e..3a4dcc21042b820cd4061fe94dc4ef0fbecabb50 100644 --- a/src/init/setupVars.tw +++ b/src/init/setupVars.tw @@ -1020,7 +1020,7 @@ <<set setup.russianMaleNames = ["Abram", "Afanasy", "Albert", "Alexander", "Alexei", "Anatoly", "Andrei", "Anton", "Arkady", "Arseny", "Artur", "Artyom", "Bogdan", "Boris", "Daniil", "David", "Denis", "Dmitri", "Dmitry", "Eduard", "Erik", "Evgeny", "Garry", "Gavriil", "Gennady", "Georgy", "Gerasim", "German", "Gleb", "Grigori", "Grigory", "Ignat", "Ignaty", "Igor", "Ilia", "Illarion", "Immanuil", "Iosif", "Ivan", "Kirill", "Konstantin", "Leon", "Leonid", "Lev", "Makar", "Marat", "Mark", "Matvei", "Maxim", "Mikhail", "Nestor", "Nikita", "Nikolay", "Oleg", "Pavel", "Pyotr", "Robert", "Rodion", "Roman", "Rostislav", "Ruslan", "Semyon", "Sergei", "Spartak", "Stanislav", "Stepan", "Taras", "Timofei", "Timur", "Trofim", "Vadim", "Valentin", "Valery", "Vasily", "Veniamin", "Viktor", "Vitaly", "Vlad", "Vladimir", "Vladislav", "Vsevolod", "Vyacheslav", "Yakov", "Yaroslav", "Yefim", "Yegor", "Yulian", "Yury", "Zakhar"]>> <<set setup.russianSlaveSurnames = ["Abarinova", "Abashova", "Abramova", "Agaltsova", "Agapova", "Agureeva", "Akhaimova", "Akimova", "Akinshina", "Aleksandrova", "Aleksandrovich", "Aleksandrovna", "Alekseeva", "Alieva", "Alliluyeva", "Altayskaya", "Ananina", "Andreeva", "Andrejchenko", "Antonenko", "Antonova", "Arbatova", "Aroseva", "Arshinova", "Asmus", "Astafieva", "Avdeyeva", "Baclanova", "Bajenova", "Baranova", "Batalova", "Belova", "Belyaeva", "Belyakova", "Berg", "Berseneva", "Blokhina", "Bogdanova", "Bogomolova", "Bogucharskaia", "Bondarenko", "Borisova", "Borissova", "Borodina", "Bosch", "Boyarskaya", "Boyko", "Brik", "Budina", "Budnitskaya", "Burina", "Burnasheva", "Buzova", "Cgernyavskaya", "Charskaya", "Chekhova", "Chemezova", "Chepeleva", "Cherepanova", "Chernova", "Chipovskaya", "Churilova", "Danilova", "Davydova", "Demekhina", "Dementieva", "Denisova", "Deulina", "Dmitrieva", "Doronina", "Dronina", "Dyupina", "Efimova", "Efremova", "Egorova", "Ekamasova", "Eremina", "Ermakova", "Ezhova", "Falileeva", "Farkhullina", "Fedorova", "Fedotova", "Fetisova", "Filatova", "Filippova", "Fomina", "Frank", "Freindlich", "Friske", "Frolova", "Fyodorova", "Gagarina", "Galkina", "Gavrilova", "Gerasimova", "Germanova", "Geva", "Girfanova", "Glazova", "Glebova", "Glinka", "Goldman", "Golovko", "Golub", "Golubeva", "Goncharova", "Gorbacheva", "Gorshkova", "Gracheva", "Grigoreva", "Grigorieva", "Grinenko", "Gromova", "Grosheva", "Gubanova", "Guseva", "Gzovskaya", "Ilchenko", "Ilina", "Inshina", "Isaeva", "Isinbayeva", "Isoeva", "Istomina", "Ivanova", "Jovovich", "Kabo", "Kachalina", "Kadirova", "Kahnovich", "Kalashnikova", "Kalinina", "Kamenkova", "Kaptsova", "Kapustina", "Karpova", "Kasatkina", "Katina", "Kazakova", "Kazanova", "Kedrova", "Khamatova", "Khityaeva", "Khlynina", "Khodchenkova", "Khomich", "Khovanskaya", "Khrushcheva", "Kibalo", "Kim", "Kirilenko", "Kirsanova", "Kiseleva", "Klimova", "Klishina", "Klopakova", "Kochina", "Kochneva", "Kolesnikova", "Kolosova", "Komarova", "Kondratyeva", "Konovalova", "Kopylova", "Korikova", "Koroleva", "Kotova", "Kouklina", "Kournikova", "Kovalenko", "Kovaleva", "Kovylina", "Kozlova", "Krajt", "Kravchenko", "Krivosheeva", "Krivozub", "Krupskaya", "Krylova", "Kulikova", "Kunskaya", "Kuptsova", "Kusakina", "Kuskova", "Kutepova", "Kuzmina", "Kuznetsova", "Landik", "Lavrova", "Lazareva", "Lebedeva", "Lekshina", "Leonova", "Levanova", "Levieva", "Levina", "Lezhnina", "Likhina", "Linskaya", "Lipovskaya", "Lisovskaia", "Lopyreva", "Lubkova", "Lukanina", "Luss", "Magomedova", "Makarenko", "Makarova", "Makeyeva", "Makhalina", "Maksimova", "Malinskaja", "Malova", "Maltseva", "Malysheva", "Manaseina", "Maretskaya", "Markova", "Martinovska", "Maslova", "Matveeva", "Matviyenko", "Maximova", "Mazura", "Medvedeva", "Melnikova", "Metkina", "Mikhaylova", "Mironova", "Mityushina", "Mizulina", "Morozova", "Moskalkova", "Mukhina", "Myasnikova", "Nabokina", "Nadezhda", "Narusova", "Naumova", "Nazarova", "Nekrasova", "Nescher", "Neyolova", "Nijinska", "Nikiforova", "Nikitina", "Nikolaeva", "Nosova", "Novikova", "Novoselova", "Olerinskaya", "Onolbayeva", "Orlova", "Osintseva", "Osipenko", "Osipova", "Ouliankina", "Oznobkina", "Pamfilova", "Panaeva", "Panina", "Panova", "Panteleeva", "Pantyukhina", "Pavlenko", "Pavlova", "Penkina", "Perepyolkina", "Pereverzeva", "Perova", "Petrenko", "Petrova", "Philippova", "Piletskaya", "Pilnitskaya", "Pivovarova", "Pletneva", "Pletnyova", "Podkaminskaya", "Polevshchikova", "Polina", "Polishchuk", "Polozkova", "Polunina", "Polyakova", "Ponaroshku", "Ponarovskaya", "Ponizova", "Popova", "Poverennova", "Pozdeeva", "Pozharskaya", "Poznyak", "Prohorova", "Proklova", "Prugova", "Putina", "Radchenko", "Razumovskaya", "Redina", "Romanova", "Roslyakova", "Rozhkova", "Rudenko", "Rudova", "Rumyanova", "Ryzhkina", "Samburskaya", "Samoilova", "Samsova", "Sarasova", "Savchenko", "Schachova", "Scherbakova", "Schirman", "Scripchenko", "Selezneva", "Seleznyova", "Semenova", "Semenovich", "Semyonova", "Senchenko", "Senchina", "Sergeeva", "Sergeevich", "Sergeevna", "Sergeyeva", "Sergina", "Serova", "Serpova", "Shabanova", "Shagalova", "Shakinskaya", "Shalagina", "Shalayeva", "Sharapova", "Sharipova", "Shayk", "Shchekina", "Shekhovtsova", "Shestova", "Shevchenko", "Shirshina", "Shiskova", "Shmeleva", "Shoygu", "Shukina", "Shulgina", "Sidorkina", "Sidorova", "Silina", "Simonovich", "Siriskina", "Sizova", "Skobtseva", "Skobtsova", "Slabunova", "Smirnova", "Snigir", "Sokolova", "Sokova", "Sorokina", "Sosina", "Sosnova", "Sotnikova", "Stalina", "Stefanenko", "Stepanova", "Strokous", "Struchkova", "Studilina", "Sudakevich", "Sukhinova", "Suslova", "Sutulova", "Svetikova", "Takshina", "Talyzina", "Tarakanova", "Tarasova", "Tarkovskaya", "Temnikova", "Tereshkina", "Tikhonova", "Timofeeva", "Timofeyeva", "Titova", "Tkachenko", "Tkacheva", "Trefilova", "Trofimova", "Trykina", "Tsesarskaya", "Tsyganenko", "Tsygankova", "Tutayeva", "Tyrkova", "Ufimtseva", "Ulanova", "Urajevskaya", "Usova", "Vafina", "Vaganova", "Valeeva", "Varlamova", "Vasileva", "Vasilyeva", "Velikanova", "Vernadskaya", "Vinogradova", "Vishneva", "Vishnevskaya", "Vladimirovich", "Vlasova", "Vodianova", "Vodonaeva", "Volkova", "Volochkova", "Volodina", "Volskaya", "Vorobyeva", "Voronina", "Vyalitsyna", "Vyroubova", "Yakovleva", "Yaroshevskaya", "Yudina", "Yurchenko", "Yurlova", "Zabolotnikova", "Zagorskaya", "Zagoruychenko", "Zakharova", "Zaryanova", "Zaytseva", "Zelyaeva", "Zherebtsova", "Zhiznyeva", "Zhukova", "Ziganshina", "Zubova", "Zudina", "Zuyeva", "Zvarych"]>> <<set setup.russianMaleSurnames = {}>> -/*Actually russian and ukrainian names and surnames can be safely merged in one array, and used for both nations. Through very high cultural interchange, they are very common on both territories, many of them can't be specifed as russian or ukrainian now.*/ +/*Actually russian and ukrainian names and surnames can be safely merged in one array, and used for both nations. Through very high cultural interchange, they are very common on both territories, many of them can't be specified as russian or ukrainian now.*/ <<set setup.rwandanSlaveNames = ["Agathe", "Agnes", "Agnès", "Akaliza", "Alice", "Alphonsine", "Alvera", "Anne-Marie", "Anne", "Apollinarie", "Beatha", "Béatrice", "Christine", "Clare", "Claudette", "Daphrose", "Diane", "Donnatille", "Épiphanie", "Espérance", "Esther", "Fanfan", "Francine", "Gérardine", "Germaine", "Happy", "Honorine", "Immaculée", "Inmaculle", "Jacqueline", "Jeanne", "Jeannette", "Johanna", "Joy", "Judith", "Julienne", "Laurence", "Louise", "Marcianne", "Maria", "Marie-Solange", "Marie", "Monique", "Nadja", "Odette", "Pamela", "Pauline", "Rose", "Rosemary", "Salome", "Scholastique", "Solange", "Sonia", "Stella", "Thérèse", "Valentine", "Victoire", "Yolande"]>> <<set setup.rwandanMaleNames = ["Anastase", "Bernard", "Célestin", "Damien", "Dismas", "Dominique", "Édouard", "Faustin", "Frank", "Grégoire", "Jean", "Juvénal", "Pasteur", "Paul", "Philippe", "Pierre", "Pierre-Célestin", "Pierre-Damien", "Sylvestre", "Théodore"]>> diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw index ecfe5ac5948144d0a078dd8412a3757b8fe3ef9d..72e4b0259db8519d3d6f24f45114382612c859b8 100644 --- a/src/init/storyInit.tw +++ b/src/init/storyInit.tw @@ -184,7 +184,6 @@ You should have received a copy of the GNU General Public License along with thi <<set $saveImported = 0>> <</if>> - <<if $saveImported == 0>> /* new game (not NG+) */ <<initPC>> @@ -329,7 +328,7 @@ You should have received a copy of the GNU General Public License along with thi <<set $minimumSlaveAge = 18>> <<set $fertilityAge = 13>> <<silently>> - FertilityAge($fertilityAge) + FertilityAge($fertilityAge) <</silently>> <<set $potencyAge = 13>> <<set $AgePenalty = 1>> @@ -439,7 +438,7 @@ You should have received a copy of the GNU General Public License along with thi <<set $dairyRestraintsUpgrade = 0>> <<set $dairyRestraintsSetting = 0>> <<silently>> -DairyRestraintsSetting($dairyRestraintsSetting) + DairyRestraintsSetting($dairyRestraintsSetting) <</silently>> <<set $dairySlimMaintainUpgrade = 0>> <<set $dairySlimMaintain = 0>> @@ -549,17 +548,17 @@ DairyRestraintsSetting($dairyRestraintsSetting) <<set $masterSuiteName = "the Master Suite">> <<set $masterSuiteNameCaps = "The Master Suite">> -<<set $nursery = 0>> /*counts the number of children the nursery can support*/ -<<set $nurseryNannies = 0>> /*counts the number of nannies the nursery can support*/ -<<set $nurseryBabies = 0>> /*counts the number of children currently in the nursery*/ -<<set $nurserySlaves = 0>> /*counts the number of nannies currently assigned to the nursery*/ +<<set $nursery = 0>> /*counts the number of children the nursery can support*/ +<<set $nurseryNannies = 0>> /*counts the number of nannies the nursery can support*/ +<<set $nurseryBabies = 0>> /*counts the number of children currently in the nursery*/ +<<set $nurserySlaves = 0>> /*counts the number of nannies currently assigned to the nursery*/ <<set $nurseryDecoration = "standard">> <<set $MatronInfluence = 0>> /*check for whether the children are influenced by the Matron*/ -<<set $nannyInfluence = 0>> /*check for whether the children are influenced by the nannies*/ +<<set $nannyInfluence = 0>> /*check for whether the children are influenced by the nannies*/ <<set $nurseryWeight = 0>> <<set $nurseryMuscles = 0>> <<set $nurseryHormones = 0>> -<<set $nurseryOrgans = 0>> /*not currently in use*/ +<<set $nurseryOrgans = 0>> /*not currently in use*/ <<set $nurseryImprintSetting = 0>> <<set $nurseryWeightSetting = 0>> <<set $nurseryMusclesSetting = 0>> @@ -567,7 +566,7 @@ DairyRestraintsSetting($dairyRestraintsSetting) <<set $nurseryName = "the Nursery">> <<set $nurseryNameCaps = "The Nursery">> <<set $reservedChildrenNursery = 0>> -<<set $cribs = []>> /*array of children in the nursery*/ +<<set $cribs = []>> /*array of children in the nursery*/ <<set $childToSlave = -1>> <<set $farmyard = 0>> @@ -827,7 +826,7 @@ DairyRestraintsSetting($dairyRestraintsSetting) <<set $clinicInflateBelly = 0>> <<set $playerBred = 0>> <<set $propOutcome = 0>> -<<set $EliteSires = ["moves", "quick", "crazy", "virgin", "futa", "preggo"]>> +<<set $EliteSires = ["crazy", "futa", "moves", "preggo", "quick", "virgin"]>> <<set $startingPoint = -1>> <<set $PhysicalRetirementAgePolicy = 0>> <<set $raped = -1>> @@ -926,8 +925,8 @@ DairyRestraintsSetting($dairyRestraintsSetting) <<set $marketAssistantLimit = 0>> <<set $marketAssistantAggressiveness = 0>> -<<set $justiceEvents = ["slave deal", "slave training", "majority deal", "indenture deal", "virginity deal", "breeding deal"]>> /* not in setupVars because we remove events from this array as they occur */ -<<set $prisonCircuit = ["low tier criminals", "gangs and smugglers", "white collar", "military prison"]>> +<<set $justiceEvents = ["breeding deal", "indenture deal", "majority deal", "slave deal", "slave training", "virginity deal"]>> /* not in setupVars because we remove events from this array as they occur */ +<<set $prisonCircuit = ["gangs and smugglers", "low tier criminals", "military prison", "white collar"]>> <<set $prisonCircuitIndex = random(0,$prisonCircuit.length-1)>> <<set $fixedNationality = 0>> @@ -1398,8 +1397,8 @@ electrolarynx: 0, erectileImplant: 0 } >> -<<set $merchantFSWares = ["GenderRadicalistResearch", "TransformationFetishistResearch", "AssetExpansionistResearch", "SlimnessEnthusiastResearch", "YouthPreferentialistResearch", "HedonisticDecadenceResearch"]>> -<<set $merchantIllegalWares = ["childhoodFertilityInducedNCS", "UterineRestraintMesh", "RapidCellGrowthFormula", "PGHack", "AnimalOrgans"]>> +<<set $merchantFSWares = ["AssetExpansionistResearch", "GenderRadicalistResearch", "HedonisticDecadenceResearch", "SlimnessEnthusiastResearch", "TransformationFetishistResearch", "YouthPreferentialistResearch"]>> +<<set $merchantIllegalWares = ["AnimalOrgans", "childhoodFertilityInducedNCS", "PGHack", "RapidCellGrowthFormula", "UterineRestraintMesh"]>> <<set $RapidCellGrowthFormula = 0>> <<set $UterineRestraintMesh = 0>> <<set $PGHack = 0>> diff --git a/src/js/DefaultRules.tw b/src/js/DefaultRules.tw index aedb1b345922bb0b695929eee75ef1e1def03bfe..bb97b4e16f4b02805a0a9a5317bcc56eaf17d9ff 100644 --- a/src/js/DefaultRules.tw +++ b/src/js/DefaultRules.tw @@ -1007,7 +1007,7 @@ window.DefaultRules = (function() { } else if ((rule.growth_boobs == "no default setting" && rule.growth_butt == "no default setting" && rule.growth_lips == "no default setting" && rule.growth_dick == "no default setting" && rule.growth_dick == "no default setting" && rule.growth_balls == "no default setting")) { return; } - if (!rule.hyper_drugs) { // More resource intensive version with prioritizing. + if (slave.assignmentVisible) { // More resource intensive version with prioritizing. Possible to give this a toggle rather than basing it on visibility. let _priorities = []; if (rule.growth_boobs != "no default setting") { let _priority; @@ -1104,10 +1104,15 @@ window.DefaultRules = (function() { return; } } else { + let _hyper; + if (V.arcologies[0].FSAssetExpansionistResearch == 1) + _hyper = "hyper "; + else + _hyper = ""; if (rule.growth_boobs != "no default setting") { if (slave.boobs < rule.growth_boobs) { - if (slave.drugs != "hyper breast injections") { - slave.drugs = "hyper breast injections"; + if (slave.drugs != _hyper + "breast injections") { + slave.drugs = _hyper + "breast injections"; r += `<br>${slave.slaveName} has been put on ${slave.drugs}.`; } return; @@ -1115,8 +1120,8 @@ window.DefaultRules = (function() { } if (rule.growth_butt != "no default setting") { if (slave.butt < rule.growth_butt) { - if (slave.drugs != "hyper butt injections") { - slave.drugs = "hyper butt injections"; + if (slave.drugs != _hyper + "butt injections") { + slave.drugs = _hyper + "butt injections"; r += `<br>${slave.slaveName} has been put on ${slave.drugs}.`; } return; @@ -1133,8 +1138,8 @@ window.DefaultRules = (function() { } if (rule.growth_dick != "no default setting" && slave.dick) { if (slave.dick < rule.growth_dick) { - if (slave.drugs != "hyper penis enhancement") { - slave.drugs = "hyper penis enhancement"; + if (slave.drugs != _hyper + "penis enhancement") { + slave.drugs = _hyper + "penis enhancement"; r += `<br>${slave.slaveName} has been put on ${slave.drugs}.`; } return; @@ -1142,8 +1147,8 @@ window.DefaultRules = (function() { } if (rule.growth_balls != "no default setting" && slave.balls) { if (slave.balls < rule.growth_balls) { - if (slave.drugs != "hyper testicle enhancement") { - slave.drugs = "hyper testicle enhancement"; + if (slave.drugs != _hyper + "testicle enhancement") { + slave.drugs = _hyper + "testicle enhancement"; r += `<br>${slave.slaveName} has been put on ${slave.drugs}.`; } return; diff --git a/src/js/datatypeCleanupJS.tw b/src/js/datatypeCleanupJS.tw index 8d3dd6ceabfd871c5fa15b96e2d4d1a21dadb293..6973e3c2425c7443493769b6e03f8368dc79cb5a 100644 --- a/src/js/datatypeCleanupJS.tw +++ b/src/js/datatypeCleanupJS.tw @@ -195,6 +195,7 @@ window.slavePregnancyDatatypeCleanup = function slavePregnancyDatatypeCleanup(sl slave.prematureBirth = Math.clamp(+slave.prematureBirth, 0, 1) || 0; slave.ovaries = Math.clamp(+slave.ovaries, 0, 1) || 0; slave.vasectomy = Math.clamp(+slave.vasectomy, 0, 1) || 0; + slave.tubectomy = Math.clamp(+slave.tubectomy, 0, 1) || 0; slave.mpreg = Math.clamp(+slave.mpreg, 0, 1) || 0; slave.reservedChildren = WombReserveCount(slave, "incubator") || 0; slave.reservedChildrenNursery = WombReserveCount(slave, "nursery") || 0; @@ -764,6 +765,7 @@ window.childPregnancyDatatypeCleanup = function childPregnancyDatatypeCleanup(ch child.prematureBirth = Math.clamp(+child.prematureBirth, 0, 1) || 0; child.ovaries = Math.clamp(+child.ovaries, 0, 1) || 0; child.vasectomy = Math.clamp(+child.vasectomy, 0, 1) || 0; + child.tubectomy = Math.clamp(+child.tubectomy, 0, 1) || 0; child.mpreg = Math.clamp(+child.mpreg, 0, 1) || 0; child.reservedChildren = WombReserveCount(child, "incubator") || 0; child.reservedChildrenNursery = WombReserveCount(child, "nursery") || 0; diff --git a/src/js/storyJS.tw b/src/js/storyJS.tw index f3ca89d08e35106b5a98da485cd24a696936ddb0..461538598fcf9113d213268e004aed802f373801 100644 --- a/src/js/storyJS.tw +++ b/src/js/storyJS.tw @@ -251,7 +251,7 @@ window.canGetPregnant = function(slave) { return false; } else if (!isFertile(slave)) { /* check other fertility factors */ return false; - } else if ((slave.ovaries == 1) && (canDoVaginal(slave))) { + } else if ((slave.ovaries == 1) && (slave.eggType != "sterile") && (slave.tubectomy == 0) && (canDoVaginal(slave))) { return true; } else if ((slave.mpreg == 1) && (canDoAnal(slave))) { /* pregmod */ return true; @@ -264,6 +264,10 @@ window.canGetPregnant = function(slave) { window.canBreed = function(slave1, slave2) { if (!slave1 || !slave2) { return null; + } else if (slave1.eggType == "sterile") { + return false; + } else if (slave2.ballType == "sterile") { + return false; } else if (slave1.eggType == slave2.ballType) { return true; } else { @@ -399,7 +403,7 @@ window.canSee = function(slave) { window.canHear = function(slave) { if (!slave) { return null; - } else if ((slave.hears > -2) || (slave.earwear == "deafening ear plugs")) { + } else if ((slave.hears > -2) || (slave.earwear != "deafening ear plugs")) { return true; } else { return false; @@ -1067,6 +1071,7 @@ window.resetFSCredits = function() { activeFS++; } } + console.log(activeFS); if (V.arcologies[0].FSNull > 0) { /* possibly recalculate for multiculturalism */ activeFS--; if (V.FSCreditCount === 4) { @@ -1079,5 +1084,6 @@ window.resetFSCredits = function() { activeFS += V.arcologies[0].FSNull/20; } } + console.log(activeFS); V.FSCredits = Math.max(Math.trunc(V.FSGotRepCredits - activeFS), 0); }; diff --git a/src/js/wombJS.tw b/src/js/wombJS.tw index ca2b30f42eaf2a8fcaf300a6b228afa0802b8909..bb437a159e7618eccfed1567ff1ee6b97231341d 100644 --- a/src/js/wombJS.tw +++ b/src/js/wombJS.tw @@ -1,7 +1,11 @@ :: wombJS [script] /* +<<<<<<< HEAD This is womb processor/simulator script. It's take care about calculation of belly sizes based on individual fetus sizes, +======= +This is womb processor/simulator script. It's take care about calculation of belly sizes based on individual foetus sizes, +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 with full support of broodmothers implant random turning on and off possibility. Also this can be expanded to store more parents data in each individual fetus in future. Design limitations: - Mother can't gestate children with different speeds at same time. All speed changes apply to all fetuses. diff --git a/src/npc/agent/agentCompany.tw b/src/npc/agent/agentCompany.tw index 0bac9e041d39c0a42aaf7d6ee20b1859a92752b8..e91e2c0452b7ff2af608b8bb8266b776905a0304 100644 --- a/src/npc/agent/agentCompany.tw +++ b/src/npc/agent/agentCompany.tw @@ -31,10 +31,10 @@ Working in $activeArcology.name's penthouse office, $subSlave.slaveName gets a v _His2 question is answered when you bring $activeSlave.slaveName in close, putting $him in $subSlave.slaveName's view. $subSlave.slaveName's $subSlave.eyeColor eyes fly open with pleased surprise, but before _he2 can speak, $activeSlave.slaveName goes first. <<if !canTalk($activeSlave)>> - Unable to speak $himself, $he simply makes a heart shape with $his hands in view of the video call, and blows $his <<if $activeSlave.relationship == 4>>lover<<else>>wife<</if>> a kiss. + Unable to speak $himself, $he simply makes a heart shape with $his hands in view of the video call, and blows $his <<if $activeSlave.relationship == 4>>lover<<else>>wife<</if>> a kiss. <<else>> - <<run Enunciate($activeSlave)>> - "Hi <<if $activeSlave.relationship == 4>>lover<<else>><<s>>weetheart<</if>>," $he <<say>>s in a syrupy tone. "Mi<<ss>> me?" + <<run Enunciate($activeSlave)>> + "Hi <<if $activeSlave.relationship == 4>>lover<<else>><<s>>weetheart<</if>>," $he <<say>>s in a syrupy tone. "Mi<<ss>> me?" <</if>> <br><br> diff --git a/src/npc/databases/dfSlavesDatabase.tw b/src/npc/databases/dfSlavesDatabase.tw index ac0cb74b62b6ad697fbbaf23dbd5cd4820a7697b..509a45f1a6504d75b9116b449e655e0294f3f6ff 100644 --- a/src/npc/databases/dfSlavesDatabase.tw +++ b/src/npc/databases/dfSlavesDatabase.tw @@ -43,7 +43,7 @@ <<if $seeExtreme == 1>> <<set _HS = {}>> -<<set _HS.slaveName = "Plum", _HS.birthName = "Plum", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health = 20, _HS.devotion = 75, _HS.muscles = 30, _HS.weight = 20, _HS.eyeColor = "brown", _HS.hColor = "brown", _HS.skin = "pale", _HS.hLength = 20, _HS.hStyle = "short and wavy", _HS.pubicHStyle = "waxed", _HS.boobs = 400, _HS.nipplesPiercing = 1, _HS.butt = 2, _HS.lips = 35, _HS.vagina = 4, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 2, _HS.ovaries = 1, _HS.vaginalSkill = 15, _HS.oralSkill = 15, _HS.analSkill = 15, _HS.vaginalAccessory = "large dildo", _HS.buttplug = "large plug", _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.customTat = "Cored plums are tattooed on her buttocks and on her face.", _HS.customDesc = "She has massive C-clamp piercings in her back that allow her to act as furniture, and a truly enormous vagina.", _HS.clitPiercing = 2, _HS.corsetPiercing = 1, _HS.sexualFlaw = "self hating", _HS.clothes = "no clothing", _HS.vaginalAccessory = "long, huge dildo">> +<<set _HS.slaveName = "Plum", _HS.birthName = "Plum", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health = 20, _HS.devotion = 75, _HS.muscles = 30, _HS.weight = 20, _HS.eyeColor = "brown", _HS.hColor = "brown", _HS.skin = "pale", _HS.hLength = 20, _HS.hStyle = "short and wavy", _HS.pubicHStyle = "waxed", _HS.boobs = 400, _HS.nipplesPiercing = 1, _HS.butt = 2, _HS.lips = 35, _HS.vagina = 4, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 2, _HS.ovaries = 1, _HS.vaginalSkill = 15, _HS.oralSkill = 15, _HS.analSkill = 15, _HS.vaginalAccessory = "large dildo", _HS.buttplug = "large plug", _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.customTat = "Cored plums are tattooed on her buttocks and on her face.", _HS.customDesc = "She has massive C-clamp piercings in her back that allow her to act as furniture, and a truly enormous vagina.", _HS.clitPiercing = 2, _HS.corsetPiercing = 1, _HS.sexualFlaw = "self hating", _HS.clothes = "no clothing", _HS.vaginalAccessory = "long, huge dildo">> /*vibe nips, can act as furniture*/ <<set $heroSlaves.push(_HS)>> <</if>> diff --git a/src/npc/rgASDump.tw b/src/npc/rgASDump.tw index db756d9a91da6ed9e98b2dd04fe60517e92e5847..6d06a2f25fca2fd488aa77fb0c90ff36c9580be9 100644 --- a/src/npc/rgASDump.tw +++ b/src/npc/rgASDump.tw @@ -23,17 +23,17 @@ <<else>> <<if ($activeSlave.relation == 0)>> -<<if random(1,100) <= 5>> - <<set $activeSlave.recruiter = "twin">> -<<elseif ($activeSlave.actualAge > 32) && (random(1,100) <= 41)>> - <<set $activeSlave.recruiter = "mother">> -<<elseif ($activeSlave.actualAge < 24) && (random(1,100) <= 40)>> - <<set $activeSlave.recruiter = "daughter">> -<<elseif ($activeSlave.actualAge < 43) && (random(1,100) <= 20)>> - <<set $activeSlave.recruiter = "older sister">> -<<elseif ($activeSlave.actualAge < 25) && ($activeSlave.actualAge > 18) && (random(1,100) <= 20)>> - <<set $activeSlave.recruiter = "young sister">> -<</if>> + <<if random(1,100) <= 5>> + <<set $activeSlave.recruiter = "twin">> + <<elseif ($activeSlave.actualAge > 32) && (random(1,100) <= 41)>> + <<set $activeSlave.recruiter = "mother">> + <<elseif ($activeSlave.actualAge < 24) && (random(1,100) <= 40)>> + <<set $activeSlave.recruiter = "daughter">> + <<elseif ($activeSlave.actualAge < 43) && (random(1,100) <= 20)>> + <<set $activeSlave.recruiter = "older sister">> + <<elseif ($activeSlave.actualAge < 25) && ($activeSlave.actualAge > 18) && (random(1,100) <= 20)>> + <<set $activeSlave.recruiter = "young sister">> + <</if>> <</if>> <</if>> diff --git a/src/pregmod/beastFuck.tw b/src/pregmod/beastFuck.tw index a160e0ad97a31480433650b85c8f7d4b57cb55ce..2a074a1f5d55f8e6e3647ae2fdff5e1c15bb8b39 100644 --- a/src/pregmod/beastFuck.tw +++ b/src/pregmod/beastFuck.tw @@ -334,7 +334,10 @@ before calling in the _animal.species. The _animal.species slowly saunters up to <<if canWalk($activeSlave)>> $He uses <<if $activeSlave.vagina > 0>>a quick douche to clean $his <<if $activeSlave.vagina < 2>>tight<<elseif $activeSlave.vagina > 3>>loose<</if>> pussy<<else>>an enema to clean $his <<if $activeSlave.anus < 2>>tight<<elseif $activeSlave.anus < 3>>used<<else>>gaping<</if>> butthole<</if>>, +<<<<<<< HEAD +======= +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <<switch $activeSlave.assignment>> <<case "work in the brothel">> just like $he does between each customer. diff --git a/src/pregmod/eliteSlave.tw b/src/pregmod/eliteSlave.tw index e8ced09b7dfbd89cea36a2e61dedd3912b64455e..5fa3280b45a7705391eee2d042528a86719eea80 100644 --- a/src/pregmod/eliteSlave.tw +++ b/src/pregmod/eliteSlave.tw @@ -1,4 +1,4 @@ -:: Elite Slave[nobr] +:: Elite Slave [nobr] <<set $nextButton = "Back", $nextLink = "Buy Slaves", $returnTo = "Buy Slaves">> <<set $showEncyclopedia = 1, $encyclopedia = "Slave Schools">> @@ -22,7 +22,7 @@ You check to see if any potential breeding slaves are on auction. <<if $eliteAuc <<if $arcologies[0].FSSupremacist != "unset">> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationist != "unset">> - <<set _races = ["white", "white", "white", "white", "white", "white", "white", "white", "white", "asian", "asian", "asian", "asian", "asian", "asian", "latina", "latina", "latina", "black", "black", "middle eastern", "middle eastern", "indo-aryan", "indo-aryan", "southern european", "southern european", "semitic", "semitic", "malay", "malay", "amerindian", "pacific islander", "mixed race"]>> + <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> <<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> @@ -137,7 +137,7 @@ You check to see if any potential breeding slaves are on auction. <<if $eliteAuc <<set $activeSlave.nipples = "puffy">> <</if>> <<set $activeSlave.face = 100>> -<<set $activeSlave.faceShape = either("cute", "cute", "sensual", "sensual", "sensual", "normal", "normal", "exotic", "exotic")>> +<<set $activeSlave.faceShape = either("cute", "cute", "exotic", "exotic", "normal", "normal", "sensual", "sensual", "sensual")>> <<set $activeSlave.lips = random(45,75)>> <<if $arcologies[0].FSTransformationFetishist > 20>> <<set $activeSlave.lips += 25>> @@ -150,7 +150,7 @@ You check to see if any potential breeding slaves are on auction. <<if $eliteAuc <<set $activeSlave.vaginaLube++>> <</if>> <<set $activeSlave.preg = 0>> -<<set $activeSlave.birthsTotal = either(0,0,0,0,0,0,0,0,1,1,1,1,2,2,3,4)>> +<<set $activeSlave.birthsTotal = either(0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 3, 4)>> <<if $arcologies[0].FSPastoralist > 20 || $activeSlave.birthsTotal > 0>> <<set $activeSlave.lactation = 1>> <<if $arcologies[0].FSPastoralist > 20>> @@ -195,7 +195,7 @@ You check to see if any potential breeding slaves are on auction. <<if $eliteAuc <<set $activeSlave.attrKnown = 1>> <<set $activeSlave.fetishKnown = 1>> <<set $activeSlave.behavioralQuirk = "confident">> -<<set $activeSlave.sexualQuirk = either("gagfuck queen", "strugglefuck queen", "tease", "romantic", "romantic", "perverted", "caring", "caring", "unflinching")>> +<<set $activeSlave.sexualQuirk = either("caring", "caring", "gagfuck queen", "perverted", "romantic", "romantic", "strugglefuck queen", "tease", "unflinching")>> <<set $activeSlave.pubertyXX = 1>> <<set $activeSlave.breedingMark = 1>> diff --git a/src/pregmod/fDick.tw b/src/pregmod/fDick.tw index 1d4da7fcb08f9b2d6c578c008ec99f1f37a17ea4..c13be3b5d27a6af1cbab4338e613a201ae1bc6fc 100644 --- a/src/pregmod/fDick.tw +++ b/src/pregmod/fDick.tw @@ -55,7 +55,11 @@ <<else>> hypertrophied <</if>> +<<<<<<< HEAD dick, savoring every centimeter, +======= + dick, savoring every centimeter, +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <<if $activeSlave.dick <= 6>> until you find yourself hilted and sitting on $his pelvis. <<else>> diff --git a/src/pregmod/fSlaveSelfImpreg.tw b/src/pregmod/fSlaveSelfImpreg.tw index c1b4e760ed5704b1629c95954a9a7cabab1c7093..0350658d3129ba429d25e4c9602ec5acefde9bbf 100644 --- a/src/pregmod/fSlaveSelfImpreg.tw +++ b/src/pregmod/fSlaveSelfImpreg.tw @@ -11,7 +11,11 @@ <<else>> <<if ($activeSlave.devotion <= 20)>> <<if ($activeSlave.devotion < -20)>> +<<<<<<< HEAD $activeSlave.slaveName despises you, and tends to resent everything you do on principle, +======= + $activeSlave.slaveName despises you, and tends to resent everything you do on principle, +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <<elseif ($activeSlave.devotion <= 20)>> $activeSlave.slaveName dislikes you, <</if>> diff --git a/src/pregmod/manageEconomy.tw b/src/pregmod/manageEconomy.tw index 6c27560ea776b857b43bc7744853535f2f5f3c4a..e096adbb6d7d181a76d997b1b21775a3bf7567d8 100644 --- a/src/pregmod/manageEconomy.tw +++ b/src/pregmod/manageEconomy.tw @@ -152,6 +152,7 @@ Slave demand is @@.yellow;''strong''@@ <</if>> <<if $deltaDemand > 0>> +<<<<<<< HEAD and @@.green;''improving''@@ <<elseif $deltaDemand < 0>> and @@.red;''decreasing''@@ @@ -159,6 +160,15 @@ Slave demand is <<if $deltaDemand != 0>> <<if $demandTimer - $elapsedDemandTimer < 3>> but it might change soon +======= + and @@.green;''improving''@@ +<<elseif $deltaDemand < 0>> + and @@.red;''decreasing''@@ +<</if>> +<<if $deltaDemand != 0>> + <<if $demandTimer - $elapsedDemandTimer < 3>> + but it might change soon +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <</if>> <</if>> <<if ($cheatMode) && ($cheatModeM)>> @@ -198,7 +208,11 @@ Slave supply is <</if>> <<if $deltaSupply != 0>> <<if $supplyTimer - $elapsedDemandTimer < 3>> +<<<<<<< HEAD but it might change soon +======= + but it might change soon +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <</if>> <</if>> <<if ($cheatMode) && ($cheatModeM)>> diff --git a/src/pregmod/rePregInventor.tw b/src/pregmod/rePregInventor.tw index a74cc3c0fea3c51ece975eac65458895d358062c..a593b84a4a738086c0ba6c498455faebcd034c2b 100644 --- a/src/pregmod/rePregInventor.tw +++ b/src/pregmod/rePregInventor.tw @@ -325,7 +325,11 @@ <br><br><span id="result2"> <<link "Insult $him and halt all further training.">> <<replace "#result2">> +<<<<<<< HEAD As much as $his antics amused you, it's clear that $activeSlave.slaveName wasted your money. You calmly explain to $him that the next time $he has a "brilliant" idea, $he should keep it to herself, then arrange to have $his "discoveries" disposed of. +======= + As much as $his antics amused you, it's clear that $activeSlave.slaveName wasted your money. You calmly explain to $him that the next time $he has a "brilliant" idea, $he should keep it to $himself, then arrange to have $his "discoveries" disposed of. +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <<if $activeSlave.trust < -95>> The look of pride and accomplishment on $his face transforms into a look of crushing disappointment. You slap $him on the ass and then have your menials escort $him back to $his duties. The next time you see $him, the spark of life and vitality that drove $him has been fully extinguished. @@.red;$activeSlave.slaveName has broken.@@ Anything $he might have learned from this experience is lost in $his empty mind. $He will never question $his place, or anything else, again. <<set $activeSlave.fetish = "mindbroken">> @@ -515,7 +519,11 @@ <br><br><span id="result2"> <<link "Insult $him and halt all further training.">> <<replace "#result2">> +<<<<<<< HEAD As much as $his antics amused you, it's clear that $activeSlave.slaveName wasted your money. You calmly explain to $him that the next time $he has a "brilliant" idea, $he should keep it to herself, then arrange to have $his "discoveries" disposed of. +======= + As much as $his antics amused you, it's clear that $activeSlave.slaveName wasted your money. You calmly explain to $him that the next time $he has a "brilliant" idea, $he should keep it to $himself, then arrange to have $his "discoveries" disposed of. +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <<if $activeSlave.trust < -95>> The look of pride and accomplishment on $his face transforms into a look of crushing disappointment. You slap $him on the ass and then have your menials escort $him back to $his duties. The next time you see $him, the spark of life and vitality that drove $him has been fully extinguished. @@.red;$activeSlave.slaveName has broken.@@ Anything $he might have learned from this experience is lost in $his empty mind. $He will never question $his place, or anything else, again. <<set $activeSlave.fetish = "mindbroken">> @@ -734,7 +742,11 @@ <br><br><span id="result2"> <<link "Insult $him and halt all further training.">> <<replace "#result2">> +<<<<<<< HEAD As much as $his antics amused you, it's clear that $activeSlave.slaveName wasted your money. You calmly explain to $him that the next time $he has a "brilliant" idea, $he should keep it to herself, then arrange to have $his "discoveries" disposed of. +======= + As much as $his antics amused you, it's clear that $activeSlave.slaveName wasted your money. You calmly explain to $him that the next time $he has a "brilliant" idea, $he should keep it to $himself, then arrange to have $his "discoveries" disposed of. +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <<if $activeSlave.trust < -95>> The look of pride and accomplishment on $his face transforms into a look of crushing disappointment. You slap $him on the ass and then have your menials escort $him back to $his duties. The next time you see $him, the spark of life and vitality that drove $him has been fully extinguished. @@.red;$activeSlave.slaveName has broken.@@ Anything $he might have learned from this experience is lost in $his empty mind. $He will never question $his place, or anything else, again. <<set $activeSlave.fetish = "mindbroken">> @@ -827,7 +839,7 @@ <br><<link "Fund Additional Ads [Requires 10k funds]">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You fund an aggressive ad campaign featuring your slave in provocative positions and selling a "life changing interview" on "Husbandry With Millie." By the day of her interview, user boards all through the global web are discussing your slave and what she might be about to reveal. Even social demographics not typically inclined toward the idea of breeding slaves seem to be intrigued, and you're confident that many users will be watching as your slave sells your vision for the world's future. + You fund an aggressive ad campaign featuring your slave in provocative positions and selling a "life changing interview" on "Husbandry With Millie." By the day of $his interview, user boards all through the global web are discussing your slave and what she might be about to reveal. Even social demographics not typically inclined toward the idea of breeding slaves seem to be intrigued, and you're confident that many users will be watching as your slave sells your vision for the world's future. <br><br> That done, you settle in to watch the interview. <br><br> @@ -856,15 +868,23 @@ <br><<link "Trust In Your Slave">> <<EventNameDelink $activeSlave>> <<replace "#result">> +<<<<<<< HEAD It's a gamble, but you decide to trust in the charisma of your slave and the fame she has already accrued to sell your vision for the world's future during the interview. +======= + It's a gamble, but you decide to trust in the charisma of your slave and the fame $he has already accrued to sell your vision for the world's future during the interview. +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <<if ($activeSlave.pornPrestige > 2)>> - She's enormously popular, so your gambit has a good chance of success. + $He's enormously popular, so your gambit has a good chance of success. <<elseif ($activeSlave.pornPrestige > 1)>> - She's quite popular, so your gambit has a reasonable chance of success. + $He's quite popular, so your gambit has a reasonable chance of success. <<else>> - She's only really well known in local pornography, but you still decide to bet on her ability to sway the masses. + $He's only really well known in local pornography, but you still decide to bet on $his ability to sway the masses. <</if>> +<<<<<<< HEAD Regardless, there's only so much your direct involvement could do to help her as she sells your vision for the world's future, and the natural cleverness she's already demonstrated might well allow her to achieve results on her own that would be impossible otherwise. +======= + Regardless, there's only so much your direct involvement could do to help $him as $he sells your vision for the world's future, and the natural cleverness $he's already demonstrated might well allow $him to achieve results on $his own that would be impossible otherwise. +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <br><br> When the day arrives, you settle in to watch the interview. <br><br> @@ -907,7 +927,7 @@ <<set _pregmag = "a cut out magazine cover of your renowned hyperbroodmother inventor, " + $activeSlave.slaveName + ", and her myriad toys">> <<set $trinkets.push(_pregmag)>> <<elseif $activeSlave.pornPrestige >= 3 && random(1,100) > 15>> - You turn your FCTV screen off satisifed that your slave has done a satisfactory job. Over the course of the next several weeks, it becomes clear that $activeSlave.slaveName's appearance on "Husbandry With Milly" has had a @@.green;significant impact@@ on public opinion, though only at a local level. + You turn your FCTV screen off satisfied that your slave has done a satisfactory job. Over the course of the next several weeks, it becomes clear that $activeSlave.slaveName's appearance on "Husbandry With Milly" has had a @@.green;significant impact@@ on public opinion, though only at a local level. <<if $activeSlave.prestige < 1>> <<set $activeSlave.prestige = 1>> <<set $activeSlave.prestigeDesc = "She is a locally respected inventor of hyperpregnant sex accessories and toys.">> @@ -921,7 +941,7 @@ <</if>> <</for>> <<elseif $activeSlave.pornPrestige >= 3>> - You turn your FCTV screen off disappointed that your slave has done a mediocre job. Over the course of the next several weeks, it becomes clear that @@.green;what little impact@@ she has had is on a local scale only. + You turn your FCTV screen off disappointed that your slave has done a mediocre job. Over the course of the next several weeks, it becomes clear that @@.green;what little impact@@ $he has had is on a local scale only. <<set $rep += 100>> <<for _i = 1; _i < _l; _i++>> <<if $arcologies[_i].FSRepopulationFocus != "unset">> @@ -965,7 +985,7 @@ <<set _pregmag = "a cut out magazine cover of your renowned hyperbroodmother inventor, " + $activeSlave.slaveName + ", and her myriad toys">> <<set $trinkets.push(_pregmag)>> <<elseif $activeSlave.pornPrestige >= 2 && random(1,100) > 30>> - You turn your FCTV screen off satisifed that your slave has done a satisfactory job. Over the course of the next several weeks, it becomes clear that $activeSlave.slaveName's appearance on "Husbandry With Milly" has had a @@.green;significant impact@@ on public opinion, though only at a local level. + You turn your FCTV screen off satisfied that your slave has done a satisfactory job. Over the course of the next several weeks, it becomes clear that $activeSlave.slaveName's appearance on "Husbandry With Milly" has had a @@.green;significant impact@@ on public opinion, though only at a local level. <<if $activeSlave.prestige < 1>> <<set $activeSlave.prestige = 1>> <<set $activeSlave.prestigeDesc = "She is a locally respected inventor of hyperpregnant sex accessories and toys.">> @@ -1023,7 +1043,7 @@ <<set _pregmag = "a cut out magazine cover of your renowned hyperbroodmother inventor, " + $activeSlave.slaveName + ", and her myriad toys">> <<set $trinkets.push(_pregmag)>> <<elseif random(1,100) > 50>> - You turn your FCTV screen off satisifed that your slave has done a satisfactory job. Over the course of the next several weeks, it becomes clear that $activeSlave.slaveName's appearance on "Husbandry With Milly" has had a @@.green;significant impact@@ on public opinion, though only at a local level. + You turn your FCTV screen off satisfied that your slave has done a satisfactory job. Over the course of the next several weeks, it becomes clear that $activeSlave.slaveName's appearance on "Husbandry With Milly" has had a @@.green;significant impact@@ on public opinion, though only at a local level. <<if $activeSlave.prestige < 1>> <<set $activeSlave.prestige = 1>> <<set $activeSlave.prestigeDesc = "She is a locally respected inventor of hyperpregnant sex accessories and toys.">> diff --git a/src/pregmod/seFCTVshows.tw b/src/pregmod/seFCTVshows.tw index ffb3ff1ad24bb229af9fea118adccf25fecfa0cf..c5b1f375b2fba040ce42df07937bbaa75e72ff28 100644 --- a/src/pregmod/seFCTVshows.tw +++ b/src/pregmod/seFCTVshows.tw @@ -663,7 +663,7 @@ The offered price is <<print cashFormat($slaveCost)>>. <br><br>As he stepped into the bedroom a breathy voice called out him. "Howdy there, stranger. Say, could you help me out with a little something?" She had the same blond hair and blue eyes of her daughter. Her face could be called angelic, but her expression changed her visage into that of a lustful succubus. Truly, she could inspire awe and lust in old-worlders and citizens of the Free Cities alike. However, her figure would prove more divisive. <br><br>Annie had a body that could give ancient fertility idols an inferiority complex. Some would say she was more boob than woman, she would say their description, while true, was woefully inadequate. Without her exosuit, she wouldn't be able to kneel on the bed, let alone stand, and without the suit's smart material supporting her breasts Scott wouldn't be able to see Sadie's blond head poke out between Annie's thighs. <br><br>Scott gestured to Sadie "It looks like you're already in good hands." A teasing grin spread across his face. "What could little old me do for you?" Annie gave him a knowing look and presented her well-lubricated cleavage. "Oh, I'm sure you could find something." Any response from Scott was interrupted by a young voice from the bathroom saying "I found more of the strawberry lube." - <br><br>For a moment, the only sounds in the room were the soft whirr of a milker and the muffled hum of Sadie's vibrator. Annie's breath hitched from Sadie's ministrations and responded, "That's good sweetie, bring it here." The door to the bathroom swung open and Sarah walked into the room. She had lost her thong and was wearing a backpack printed with cartoon farm animals. Flexible tubing snaked out of the pack and attached two cups on her breasts. In her hands, was a bottle of edible lube and a bright pink rounded cylinder with the words Her First Vibrator printed in a saccharine font on the base. + <br><br>For a moment, the only sounds in the room were the soft 'whir' of a milker and the muffled hum of Sadie's vibrator. Annie's breath hitched from Sadie's ministrations and responded, "That's good sweetie, bring it here." The door to the bathroom swung open and Sarah walked into the room. She had lost her thong and was wearing a backpack printed with cartoon farm animals. Flexible tubing snaked out of the pack and attached two cups on her breasts. In her hands, was a bottle of edible lube and a bright pink rounded cylinder with the words Her First Vibrator printed in a saccharine font on the base. <br><br>Sarah looked at both her parents, then tilted her head and frowned. "You and daddy were playing that weird game again, weren't you?" Scott and Annie looked at each other; silently communicating in a way only parents can. Annie looked at her daughter and said, "When you're a bit older you're going to want to play those games too." Sarah looked unconvinced. "Anyway, you got the lube, are both your milker and vibrator charged?" Annie asked. Sarah bobbed her head. "Then why don't you lube up daddy?" Sarah bobbed her head again and knelt at the side of the bed. <br><br>Scott quickly undressed and sat at the edge of the bed. Sarah knelt between her father's legs. She began softly licking her father's cock, her tongue sliding along its length and gently swirling around its head, her mouth making lewd noises. She ran her tongue on the underside of her dad's cock, took him into her mouth and began to give him a slow blowjob. <br><br>Scott felt himself slowly harden to full mast. He resisted the urge to pull her down till her nose touched his crotch and said, "That's good sweetheart, now use the lube." Sarah pulled herself off his cock with a lewd pop and picked up the bottle of lube. She squirted a generous amount of it into one hand, rubbed both hands together, and began to stroke his cock. "You're doing a good job sweetie, did you help mommy too?" he asked. Annie nodded "She did a very good job and was very through." Sarah preened at her parents praise and said, "It wasn't easy. I had to use a whole bottle to do mommy." Scott turned his head to his wife and raised an eyebrow. Annie gave him a lewd grin and her blush slowly spread down her chest, but said nothing. @@ -675,7 +675,11 @@ The offered price is <<print cashFormat($slaveCost)>>. <br><br>Scott snorted in amusement and was about to continue when he felt a tongue licking him. He looked down to see Sarah. She looked at him with pleading eyes "Daddy, I need it." Scott sighed, but smiled softly at his daughter and said, "Okay, how do you want it." She thought for a second before saying, "I want puss-puss." He nodded, picked her up and laid his daughter atop his wife's vast breasts. <br><br>He teased himself against her cunny and then began to ease himself into her. She gasped at the intrusion and began to tease her own nipples, milk slowly leaking out of them. As he eased into her tight cunny, he could feel his own orgasm building. He paused for a moment and then began to move. It didn't take long for his orgasm to build again. He increased the speed of his thrusts until he came inside his daughter. He continued until she tensed, her breasts spraying milk violently, and fell limp. <br><br>Scott leaned into his wife's breasts to bask in the afterglow. While Annie had coaxed Sarah to turn around, pulled Sarah's cunny to her face and began to slowly eat her daughter out. Sarah just lay bonelessly atop her mother's breasts. +<<<<<<< HEAD <br><br>Scott just enjoyed the sight of mother-daughter bonding for a while before recalling his earlier plans. "I was thinking of taking the family out for ice cream after lunch." Annie made a pleased sound as she continued licking her daughters cunny, Sarah cheered lazily, Sadie's legs wiggled with what could be called excitement. +======= + <br><br>Scott just enjoyed the sight of mother-daughter bonding for a while before recalling his earlier plans. "I was thinking of taking the family out for ice cream after lunch." Annie made a pleased sound as she continued licking her daughter's cunny, Sarah cheered lazily, Sadie's legs wiggled with what could be called excitement. +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <br><br>"I was also thinking of taking Cathy with us." Annie stopped sucking on her daughter's clit to frown at him. He placating gesture and said, "She won't make a big scene with all of us there and besides you enjoy it when she has a mini freak out." She paused to think for a moment then said, "You have cameras and a drone on her right?" He nodded. "I want copies." She gave him a lusty grin before returning to her meal. He turned Sarah. "I wanna bloom berry sundae with bottom boost sprinkles." He nodded, hooked his head to look behind his wife and said, "How about you Sadie?" The hand that poked out from behind his wife waggled uncertainly, but ultimately became a thumbs up. <<elseif $showTwelve == 3>> The random function has brought up another episode of that drama series for you. @@ -725,8 +729,13 @@ The offered price is <<print cashFormat($slaveCost)>>. <br><br>There were posters, coasters, clothing and all manner of little knickknacks, but the true star of the show were the plushies. Rows upon rows of them covered the shelves and tables arranged in little displays, all of them made in the image of cows working at the creamery. One table had the plushies in a mini concert hall, the ones on stage wielding toy instruments that had 'Press me!' stickers on them. Another table had them arranged in what looked to be a garden party. Spread across two tables was a diorama of the creamery with plushies placed throughout it. One plushie that looked distinctly like Martha was plopped behind the dessert counter. Another was placed near the elevators and if one looked closely they could see a matching cowslave sat drowsing amongst the merchandise. <br><br>The cow was young, busty, even for the arcology, and heavily pregnant. She wore what looked to be Holstein print pajamas with a hood made to look like a stylized cow. Her strawberry blond hair was mussed with sleep and she cradled a plushie in one arm. Truly, she looked like a daughter waiting for her daddy to come home. As the party approached, she began to stir. <br><br>Scott reached out and began to gently pat her head. "How are you doing, Tabby?" Tabby just made a sound of contentment and pressed into his hand, luxuriating in his touch. After a few moments, she yawned and blinked, looking up at him. For a beat she just stared at him, her sleep addled brain struggling to process the sight in front of her. Finally, the penny dropped. +<<<<<<< HEAD <br><br>She squeaked and sat up so quick one would think she had been hit with a cattle prod. With a panicked expression, she began to babble a fervent apology. "Master, I'm sorry I fell asleep." She hiccupped and pleaded with him, on the verge of tears. "Please don't tell Gabe I fell asleep again. She'll yell at me for sure." Scott just continued patting her head, knelt beside her chair, and spoke in a calm tone, "Hey, hey, no need for tears. Just take a deep breath and calm down Tabby cat. I won't tell Gabe." <br><br>Tabby sniffed, took a deep breath, and hiccupped. For a moment, she just relaxed into Scott's ministrations before she frowned and said, "I thought you weren't coming in today master." He moved her hair out her eyes. "I figured I'd get some shopping done and show the newbie around," he said with a nod to Cathy. Tabby gave her a bright smile. "Oh, nice to meet you. Would you like a free sample?" she asked gesturing to table next to her. +======= + <br><br>She squeaked and sat up so quick one would think she had been hit with a cattle prod. With a panicked expression, she began to babble a fervent apology. "Master, I'm sorry I fell asleep." She hiccuped and pleaded with him, on the verge of tears. "Please don't tell Gabe I fell asleep again. She'll yell at me for sure." Scott just continued patting her head, knelt beside her chair, and spoke in a calm tone, "Hey, hey, no need for tears. Just take a deep breath and calm down Tabby cat. I won't tell Gabe." + <br><br>Tabby sniffed, took a deep breath, and hiccuped. For a moment, she just relaxed into Scott's ministrations before she frowned and said, "I thought you weren't coming in today master." He moved her hair out her eyes. "I figured I'd get some shopping done and show the newbie around," he said with a nod to Cathy. Tabby gave her a bright smile. "Oh, nice to meet you. Would you like a free sample?" she asked gesturing to table next to her. +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <br><br>The table next to her held a platter of cheese curds. A sign with the words 'Free Samples' printed on it stood to the left of table. Someone apparently thought that was an insufficient description and had taken a pen to add the words 'I made them myself!' in bright pink letters. Next to the platter, was an empty package that said 'Lolimommy Cheese Curds' in a cheery font. On the package, was an adorably deformed picture of Tabby that said 'The fresh ones squeak'. <br><br>Scott grabbed a few cheese curds and said, "Don't mind if I do," before popping one in his mouth. He handed some to Cathy and June. While June ate hers placidly, Cathy just stared at the cheese uncertainly. Scott gave her a look that promised a sore bottom if she didn't eat it, while Tabby clasped her hands and gave Cathy a look that could only be described as adorably determined. <br><br>Cathy took a tentative bite before popping the rest into her mouth. "Its good." Tabby gave her a sunny smile and said, "Thank you! I worked really hard on them." Scott smiled at her fondly and patted her head, "Yes you did." She preened at his praise and let out a sigh of contentment. diff --git a/src/pregmod/theCattleRanch.tw b/src/pregmod/theCattleRanch.tw index 3fe60099a5f7ee56258c99ec2727edfafb93acb0..c1dcfc794892af91cc32cfb8c961234eb9504748 100644 --- a/src/pregmod/theCattleRanch.tw +++ b/src/pregmod/theCattleRanch.tw @@ -7,7 +7,7 @@ <<set $nextButton = "Continue", $nextLink = "Bulk Slave Intro", $slaveMarket = "TCR", $returnTo = "Main", $newSlaveIndex = 0>> <</if>> -//The Cattle Ranch is a controversial slave school operating primarily out of Pastoralistic Free Cities. Its business model is to offer the ideal free range dairy cow; one whose tits and belly reach the floor when she is on all fours. All cattle come optimized for milking, with big breasts and gravid middles. Slave orphans have their heels clipped shortly after birth and are conditioned to believe they are actual livestock, resulting in a mindbreak like state. Between their wide hips and big butts and their heavy, milky breasts, they are often popular breeding slaves. They rarely display their stock over video call, instead favoring a more hands-on approach. Buyers can visit their local shops to view grazing cattle available for sale. Alternatively, they can watch the calves frolic among their mothers or enjoy the sight of a breeding bull impregnating an empty womb. Cows are also specially trained to respond to spectators banging on the fence; oral awaits if you drop trou for them! <<if $TCR.schoolUpgrade != 0>><br><br>You have endowed <<if $TCR.schoolUpgrade == 1>>a healthy sum of credits to make their breeding bulls available for sale.<<else>>a healthy sum of credits to encourage the sale of heifers.<</if>> As a major <<if $PC.title == 0>>benefactrix<<else>>benefactor<</if>> of the ranch, you also receive a discount on them.<</if>>// +//The Cattle Ranch is a controversial slave school operating primarily out of Pastoralistic Free Cities. Its business model is to offer the ideal free range dairy cow; one whose tits and belly reach the floor when she is on all fours. All cattle come optimized for milking, with big breasts and gravid middles. Slave orphans have their heels clipped shortly after birth and are conditioned to believe they are actual livestock, resulting in a mindbreak-like state. Between their wide hips and big butts and their heavy, milky breasts, they are often popular breeding slaves. They rarely display their stock over video call, instead favoring a more hands-on approach. Buyers can visit their local shops to view grazing cattle available for sale. Alternatively, they can watch the calves frolic among their mothers or enjoy the sight of a breeding bull impregnating an empty womb. Cows are also specially trained to respond to spectators banging on the fence; oral awaits if you drop trou for them! <<if $TCR.schoolUpgrade != 0>><br><br>You have endowed <<if $TCR.schoolUpgrade == 1>>a healthy sum of credits to make their breeding bulls available for sale.<<else>>a healthy sum of credits to encourage the sale of heifers.<</if>> As a major <<if $PC.title == 0>>benefactrix<<else>>benefactor<</if>> of the ranch, you also receive a discount on them.<</if>>// <br><br>The Cattle Ranch parades a choice selection of cows for your viewing pleasure. You're free to do as you please to the slaves, as long as you don't cause lasting harm to them.<<if isPlayerFertile($PC)>> You can't help but notice the number of bulls lining up along the fence sniffing at you.<</if>> @@ -20,20 +20,20 @@ <</if>> <<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += Math.trunc($slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> - <br><br>The price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +<<setLocalPronouns $activeSlave>> <<if $cash >= $slaveCost>> - <br>[[Buy her and check out other cows to order|The Cattle Ranch][$cash -= $slaveCost, $TCR.schoolSale = 0, $TCR.studentsBought += 1, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] + <br>[["Buy " + $him + " and check out other cows to order"|The Cattle Ranch][$cash -= $slaveCost, $TCR.schoolSale = 0, $TCR.studentsBought += 1, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] <<if $newSlaves.length == 0>> - <br>[[Buy her slave contract|New Slave Intro][$cash -= $slaveCost, $TCR.schoolSale = 0, $TCR.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]] + <br>[["Buy " + $his + " slave contract"|New Slave Intro][$cash -= $slaveCost, $TCR.schoolSale = 0, $TCR.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]] <<else>> - <br>[[Buy her and Finish your order of cattle|Bulk Slave Intro][$cash -= $slaveCost, $TCR.schoolSale = 0, $TCR.studentsBought += 1, $newSlaves.push($activeSlave)]] + <br>[["Buy " + $his + " and finish your order of cattle"|Bulk Slave Intro][$cash -= $slaveCost, $TCR.schoolSale = 0, $TCR.studentsBought += 1, $newSlaves.push($activeSlave)]] <</if>> <<else>> //You lack the necessary funds to buy this slave.// <</if>> -<br>[[Decline to purchase her and check out another cow|The Cattle Ranch][$slavesSeen += 1]] +<br>[["Decline to purchase " + $him + " and check out another cow"|The Cattle Ranch][$slavesSeen += 1]] <<if $newSlaves.length > 0>> <br>[[Finish your order of cattle|Bulk Slave Intro]] <</if>> diff --git a/src/pregmod/theHippolytaAcademy.tw b/src/pregmod/theHippolytaAcademy.tw index 8001f721a07748fcd46d51d790c5c1cc59294298..1d32b662f8ff776d6a08d83c3bfeab0517d3e0f1 100644 --- a/src/pregmod/theHippolytaAcademy.tw +++ b/src/pregmod/theHippolytaAcademy.tw @@ -29,20 +29,20 @@ The Hippolyta Academy is one of the most famous slave bodyguarding schools in al <</if>> <<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += Math.trunc($slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> - <br><br>The price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +<<setLocalPronouns $activeSlave>> <<if $cash >= $slaveCost>> - <br>[[Buy her and check out other slaves to order|The Hippolyta Academy][$cash -= $slaveCost, $HA.schoolSale = 0, $HA.studentsBought += 1, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] + <br>[["Buy " + $him + " and check out other slaves to order"|The Hippolyta Academy][$cash -= $slaveCost, $HA.schoolSale = 0, $HA.studentsBought += 1, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] <<if $newSlaves.length == 0>> - <br>[[Buy her slave contract|New Slave Intro][$cash -= $slaveCost, $HA.schoolSale = 0, $HA.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]] + <br>[["Buy " + $his + " slave contract"|New Slave Intro][$cash -= $slaveCost, $HA.schoolSale = 0, $HA.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]] <<else>> - <br>[[Buy her and Finish your order of slaves|Bulk Slave Intro][$cash -= $slaveCost, $HA.schoolSale = 0, $HA.studentsBought += 1, $newSlaves.push($activeSlave)]] + <br>[["Buy " + $him + " and finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $HA.schoolSale = 0, $HA.studentsBought += 1, $newSlaves.push($activeSlave)]] <</if>> <<else>> //You lack the necessary funds to buy this slave.// <</if>> -<br>[[Decline to purchase her and check out another slave|The Hippolyta Academy][$slavesSeen += 1]] +<br>[["Decline to purchase " + $him + " and check out another slave"|The Hippolyta Academy][$slavesSeen += 1]] <<if $newSlaves.length > 0>> <br>[[Finish your order of slaves|Bulk Slave Intro]] <</if>> diff --git a/src/pregmod/wetwareCPUs.tw b/src/pregmod/wetwareCPUs.tw index de6987dfefefdf674b5995cb5ba514f662bfb51b..c07f9580516f7903fcc4b9b626947bd910bc6497 100644 --- a/src/pregmod/wetwareCPUs.tw +++ b/src/pregmod/wetwareCPUs.tw @@ -15,20 +15,20 @@ <<slaveCost $activeSlave>> <<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += Math.trunc($slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> - <br><br>The price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +<<setLocalPronouns $activeSlave>> <<if $cash >= $slaveCost>> - <br>[[Buy her and check out other slaves to order|Wetware CPUs][$cash -= $slaveCost, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] + <br>[["Buy " + $him + " and check out other slaves to order"|Wetware CPUs][$cash -= $slaveCost, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] <<if $newSlaves.length == 0>> - <br>[[Buy her slave contract|New Slave Intro][$cash -= $slaveCost, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]] + <br>[["Buy " + $his + " slave contract"|New Slave Intro][$cash -= $slaveCost, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]] <<else>> - <br>[[Buy her and Finish your order of slaves|Bulk Slave Intro][$cash -= $slaveCost, $newSlaves.push($activeSlave)]] + <br>[["Buy " + $him + " and finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $newSlaves.push($activeSlave)]] <</if>> <<else>> //You lack the necessary funds to buy this slave.// <</if>> -<br>[[Decline to purchase her and check out another slave|Wetware CPUs][$slavesSeen += 1]] +<br>[["Decline to purchase " + $him + " and check out another slave"|Wetware CPUs][$slavesSeen += 1]] <<if $newSlaves.length > 0>> <br>[[Finish your order of slaves|Bulk Slave Intro]] <</if>> diff --git a/src/pregmod/widgets/deathWidgets.tw b/src/pregmod/widgets/deathWidgets.tw index afe6a5f73a7ea9aa87f2a3511dbd8f95be8baaa3..2e34bbd813b886164cd2013481187fbbcddb40d3 100644 --- a/src/pregmod/widgets/deathWidgets.tw +++ b/src/pregmod/widgets/deathWidgets.tw @@ -117,7 +117,11 @@ As $args[0].slaveName is going about $his business with $his overfilled $args[0] <</if>> <<if $arcologies[0].FSPaternalist != "unset">> Allowing a slave to die under your care @@.red;severely damages@@ your image as a caring slaveowner and @@.red;calls into question@@ your paternalistic resolve. +<<<<<<< HEAD + <<= FSChange("Paternalist", -10)>> +======= <<= FSChange("Paternalist", -10)>> +>>>>>>> a94d26a4b0a9f518bf648ba578fd53051afdbac8 <</if>> <</if>> <</widget>> diff --git a/src/pregmod/widgets/economyWidgets.tw b/src/pregmod/widgets/economyWidgets.tw index 4c1895117ac06fd3cc86446a37d752bb89445dbb..dcb61e0c56ce80c6c0a303edf227d04568c993b1 100644 --- a/src/pregmod/widgets/economyWidgets.tw +++ b/src/pregmod/widgets/economyWidgets.tw @@ -458,7 +458,7 @@ <</if>> <</widget>> -/* Call with <<CorpDevBuySell "asset" "Numasset">> TODO: replace eval parse with appropriate functions */ +/* Call with <<CorpDevBuySell "asset" "Numasset">> TODO: replace eval parse with appropriate functions */ <<widget "CorpDevBuySell">> <<set _textboxMLArg = '_'+$args[1]>> | Trade Qty diff --git a/src/pregmod/widgets/playerDescriptionWidgets.tw b/src/pregmod/widgets/playerDescriptionWidgets.tw index 804e0783531fa9c0f851b2789d72c11e963d7fe3..579c3845099802480d41fd9bdacaec90b3aa353a 100644 --- a/src/pregmod/widgets/playerDescriptionWidgets.tw +++ b/src/pregmod/widgets/playerDescriptionWidgets.tw @@ -376,7 +376,7 @@ <<set adjustFatherProperty(_babyDaddy, "PCKnockedUp", _adjust)>> <</if>> <<if def $slaveIndices[$PC.pregSource]>> - <<setLocalPronouns _babyDaddy>> + <<setLocalpronouns _babyDaddy>> Rumors spread among your slaves that your middle is swollen with _babyDaddy.slaveName's child. They're not wrong, though <<if _babyDaddy.devotion > 20>>_babyDaddy.slaveName is broken enough to not try and use it against you. In fact, it might even draw $him closer to you<<else>>you'd have liked it to have kept that from _babyDaddy.slaveName, lest the rebellious bitch uses it to remain defiant<</if>>. <</if>> <</if>> @@ -449,7 +449,7 @@ <<set adjustFatherProperty(_babyDaddy, "PCKnockedUp", _adjust)>> <</if>> <<if def $slaveIndices[$PC.pregSource]>> - <<setLocalPronouns _babyDaddy>> + <<setLocalpronouns _babyDaddy>> Rumors spread among your slaves that your middle is swollen with _babyDaddy.slaveName's child. They're not wrong, though <<if _babyDaddy.devotion > 20>>_babyDaddy.slaveName is broken enough to not try and use it against you. In fact, it might even draw $him closer to you<<else>>you'd have liked it to have kept that from _babyDaddy.slaveName, lest the rebellious bitch uses it to remain defiant<</if>>. <</if>> <</if>> @@ -522,7 +522,7 @@ <<set adjustFatherProperty(_babyDaddy, "PCKnockedUp", _adjust)>> <</if>> <<if def $slaveIndices[$PC.pregSource]>> - <<setLocalPronouns _babyDaddy>> + <<setLocalpronouns _babyDaddy>> Rumors spread among your slaves that your middle is swollen with _babyDaddy.slaveName's child. They're not wrong, though <<if _babyDaddy.devotion > 20>>_babyDaddy.slaveName is broken enough to not try and use it against you. In fact, it might even draw $him closer to you<<else>>you'd have liked it to have kept that from _babyDaddy.slaveName, lest the rebellious bitch uses it to remain defiant<</if>>. <</if>> <</if>> diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw index c2db8f6695b315a04ded691b5f196a1096721794..1e8332f0feb0ed1a2fff6996c83e6d403c692393 100644 --- a/src/uncategorized/BackwardsCompatibility.tw +++ b/src/uncategorized/BackwardsCompatibility.tw @@ -520,7 +520,7 @@ <<set $propOutcome = 0>> <</if>> <<if ndef $EliteSires>> - <<set $EliteSires = ["moves", "quick", "crazy", "virgin", "futa", "preggo"]>> + <<set $EliteSires = ["crazy", "futa", "moves", "preggo", "quick", "virgin"]>> <</if>> <<if ndef $startingPoint>> <<set $startingPoint = -1>> @@ -1047,10 +1047,10 @@ <<set $eugenicsFullControl = 0>> <</if>> <<if ndef $merchantFSWares>> - <<set $merchantFSWares = ["GenderRadicalistResearch", "TransformationFetishistResearch", "AssetExpansionistResearch", "SlimnessEnthusiastResearch", "YouthPreferentialistResearch", "HedonisticDecadenceResearch"]>> + <<set $merchantFSWares = ["AssetExpansionistResearch", "GenderRadicalistResearch", "HedonisticDecadenceResearch", "SlimnessEnthusiastResearch", "TransformationFetishistResearch", "YouthPreferentialistResearch"]>> <</if>> <<if ndef $merchantIllegalWares>> - <<set $merchantIllegalWares = ["childhoodFertilityInducedNCS", "UterineRestraintMesh", "RapidCellGrowthFormula", "PGHack"]>> + <<set $merchantIllegalWares = ["childhoodFertilityInducedNCS", "PGHack", "RapidCellGrowthFormula", "UterineRestraintMesh"]>> <<elseif $merchantIllegalWares.length == 0>> <<set $merchantIllegalWares.push("childhoodFertilityInducedNCS")>> <<set $merchantIllegalWares.push("UterineRestraintMesh")>> @@ -1079,7 +1079,7 @@ <<set $showInches = 0>> <</if>> <<if ndef $prisonCircuit>> - <<set $prisonCircuit = ["low tier criminals", "gangs and smugglers", "white collar", "military prison"]>> + <<set $prisonCircuit = ["gangs and smugglers", "low tier criminals", "military prison", "white collar"]>> <<set $prisonCircuitIndex = random(0,$prisonCircuit.length-1)>> <</if>> <<if $captureUpgradeRace === "">> @@ -1365,19 +1365,18 @@ <<if ndef $month>> -<<set $month = either("January","February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")>> + <<set $month = either("April", "August", "December", "February", "January", "July", "June", "March", "May", "November", "October", "September")>> <</if>> <<if ndef $day>> -<<set $day = random(1,28)>> + <<set $day = random(1,28)>> <</if>> <<if ndef $year>> <<set $year = (2037+Math.floor($week/52))>> <</if>> <<if ndef $arcologies>> -<<set $arcologies = []>> - -<<set $arcologies[0] = {name: "Arcology X-", direction: 0, government: 1, honeymoon: 0, prosperity: 50, FSSupremacist: "unset", FSSupremacistRace: 0, FSSubjugationist: "unset", FSSubjugationistRace: 0, FSGenderRadicalist: "unset", FSGenderFundamentalist: "unset", FSPaternalist: "unset", FSDegradationist: "unset", FSBodyPurist: "unset", FSTransformationFetishist: "unset", FSYouthPreferentialist: "unset", FSMaturityPreferentialist: "unset", FSSlimnessEnthusiast: "unset", FSAssetExpansionist: "unset", FSPastoralist: "unset", FSPhysicalIdealist: "unset", FSChattelReligionist: "unset", FSRomanRevivalist: "unset", FSEgyptianRevivalist: "unset", FSEdoRevivalist: "unset", FSArabianRevivalist: "unset", FSChineseRevivalist: "unset", FSNull: "unset", FSRepopulationFocus: "unset", FSRestart: "unset", FSHedonisticDecadence: "unset", embargo: 1, embargoTarget: -1, influenceTarget: -1, influenceBonus: 0, rival: 0}>> + <<set $arcologies = []>> + <<set $arcologies[0] = {name: "Arcology X-", direction: 0, government: 1, honeymoon: 0, prosperity: 50, FSSupremacist: "unset", FSSupremacistRace: 0, FSSubjugationist: "unset", FSSubjugationistRace: 0, FSGenderRadicalist: "unset", FSGenderFundamentalist: "unset", FSPaternalist: "unset", FSDegradationist: "unset", FSBodyPurist: "unset", FSTransformationFetishist: "unset", FSYouthPreferentialist: "unset", FSMaturityPreferentialist: "unset", FSSlimnessEnthusiast: "unset", FSAssetExpansionist: "unset", FSPastoralist: "unset", FSPhysicalIdealist: "unset", FSChattelReligionist: "unset", FSRomanRevivalist: "unset", FSEgyptianRevivalist: "unset", FSEdoRevivalist: "unset", FSArabianRevivalist: "unset", FSChineseRevivalist: "unset", FSNull: "unset", FSRepopulationFocus: "unset", FSRestart: "unset", FSHedonisticDecadence: "unset", embargo: 1, embargoTarget: -1, influenceTarget: -1, influenceBonus: 0, rival: 0}>> <</if>> <<if def $arcologyName>> @@ -2649,7 +2648,7 @@ Setting missing global variables: <</if>> <<if ndef $justiceEvents>> - <<set $justiceEvents = ["slave deal", "slave training", "majority deal", "indenture deal", "virginity deal"]>> + <<set $justiceEvents = ["indenture deal", "majority deal", "slave deal", "slave training", "virginity deal"]>> <</if>> <<if (($ver.startsWith("0.6") && !$ver.startsWith("10.6")) || ($ver.startsWith("0.7")) || ($ver.startsWith("0.8")) || ($ver == "0.9"))>> @@ -2954,23 +2953,32 @@ Setting missing slave variables: <<if ndef _backwardsCompatibility>><<set _Slave.relation = 0, _Slave.relationTarget = 0>><</if>> <</if>> -<<if _Slave.race == "surgically altered to look white">> - <<set _Slave.race = "white">> +<<if _Slave.race == "surgically altered to look amerindian">> + <<set _Slave.race = "amerindian">> +<</if>> +<<if _Slave.race == "surgically altered to look asian">> + <<set _Slave.race = "asian">> <</if>> <<if _Slave.race == "surgically altered to look black">> <<set _Slave.race = "black">> <</if>> +<<if _Slave.race == "surgically altered to look indo-aryan">> + <<set _Slave.race = "indo-aryan">> +<</if>> <<if _Slave.race == "surgically altered to look latina">> <<set _Slave.race = "latina">> <</if>> -<<if _Slave.race == "surgically altered to look asian">> - <<set _Slave.race = "asian">> +<<if _Slave.race == "surgically altered to look malay">> + <<set _Slave.race = "malay">> <</if>> <<if _Slave.race == "surgically altered to look middle eastern">> <<set _Slave.race = "middle eastern">> <</if>> -<<if _Slave.race == "surgically altered to look amerindian">> - <<set _Slave.race = "amerindian">> +<<if (_Slave.race == "surgically altered to look mixed race") || (_Slave.race == "surgically altered to look mixed")>> + <<set _Slave.race = "mixed race">> +<</if>> +<<if (_Slave.race == "surgically altered to look pacific islander") || (_Slave.race == "surgically altered to look like a pacific islander")>> + <<set _Slave.race = "pacific islander">> <</if>> <<if (_Slave.race == "surgically altered to look southern european") || (_Slave.race == "southern European")>> <<set _Slave.race = "southern european">> @@ -2978,17 +2986,8 @@ Setting missing slave variables: <<if _Slave.race == "surgically altered to look semitic">> <<set _Slave.race = "semitic">> <</if>> -<<if _Slave.race == "surgically altered to look malay">> - <<set _Slave.race = "malay">> -<</if>> -<<if _Slave.race == "surgically altered to look indo-aryan">> - <<set _Slave.race = "indo-aryan">> -<</if>> -<<if (_Slave.race == "surgically altered to look pacific islander") || (_Slave.race == "surgically altered to look like a pacific islander")>> - <<set _Slave.race = "pacific islander">> -<</if>> -<<if (_Slave.race == "surgically altered to look mixed race") || (_Slave.race == "surgically altered to look mixed")>> - <<set _Slave.race = "mixed race">> +<<if _Slave.race == "surgically altered to look white">> + <<set _Slave.race = "white">> <</if>> <<if ndef _Slave.override_Race>> @@ -3254,49 +3253,49 @@ Setting missing slave variables: <<if (($ver.startsWith("0.6") && !$ver.startsWith("10.6")) || ($ver.startsWith("0.7")) || ($ver.startsWith("0.8")) || ($ver.startsWith("0.9"))) && (!$ver.startsWith("0.9.5")) && (!$ver.startsWith("0.9.6")) && (!$ver.startsWith("0.9.7")) && (!$ver.startsWith("0.9.8")) && (!$ver.startsWith("0.9.9")) && (!$ver.startsWith("0.9.10"))>> <<if _Slave.oralSkill > 0>> - <<if _Slave.oralSkill == 3>> - <<set _Slave.oralSkill = 100>> - <<elseif _Slave.oralSkill == 2>> - <<set _Slave.oralSkill = 65>> - <<else>> - <<set _Slave.oralSkill = 35>> - <</if>> + <<if _Slave.oralSkill == 3>> + <<set _Slave.oralSkill = 100>> + <<elseif _Slave.oralSkill == 2>> + <<set _Slave.oralSkill = 65>> + <<else>> + <<set _Slave.oralSkill = 35>> + <</if>> <</if>> <<if _Slave.vaginalSkill > 0>> - <<if _Slave.vaginalSkill == 3>> - <<set _Slave.vaginalSkill = 100>> - <<elseif _Slave.vaginalSkill == 2>> - <<set _Slave.vaginalSkill = 65>> - <<else>> - <<set _Slave.vaginalSkill = 35>> - <</if>> + <<if _Slave.vaginalSkill == 3>> + <<set _Slave.vaginalSkill = 100>> + <<elseif _Slave.vaginalSkill == 2>> + <<set _Slave.vaginalSkill = 65>> + <<else>> + <<set _Slave.vaginalSkill = 35>> + <</if>> <</if>> <<if _Slave.analSkill > 0>> - <<if _Slave.analSkill == 3>> - <<set _Slave.analSkill = 100>> - <<elseif _Slave.analSkill == 2>> - <<set _Slave.analSkill = 65>> - <<else>> - <<set _Slave.analSkill = 35>> - <</if>> + <<if _Slave.analSkill == 3>> + <<set _Slave.analSkill = 100>> + <<elseif _Slave.analSkill == 2>> + <<set _Slave.analSkill = 65>> + <<else>> + <<set _Slave.analSkill = 35>> + <</if>> <</if>> <<if _Slave.whoreSkill > 0>> - <<if _Slave.whoreSkill == 3>> - <<set _Slave.whoreSkill = 100>> - <<elseif _Slave.whoreSkill == 2>> - <<set _Slave.whoreSkill = 65>> - <<else>> - <<set _Slave.whoreSkill = 35>> - <</if>> + <<if _Slave.whoreSkill == 3>> + <<set _Slave.whoreSkill = 100>> + <<elseif _Slave.whoreSkill == 2>> + <<set _Slave.whoreSkill = 65>> + <<else>> + <<set _Slave.whoreSkill = 35>> + <</if>> <</if>> <<if _Slave.entertainSkill > 0>> - <<if _Slave.entertainSkill == 3>> - <<set _Slave.entertainSkill = 100>> - <<elseif _Slave.entertainSkill == 2>> - <<set _Slave.entertainSkill = 65>> - <<else>> - <<set _Slave.entertainSkill = 35>> - <</if>> + <<if _Slave.entertainSkill == 3>> + <<set _Slave.entertainSkill = 100>> + <<elseif _Slave.entertainSkill == 2>> + <<set _Slave.entertainSkill = 65>> + <<else>> + <<set _Slave.entertainSkill = 35>> + <</if>> <</if>> <<if ($ver != "0.9.4")>> <<set _Slave.aphrodisiacs = 0>> @@ -3630,8 +3629,8 @@ Done! /* Sec Exp */ <<if $secExp == 1>> -<br> -<<include "SecExpBackwardCompatibility">> + <br> + <<include "SecExpBackwardCompatibility">> <</if>> <<if ndef $masteredXP>> diff --git a/src/uncategorized/PESS.tw b/src/uncategorized/PESS.tw index af621d31f8fd70ad8264d2ce80e9baacae8b3610..7cc26eab6ee5bfb87042c9ccf3d693d9ce765c49 100644 --- a/src/uncategorized/PESS.tw +++ b/src/uncategorized/PESS.tw @@ -136,7 +136,7 @@ When you've finished your task, you raise your eyes to examine her. $He's standi $He's nude, making it obvious that $his poor soft member has done its duty today. It even looks a little moist, as though it bred a fertile slave's pussy only a few minutes ago. <<elseif ["body oil", "chains", "clubslut netting", "restrictive latex", "shibari ropes", "uncomfortable straps"].indexOf($activeSlave.clothes) != -1>> $His clothes don't cover $his dick, making it obvious that $his poor soft member has done its duty today. It even looks a little moist, as though it bred a fertile slave's pussy only a few minutes ago. -<<elseif ["a burkini", "a comfortable bodysuit", "a fallen nuns habit", "a latex catsuit", "a leotard", "a monokini", "a cybersuit", "a scalemail bikini", "shimapan panties", "a string bikini", "attractive lingerie for a pregnant woman", "attractive lingerie", "harem gauze", "kitty lingerie", "restrictive latex", "slutty jewelry", "spats and a tank top", "stretch pants and a crop-top"].indexOf($activeSlave.clothes) != -1>> +<<elseif ["a burkini", "a comfortable bodysuit", "a cybersuit", "a fallen nuns habit", "a latex catsuit", "a leotard", "a monokini", "a scalemail bikini", "a string bikini", "attractive lingerie for a pregnant woman", "attractive lingerie", "harem gauze", "kitty lingerie", "restrictive latex", "shimapan panties", "slutty jewelry", "spats and a tank top", "stretch pants and a crop-top"].indexOf($activeSlave.clothes) != -1>> $His clothes cover $his groin, but they're pretty tight, making it clear that $his poor soft member has done its duty today. <<else>> $His clothes are relatively modest, so you can't see it, but it's clear that $his poor soft member has done its duty today. diff --git a/src/uncategorized/RECI.tw b/src/uncategorized/RECI.tw index d0cae0297c5368dd14ea12cdf0f1fd5cdd91e3f6..6705c1e6d0e39d87b467f9c614fbadb1d5418ca6 100644 --- a/src/uncategorized/RECI.tw +++ b/src/uncategorized/RECI.tw @@ -318,9 +318,9 @@ $He looks pensive, and goes through two false starts before $he clears $his thro <<setLocalPronouns $Concubine 2>> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him $he's got a nice asspussy, and grope her thoroughly, cupping $his buttocks with one hand and squeezing a breast with the other. $He looks <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>desperately eager<<else>>ready and willing<</if>>, and angles $himself just right, but you administer a light slap to $his $activeSlave.skin ass and continue, telling her that it's so nice you feel like sharing it. $He's <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>so ready to fuck $he can't quite think of what to say<<else>>not quite sure how to respond<</if>>, and before she can figure it out, $Concubine.slaveName hurries in, responding to your summons. Of course, $activeSlave.slaveName is no stranger to $Concubine.slaveName, who takes in the situation at a glance and <<if $Concubine.dick > 0>>instantly achieves a painfully hard erection<<else>>immediately flushes with arousal<</if>>. $Concubine.slaveName<<if $Concubine.dick == 0>> dons a strap-on and<</if>> clambers up onto the (strongly built) bathroom counter. Since saliva is plenty of lube for $activeSlave.slaveName's experienced ass, she points a meaningful finger at <<if $Concubine.dick == 0>>the phallus<<else>>her cock<</if>>, and $activeSlave.slaveName begins to suck it enthusiastically, trying to get it as wet as possible for the sake of $his butt. + You tell $him $he's got a nice asspussy, and grope $him thoroughly, cupping $his buttocks with one hand and squeezing a breast with the other. $He looks <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>desperately eager<<else>>ready and willing<</if>>, and angles $himself just right, but you administer a light slap to $his $activeSlave.skin ass and continue, telling her that it's so nice you feel like sharing it. $He's <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>so ready to fuck $he can't quite think of what to say<<else>>not quite sure how to respond<</if>>, and before she can figure it out, $Concubine.slaveName hurries in, responding to your summons. Of course, $activeSlave.slaveName is no stranger to $Concubine.slaveName, who takes in the situation at a glance and <<if $Concubine.dick > 0>>instantly achieves a painfully hard erection<<else>>immediately flushes with arousal<</if>>. $Concubine.slaveName<<if $Concubine.dick == 0>> dons a strap-on and<</if>> clambers up onto the (strongly built) bathroom counter. Since saliva is plenty of lube for $activeSlave.slaveName's experienced ass, she points a meaningful finger at <<if $Concubine.dick == 0>>the phallus<<else>>her cock<</if>>, and $activeSlave.slaveName begins to suck it enthusiastically, trying to get it as wet as possible for the sake of $his butt. <br><br> - Since $activeSlave.slaveName is being so good, you decide to help get $him ready, and push her sideways so she straddles the counter's edge. $He whimpers into the <<if $Concubine.dick == 0>>dildo<<else>>dick<</if>> in $his mouth as she feels her <<if $activeSlave.dick > 0>><<if ($activeSlave.hormoneBalance >= 100) || ($activeSlave.dickAccessory == "chastity")>>chastity cage<<elseif ($activeSlave.hormoneBalance >= 100) || ($activeSlave.balls == 0) || ($activeSlave.ballType == "sterile")>>soft dickclit<<else>>hard cock<</if>><<else>>mons<</if>> graze the hard counter, and then stiffens as you penetrate $his bottom. When you judge that your Head Girl is wet enough, you nod to her, and she takes $activeSlave.slaveName by the hand, pulling $him up onto _his2 lap. + Since $activeSlave.slaveName is being so good, you decide to help get $him ready, and push her sideways so she straddles the counter's edge. $He whimpers into the <<if $Concubine.dick == 0>>dildo<<else>>dick<</if>> in $his mouth as she feels her <<if $activeSlave.dick > 0>><<if ($activeSlave.hormoneBalance >= 100) || ($activeSlave.dickAccessory == "chastity")>>chastity cage<<elseif ($activeSlave.hormoneBalance >= 100) || ($activeSlave.balls == 0) || ($activeSlave.ballType == "sterile")>>soft dickclit<<else>>hard cock<</if>><<else>>mons<</if>> graze the hard counter, and then stiffens as you penetrate $his bottom. When you judge that your Head Girl is wet enough, you nod to _him2, and she takes $activeSlave.slaveName by the hand, pulling $him up onto _his2 lap. <<if ($Concubine.boobs > 4000) && ($activeSlave.boobs > 4000)>> Their tits are so huge that they can't reach each other to kiss, chest-to-chest like that. $Concubine.slaveName settles for blowing the other slave an exaggerated kiss, which makes $him laugh. <<else>> @@ -541,14 +541,14 @@ $He looks pensive, and goes through two false starts before $he clears $his thro <<link "$He's pretty enough to decorate your arm for a night out">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell her to head down to the wardrobe and put on the outfit that'll be laid out for her there. $He obeys promptly, but does not return for some time, having gotten instructions from $assistantName along the way to put extra effort into $his grooming. When she finally returns, the effect is striking. <<if $activeSlave.face > 10>>$He's a gorgeous girl with or without makeup, dressed up or naked, but she's especially luscious tonight.<<else>>$His face is not flawless, but she's conscious of $his transformation, and the new confidence in $his beauty adds a special glow that cannot be faked.<</if>> $His evening dress is elegant; it's quite slutty by old world standards, but according to Free Cities fashion, it's just about the most conservative gown a slave can be expected to wear, and quite daring in that it isn't immediately obvious whether she's a slave or not. The tops of $his areolae are hardly even visible.<br><br> - You take her out to a nice lounge, with blue-toned light and soft music. $He clings to your arm, pressing $himself against you just the right amount: not enough to demand sex right now, but enough to raise the anticipation of it later. $He's a slave, so she does not eat or drink the usual fare on offer, but the establishment is used to slaves and offers flavorful variation on liquid slave food. $He drinks the translucent fluid out of a tall glass, carefully maintaining $his poise. You circulate, leaving her at the bar when acquaintances appear. $He perches on a stool, conscious of and pleased by the discreet admiration of $his body, delectably outlined by the tight dress. Once a new arrival who did not see you with her introduces himself to her. He's tall and fit and silver-haired, but he picked her out of the room to approach, and it's with polite disappointment that he reacts to $his indication of you, across the room - "I'm <<s>>orry, <<S>>ir, that'<<s>> my <<Master>> there." He offers a nonverbal apology without coming over, which you accept with a wave: it's such a common mistake in Free Cities high society that it's universally brushed off without offense. It happens again later in the night, when a slightly tipsy free woman occupies the barstool next to $activeSlave.slaveName's and keeps trying to relax against her until the flattered slave explains $himself again. When you bring her home at the end of the night, $his eyes are shining with @@.mediumaquamarine;private assurance,@@ and she presses $himself against you more closely than ever. + You tell $him to head down to the wardrobe and put on the outfit that'll be laid out for $him there. $He obeys promptly, but does not return for some time, having gotten instructions from $assistantName along the way to put extra effort into $his grooming. When she finally returns, the effect is striking. <<if $activeSlave.face > 10>>$He's a gorgeous girl with or without makeup, dressed up or naked, but she's especially luscious tonight.<<else>>$His face is not flawless, but she's conscious of $his transformation, and the new confidence in $his beauty adds a special glow that cannot be faked.<</if>> $His evening dress is elegant; it's quite slutty by old world standards, but according to Free Cities fashion, it's just about the most conservative gown a slave can be expected to wear, and quite daring in that it isn't immediately obvious whether she's a slave or not. The tops of $his areolae are hardly even visible.<br><br> + You take $him out to a nice lounge, with blue-toned light and soft music. $He clings to your arm, pressing $himself against you just the right amount: not enough to demand sex right now, but enough to raise the anticipation of it later. $He's a slave, so she does not eat or drink the usual fare on offer, but the establishment is used to slaves and offers flavorful variation on liquid slave food. $He drinks the translucent fluid out of a tall glass, carefully maintaining $his poise. You circulate, leaving $him at the bar when acquaintances appear. $He perches on a stool, conscious of and pleased by the discreet admiration of $his body, delectably outlined by the tight dress. Once a new arrival who did not see you with $him introduces himself to $him. He's tall and fit and silver-haired, but he picked $him out of the room to approach, and it's with polite disappointment that he reacts to $his indication of you, across the room - "I'm <<s>>orry, <<S>>ir, that'<<s>> my <<Master>> there." He offers a nonverbal apology without coming over, which you accept with a wave: it's such a common mistake in Free Cities high society that it's universally brushed off without offense. It happens again later in the night, when a slightly tipsy free woman occupies the barstool next to $activeSlave.slaveName's and keeps trying to relax against $him until the flattered slave explains $himself again. When you bring $him home at the end of the night, $his eyes are shining with @@.mediumaquamarine;private assurance,@@ and she presses $himself against you more closely than ever. <<set $activeSlave.analCount += 1>> <<set $analTotal += 1>> <<set $activeSlave.trust += 4>> <</replace>> <</link>> -<br><<link "Show her off online">> +<br><<link "Show $him off online">> <<EventNameDelink $activeSlave>> <<replace "#result">> You tell her that she's become a very pretty sex slave, and to prove it, you set up a live feed for her that's available for free in the old world. The Free Cities produce an utter torrent of hardcore video, so much that there's never any profit to be made off it anymore, but viewers begin to join the channel anyway and by the end of the week $he has thousands of eyes watching her as she <<if $activeSlave.assignment == "whore">>sells $his body<<else>>has sex with random citizens<</if>> in the hallways of $arcologies[0].name. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> keeps her constantly informed of how many people are watching her get fucked, how many of them are likely masturbating to $his body, and how many inquiries about $him $assistantName is culling out of your inbox. $He slowly gets used to $his starring role in an impromptu free hardcore stream, but never quite stops stealing wondering glances at the nearest camera, as though she cannot believe that so many people would sexualize her. This lends her a naughtiness that cannot be faked, garnering $him @@.green;much attention@@ by the end of the week. diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw index 80d2d713ff54cf1df06b8ae919a55755e2eb1a02..35ef545413f3c6f524547e4d3b74d4f12e885216 100644 --- a/src/uncategorized/RESS.tw +++ b/src/uncategorized/RESS.tw @@ -323,7 +323,7 @@ clings to you in $his sleep as the warmth of your body begins to move away from <<case "confident tanning">> It's an unusually nice day, with mild sunshine, light breezes, and nothing offensive or dangerous in the atmosphere. In the middle of the afternoon, you take a break from your busy schedule of sex and business and stroll out onto one of your penthouse balconies. It seems <<EventNameLink $activeSlave>> was struck by a similar impulse. <<if $activeSlave.assignment == "rest">>$He's assigned to do little but rest<<else>>This is one of $his rest periods<</if>>, so $he's come out here to lay naked on a towel and enjoy the sun. -<<if ["dark olive", "dark", "brown", "dark brown", "black", "ebony", "pure black"].includes($activeSlave.skin)>> +<<if ["black", "brown", "dark brown", "dark olive", "dark", "ebony", "pure black"].includes($activeSlave.skin)>> $His $activeSlave.skin doesn't tan much, so $he's just out here to bask in its warmth. $His body shines with lotion from a bottle lying next to $him, but it's just general-purpose stuff. <<elseif ($activeSlave.skin == "tanned")>> $His tanned skin shines with lotion from a bottle lying next to $him. @@ -631,7 +631,7 @@ You shake your head no, for the moment, and just enjoy the view. After a few min <<case "nympho with assistant">> -You pass one of the penthouse's several supply closets by chance, and are surprised to hear $assistantName's voice inside. Oddly, there seems to be more than one of her. You open the door on a whim, to find that almost every one of the dildo machines in the closet is currently fucking <<EventNameLink $activeSlave>>, +You pass one of the penthouse's several supply closets by chance, and are surprised to hear $assistantName's voice inside. Oddly, there seems to be more than one of $him. You open the door on a whim, to find that almost every one of the dildo machines in the closet is currently fucking <<EventNameLink $activeSlave>>, <<if $activeSlave.belly >= 500000>> atop $his <<if $activeSlave.bellyPreg >= 5000>>excited and wriggling mass of children<<else>>over-inflated sphere of a stomach<</if>> <<else>> @@ -2445,7 +2445,7 @@ has run through the prescribed motions of a normal inspection, and you've reache <<case "kitchen molestation">> -<<EventNameLink $activeSlave>> is a horny bitch, and $he isn't particularly picky about how $he gets off. Since other slaves are not allowed to resist $his little molestations, $he's taken to haunting the kitchen around mealtimes. Since everyone has to suck her meals out of the phallic food dispensers, every slave has to spend some minutes of every day in the kitchen with her face to the wall and her rear defenseless. $activeSlave.slaveName does $his best to arrive as early as possible and eat as rapidly as possible so $he can then play with anyone who's slower to finish. +<<EventNameLink $activeSlave>> is a horny bitch, and $he isn't particularly picky about how $he gets off. Since other slaves are not allowed to resist $his little molestations, $he's taken to haunting the kitchen around mealtimes. Since everyone has to suck their meals out of the phallic food dispensers, every slave has to spend some minutes of every day in the kitchen with their face to the wall and their rear defenseless. $activeSlave.slaveName does $his best to arrive as early as possible and eat as rapidly as possible so $he can then play with anyone who's slower to finish. <br><br> You decide to stop by to see $his method at work. By the time you arrive, $he's already eaten and orgasmed at least once. As you spectate, $he <<if canPenetrate($activeSlave) && $activeSlave.prostate > 0>> @@ -2486,7 +2486,7 @@ You decide to stop by to see $his method at work. By the time you arrive, $he's <<case "imp">> is hovering while viciously fingering $his cunt. <<case "witch">> - is pretending to read from her spellbook, but is obviously watching over the top of it. + is pretending to read from her spell book, but is obviously watching over the top of it. <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">> is mimicking her actions nearly perfectly. <<case "schoolgirl">> @@ -2585,7 +2585,7 @@ $He looks like <<if $activeSlave.bellyPreg >= 1500 || $activeSlave.bellyImplant <<else>> "Oh <<Master>>, I'm ssstarving," $he moans, <</if>> -running $his tongue over her<<if $activeSlave.lips > 40>> whorish<<elseif $activeSlave.lips > 20>> plush<</if>> lips and sticking out $his chest to present $his boobs even more obviously. +running $his tongue over $his<<if $activeSlave.lips > 40>> whorish<<elseif $activeSlave.lips > 20>> plush<</if>> lips and sticking out $his chest to present $his boobs even more obviously. <<case "PA flirting">> @@ -3103,7 +3103,7 @@ and flirting with passersby. Or $he would be, if $he weren't surrounded by a hos <br><br> "Why the fuck did you say that shit? We're not lesbians," says one. <br><br> -"You're fucking //gross,//" says another. "Like, ew. Even if it's free, why the fuck would we let you touch us?" +"You're fucking //gross//," says another. "Like, ew. Even if it's free, why the fuck would we let you touch us?" <br><br> <<if $activeSlave.bellyPreg >= 750000>> "Holy shit, $he's gonna blow! Bitch'll keep fucking till $his belly pops open and keep on fucking still," @@ -3502,7 +3502,7 @@ $He shrieks, backpedaling, and then falls backward, $his <<if $activeSlave.butt There are sturdy leather seats placed strategically throughout your penthouse. They offer something convenient to bend your slaves over, wherever you happen to encounter them, and they're comfortable, too. At the moment, you're sitting on one, using a tablet to take care of some business that caught you away from your office, but isn't worth heading back to your desk for. Slaves move by your impromptu throne as you work, mostly <<if $averageTrust > 50>>greeting you cheerfully<<elseif $averageTrust > 20>>greeting you properly<<elseif $averageTrust > -20>>doing their best to greet you properly<<elseif $averageTrust > -50>>greeting you fearfully<<else>>struggling to greet you through their terror<</if>> as they pass. Busy, you spare few of them more than a glance. <br><br> -One of them slows as $he goes by, however. Looking up, you see that it's <<EventNameLink $activeSlave>>. <<if canTalk($activeSlave)>>"Hi <<Master>>," $he <<say>>s flirtily<<if $activeSlave.belly >= 1500>> rubbing a hand across $his _belly <<if $activeSlave.bellyPreg > 0>> pregnancy<<else>>belly<</if>><</if>>. "That look<<s>> like a really comfortable <<s>>eat. Can I <<s>>it down and re<<s>>t <<if $activeSlave.belly >= 10000>>my tired leg<<s>> <</if>>for a little while?"<<else>>$He greets you properly, but adds a flirtiness to $his gestures, and asks if $he can sit down and rest <<if $activeSlave.belly >= 10000>> $his <<if $activeSlave.bellyPreg > 0>>gravid<<else>>_belly<</if>> bulk <</if>>on the comfortable seat for a little while.<</if>> $He is not pointing at the soft leather cushion next to you: $he's pointing at your crotch. +One of them slows as $he goes by, however. Looking up, you see that it's <<EventNameLink $activeSlave>>. <<if canTalk($activeSlave)>>"Hi <<Master>>," $he <<say>>s flirtatiously<<if $activeSlave.belly >= 1500>> rubbing a hand across $his _belly <<if $activeSlave.bellyPreg > 0>> pregnancy<<else>>belly<</if>><</if>>. "That look<<s>> like a really comfortable <<s>>eat. Can I <<s>>it down and re<<s>>t <<if $activeSlave.belly >= 10000>>my tired leg<<s>> <</if>>for a little while?"<<else>>$He greets you properly, but adds a flirtiness to $his gestures, and asks if $he can sit down and rest <<if $activeSlave.belly >= 10000>> $his <<if $activeSlave.bellyPreg > 0>>gravid<<else>>_belly<</if>> bulk <</if>>on the comfortable seat for a little while.<</if>> $He is not pointing at the soft leather cushion next to you: $he's pointing at your crotch. <br><br> You're nude, a consequence of <<if $Concubine != 0 && $Concubine.ID != $activeSlave.ID>>recent activities involving $Concubine.slaveName<<else>>recent unrelated activities<</if>>. <<if $PC.dick == 1>>Your formidable dick is three quarters hard,<<else>>Nude, that is, all except for the strap-on you were just using and haven't taken off yet,<</if>> and $activeSlave.slaveName is pointing right at it. $He knows exactly what $he's asking for and gives $his <<if $activeSlave.hips > 0>>broad<<elseif $activeSlave.hips > -1>>trim<<else>>narrow<</if>> hips a little wiggle to make it even more abundantly clear. <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> @@ -3734,14 +3734,14 @@ As another long week draws to a close, <<EventNameLink $activeSlave>> happens to <<if $PC.mother == $activeSlave.ID>> I gave birth to you, I ju<<s>>t can't compete, <<else>> - you're mother gave birth to you, I ju<<s>>t can't compete, and I don't even come clo<<s>>e to her look<<s>>, + your mother gave birth to you, I ju<<s>>t can't compete, and I don't even come clo<<s>>e to her look<<s>>, <</if>> - <<Master>>. It'<<s>> a little weird, i<<s>>n't it, for <<s>>uch an old woman to be with graced with such a lovely <<Master>>?" + <<Master>>. It'<<s>> a little weird, i<<s>>n't it, for <<s>>uch an old $woman to be with graced with such a lovely <<Master>>?" <</if>> <<case "old PC age difference">> -As another long week draws to a close, <<EventNameLink $activeSlave>> happens to walk past your office toward bed. There's nothing inherently abnormal about $his actions, but you do notice as $he steps past the doorway that an expression of worry and concern adorns her $activeSlave.skin face. When you call $him into your office, $his face visibly brightens up in an attempt to conceal $his obvious distress as $he comes before you. Notably, although $he stands still and patiently awaits further orders, you notice $he <<if canSee($activeSlave)>>never manages to meet your eyes<<else>>keeps $his sightless eyes downcast<</if>>. When you ask $him what's troubling $him, $his face plainly falls. +As another long week draws to a close, <<EventNameLink $activeSlave>> happens to walk past your office toward bed. There's nothing inherently abnormal about $his actions, but you do notice as $he steps past the doorway that an expression of worry and concern adorns $his $activeSlave.skin face. When you call $him into your office, $his face visibly brightens up in an attempt to conceal $his obvious distress as $he comes before you. Notably, although $he stands still and patiently awaits further orders, you notice $he <<if canSee($activeSlave)>>never manages to meet your eyes<<else>>keeps $his sightless eyes downcast<</if>>. When you ask $him what's troubling $him, $his face plainly falls. <br><br> <<if $activeSlave.mother != -1 && $activeSlave.father != -1>> "<<Master>>, you're <<s>>o old," $he <<say>>s penitently before smiling shyly in an attempt to insert some levity into $his confession. "It'<<s>> ju<<s>>t that I'm young enough to be your daughter, <<Master>>. It'<<s>> a little weird, i<<s>>n't it?" @@ -3878,7 +3878,7 @@ and flirting with passersby. Or $he would be, if $he weren't surrounded by a gro <<elseif $activeSlave.belly >= 150000>> "Oh my god, I didn't know a $girl could get //that// pregnant," <<elseif $activeSlave.dick > 6>> - "I didn't even know <<= $girl>>s could have dicks that bid," + "I didn't even know <<= $girl>>s could have dicks that big," <<elseif $activeSlave.weight > 130>> "$He looks so soft and pillowy," <<elseif $activeSlave.belly >= 1500>> @@ -4102,7 +4102,7 @@ You pass through your slaves' living area as some of them are starting their day <<else>> climbed out of $his comfortable bed. <</if>> -It's time for $him to start another strenuous day of carrying the weight of her +It's time for $him to start another strenuous day of carrying the weight of $his <<if $activeSlave.boobs > 45000>> arm-filling <<elseif $activeSlave.boobs > 25000>> @@ -4302,7 +4302,7 @@ You are working late tonight, poring over some particularly troublesome business <<elseif $PC.refreshmentType == 6>> tab of $PC.refreshment <</if>> -brought in to you. This time <<EventNameLink $activeSlave>> has been sent to deliver it. $He loves you, but fears you simultaneously. Such relationships were not uncommon before the advent of modern slavery, but they are especially prevalent in its wake, as fear has proven a highly effective control method for those slaveowners with the inclination and relative lack of conscience to utilize it as such. You hurriedly put the finishing touches on your work, eager to be done, and reach for your $PC.refreshment. $activeSlave.slaveName flinches at your sudden movement, taking a few frightened steps back, nearly dropping the serving tray and leaving you grasping at thin air. It was a simple fear response; $he didn't realize you were ready for your treat and instinctively thought you were reaching out to strike $him. Tears swell up in $his eyes as $he apologizes profusely. +brought in to you. This time <<EventNameLink $activeSlave>> has been sent to deliver it. $He loves you, but fears you simultaneously. Such relationships were not uncommon before the advent of modern slavery, but they are especially prevalent in its wake, as fear has proven a highly effective control method for those slaveowners with the inclination and relative lack of conscience to utilize it as such. You hurriedly put the finishing touches on your work, eager to be done, and then reach for your $PC.refreshment. $activeSlave.slaveName flinches at your sudden movement, taking a few frightened steps back, nearly dropping the serving tray and leaving you grasping at thin air. It was a simple fear response; $he didn't realize you were ready for your treat and instinctively thought you were reaching out to strike $him. Tears swell up in $his eyes as $he apologizes profusely. <<default>> <br>ERROR: bad RESS event $RESSevent @@ -4317,13 +4317,13 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<link "Explain $he's just becoming a woman">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that $he is just undergoing her first period, and that the pain $he is feeling is perfectly natural. + You tell $him that $he is just undergoing $his first period, and that the pain $he is feeling is perfectly natural. <<if !canTalk($activeSlave)>> - $He brings $his hands back to $his stomach, an elated look on her face. $He makes a gesture resembling a rounded belly. + $He brings $his hands back to $his stomach, an elated look on $his face. $He makes a gesture resembling a rounded belly. <<else>> "I-I'm a woman now? <<Master>>, that m-mean<<s>>, I can get pregnant now." $He trails off. <</if>> - Whether or not $he gets pregnant is for you to decide, but for now you tell her what $he should expect to change, both in and to $his body. $activeSlave.slaveName @@.mediumaquamarine;appreciates@@ you taking the time to explain her developing body. + Whether or not $he gets pregnant is for you to decide, but for now you tell $him what $he should expect to change, both in and to $his body. $activeSlave.slaveName @@.mediumaquamarine;appreciates@@ you taking the time to explain $his developing body. <<set $activeSlave.trust += 5>> <</replace>> <</link>> @@ -4337,7 +4337,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> "But I'm <<s>>till a child my<<s>>elf <<Master>>, I can't get pregnant yet!" <</if>> - You tell $him that prior to this week, that would have been true. However, now that $he has become fertile, it's time that $he learned what $his body was made for. You guide $him to the couch and tell $him to lie on her back so that you may take $him. $He breaks down when $he feels your cock enter her + You tell $him that prior to this week, that would have been true. However, now that $he has become fertile, it's time that $he learned what $his body was made for. You guide $him to the couch and tell $him to lie on $his back so that you may take $him. $He breaks down when $he feels your cock enter $his <<if $activeSlave.vagina == 0>> delightfully tight, virgin <<elseif $activeSlave.vagina == 1>> @@ -4349,13 +4349,13 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</if>> cunt. $His new urges cause $him to reach up to hug $himself close to you, <<if ($activeSlave.boobs < 600)>> - her modest breasts let her snuggle close to you, face-to-face, as you take $him. + $his modest breasts let $him snuggle close to you, face-to-face, as you take $him. <<elseif ($activeSlave.boobs < 10000)>> - her big tits form a soft cushion between you as you take $him. + $his big tits form a soft cushion between you as you take $him. <<else>> - her massive tits stop her from bringing $himself too close to you as you take $him. + $his massive tits stop $him from bringing $himself too close to you as you take $him. <</if>> - $He enjoys $himself immensely, but $he loses it again when $he feels your seed in $him, realizing that $he will find $himself swelling with your child over the coming months. $He has become @@.hotpink;more submissive@@ to your will now that her very first egg has been fertilized by her <<= WrittenMaster()>>. + $He enjoys $himself immensely, but $he loses it again when $he feels your seed in $him, realizing that $he will find $himself swelling with your child over the coming months. $He has become @@.hotpink;more submissive@@ to your will now that $his very first egg has been fertilized by $his <<= WrittenMaster()>>. <<set $activeSlave.devotion += 5, $activeSlave.preg = 1, $activeSlave.pregWeek = 1, $activeSlave.pregKnown = 1, $activeSlave.pregSource = -1>> <<set $activeSlave.pregType = setPregType($activeSlave)>> <<set WombImpregnate($activeSlave, $activeSlave.pregType, -1, 1)>> @@ -4363,7 +4363,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</replace>> <</link>><<if ($activeSlave.vagina == 0)>> //This option will take virginity//<</if>> <</if>> -<br><<link "Tell her $he'll just be taking it up the ass more">> +<br><<link "Tell $him $he'll just be taking it up the ass more">> <<EventNameDelink $activeSlave>> <<replace "#result">> In one swift motion, you pull out a chastity belt and lock it onto $him. $He gasps as $he feels it hug close to $his pussy. You explain that $he has just become a woman, and thus, will be taking it up the ass until you decide it's time for $him to become pregnant. @@ -4372,13 +4372,13 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> "You don't want me to get pregnant <<Master>>?" <</if>> - You bring her over to the couch, set her on your lap, and teasingly call $him a buttslut. Every so often you graze a finger around her chastity belt, noting how much $his body wants you in $him, but you only make it the center of attention once the poor over-aroused slave + You bring $him over to the couch, set $him on your lap, and teasingly call $him a buttslut. Every so often you graze a finger around $his chastity belt, noting how much $his body wants you in $him, but you only make it the center of attention once the poor over-aroused slave <<if !canTalk($activeSlave)>> begins to use piteous gestures to beg you abjectly to penetrate $him. <<else>> <<say>>s, "I can't take it any more, <<Master>>! Plea<<s>>e fuck me pregnant!" <</if>> - You snicker, but remind $him that no matter how much $he wants to be knocked up, her belt will direct all the dicks $he takes into $his rear. You line up and insert your <<if ($PC.dick == 0)>>strap-on<<else>>cock<</if>> with $his ass and begin fucking $him, all the while reminding $him that $he will not be getting pregnant. When $he finally orgasms, <<if ($PC.dick == 0)>>her unabashed enjoyment<<else>>the strength of her spasming sphincter<</if>> sends you over as well. $He's left in a confused haze; $his body tells $him to get pregnant, but you tell $him to take it anally. $He @@.hotpink;sides with your decision@@ and vows to be an anal whore for you. <<if $activeSlave.fetish == "none">>@@.coral;Overcoming her urges to become a mother via anal causes $him to become a buttslut.@@<<set $activeSlave.fetish = "buttslut", $activeSlave.fetishStrength = 10>><</if>> + You snicker, but remind $him that no matter how much $he wants to be knocked up, $his belt will direct all the dicks $he takes into $his rear. You line up and insert your <<if ($PC.dick == 0)>>strap-on<<else>>cock<</if>> with $his ass and begin fucking $him, all the while reminding $him that $he will not be getting pregnant. When $he finally orgasms, <<if ($PC.dick == 0)>>$his unabashed enjoyment<<else>>the strength of $his spasming sphincter<</if>> sends you over as well. $He's left in a confused haze; $his body tells $him to get pregnant, but you tell $him to take it anally. $He @@.hotpink;sides with your decision@@ and vows to be an anal whore for you. <<if $activeSlave.fetish == "none">>@@.coral;Overcoming $his urges to become a mother via anal causes $him to become a buttslut.@@<<set $activeSlave.fetish = "buttslut", $activeSlave.fetishStrength = 10>><</if>> <<set $activeSlave.devotion += 5, $activeSlave.vaginalAccessory = "chastity belt">> <<= AnalVCheck()>> <</replace>> @@ -4391,11 +4391,11 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<replace "#result">> You tell $him that $his body is preparing to be able to impregnate girls, and that what happens at night happens to all boys. Though as a slave, $he should consider $himself lucky to be allowed to keep $his male genitalia. <<if !canTalk($activeSlave)>> - $He brings $his hands to her growing erection, a bubble of precum forming on its tip. $He fondles $himself as $he ponders her new potency. + $He brings $his hands to $his growing erection, a bubble of precum forming on its tip. $He fondles $himself as $he ponders $his new potency. <<else>> "I-I can get girl<<s>> pregnant now? <<Master>>, that m-mean<<s>> I'll have to be more careful." $He trails off. <</if>> - You tell $him to keep her dick in check or risk losing it, before continuing to read off the other various changes that will occur in $him. $activeSlave.slaveName @@.mediumaquamarine;appreciates@@ you taking the time to explain her developing body. + You tell $him to keep $his dick in check or risk losing it, before continuing to read off the other various changes that will occur in $him. $activeSlave.slaveName @@.mediumaquamarine;appreciates@@ you taking the time to explain $his developing body. <<set $activeSlave.trust += 5>> <</replace>> <</link>> @@ -4403,13 +4403,13 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<if $PC.dick == 0>> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that $he is just becoming a potent woman, and as such, $he will need to learn that you are the dominant force in her life. + You tell $him that $he is just becoming a potent woman, and as such, $he will need to learn that you are the dominant force in $his life. <<if !canTalk($activeSlave)>> $His expression shifts to confusion. <<else>> - "What<<s>> that mean <<Master>>?" + "What doe<<s>> that mean <<Master>>?" <</if>> - You quickly approach and catch $him, forcing her <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid <<else>>distended <</if>><</if>>body face up onto the couch. $He <<if canSee($activeSlave)>>watches you carefully<<else>>listens to your movements<</if>> as you size up $his fully erect + You quickly approach and catch $him, forcing $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid <<else>>distended <</if>><</if>>body face up onto the couch. $He <<if canSee($activeSlave)>>watches you carefully<<elseif canHear($activeSlave)>>listens to your movements<<else>>waits with trepidation<</if>> as you size up $his fully erect <<if $activeSlave.dick == 1>> tiny dick. <<elseif $activeSlave.dick == 2>> @@ -4441,19 +4441,19 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> chest <</if>> - planting your moistening pussy over the $girl's face. You lean forward, teasing $his twitching cock, as you grind against her face. As $he begins to moan with lust, you quickly bind the base of $his penis, denying her release. You grind your cunt into her face, telling $him that YOU are the one who'll be orgasming here, not $him. Only once you have taught $him $his place by soaking her face in your cum do you release her dick and lean back to avoid the coming blast. Just undoing the binding is enough to set her over the edge, coating her <<if $activeSlave.bellyPreg >= 1500>>pregnancy<<else>>belly<</if>> in her virile sperm. You turn around and order the exhausted $girl to clean $himself up and go back to her assignment; $he @@.hotpink;complies meekly@@, understanding that having a potent penis is meaningless in her position.<<if $activeSlave.fetish == "none">>The next time $he walks past your office, you can't help notice the growing erection $he carries. @@.coral; Your dominating display has left $him craving domination.@@<<set $activeSlave.fetish = "submissive", $activeSlave.fetishStrength = 10>><</if>> + planting your moistening pussy over the $girl's face. You lean forward, teasing $his twitching cock, as you grind against her face. As $he begins to moan with lust, you quickly bind the base of $his penis, denying her release. You grind your cunt into $his face, telling $him that YOU are the one who'll be orgasming here, not $him. Only once you have taught $him $his place by soaking $his face in your cum do you release her dick and lean back to avoid the coming blast. Just undoing the binding is enough to set her over the edge, coating her <<if $activeSlave.bellyPreg >= 1500>>pregnancy<<else>>belly<</if>> in her virile sperm. You turn around and order the exhausted $girl to clean $himself up and go back to $his assignment; $he @@.hotpink;complies meekly@@, understanding that having a potent penis is meaningless in her position.<<if $activeSlave.fetish == "none">>The next time $he walks past your office, you can't help notice the growing erection $he carries. @@.coral; Your dominating display has left $him craving domination.@@<<set $activeSlave.fetish = "submissive", $activeSlave.fetishStrength = 10>><</if>> <<set $activeSlave.devotion += 5>> <</replace>> <<else>> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that $he is just becoming a potent woman, and as such, $he will need to learn that you are the dominant force in her life. + You tell $him that $he is just becoming a potent woman, and as such, $he will need to learn that you are the dominant force in $his life. <<if !canTalk($activeSlave)>> $His expression shifts to confusion. <<else>> - "What<<s>> that mean <<Master>>?" + "What doe<<s>> that mean <<Master>>?" <</if>> - You quickly approach and catch $him, forcing her <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid <<else>>distended <</if>><</if>>body face down onto the couch<<if $activeSlave.belly >= 100000>> as best you can<</if>>. $He <<if canSee($activeSlave)>>watches you carefully<<else>>listens to your movements<</if>> as you size up her fully erect + You quickly approach and catch $him, forcing $his <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid <<else>>distended <</if>><</if>>body face down onto the couch<<if $activeSlave.belly >= 100000>> as best you can<</if>>. $He <<if canSee($activeSlave)>>watches you carefully<<elseif canHear($activeSlave)>>listens to your movements<<else>>waits with trepidation<</if>> as you size up $his fully erect <<if $activeSlave.dick == 1>> tiny dick. <<elseif $activeSlave.dick == 2>> @@ -4477,7 +4477,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> hypertrophied dick <</if>> - You push $his face into the cushions as you mount her + You push $his face into the cushions as you mount $his <<if $activeSlave.butt > 6>> ridiculous <<elseif $activeSlave.butt > 5>> @@ -4495,7 +4495,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> flat <</if>> - butt sinking your cock deep into her <<if $activeSlave.anus == 0>>virgin<</if>> asspussy. You lean forward, running your hands across $his nipples<<if $activeSlave.belly >= 5000>> and _belly <<if $activeSlave.belly >= 3000>>pregnant <</if>>belly<</if>> as you move to tease her stiff prick. Between your dick in $his ass and your hand on $his cock, $he rapidly approaches her peak. Quickly, you bind the base of $his penis, denying her release and eliciting a long moan from the pent-up $girl. You begin thrusting hard, telling $him that YOU are the one who'll be orgasming here, not $him. Only once you have taught $him $his place by filling her asspussy with your cum do you allow her release. Just undoing the binding is enough to set her over the edge, coating the cushions<<if $activeSlave.belly >= 5000>> and the bottom of her _belly <<if $activeSlave.belly >= 3000>>pregnant <</if>>belly<</if>> in her virile sperm. You dismount and order the exhausted $girl to clean $himself and the couch up before going back to her assignment; $he @@.hotpink;complies meekly@@, understanding that having a potent penis is meaningless in her position.<<if $activeSlave.fetish == "none">>The next time $he walks past your office, you can't help notice the growing erection $he carries. @@.coral;Your dominating display has left her craving domination.@@<<set $activeSlave.fetish = "submissive", $activeSlave.fetishStrength = 10>><</if>> + butt sinking your cock deep into $his <<if $activeSlave.anus == 0>>virgin<</if>> asspussy. You lean forward, running your hands across $his nipples<<if $activeSlave.belly >= 5000>> and _belly <<if $activeSlave.belly >= 3000>>pregnant <</if>>belly<</if>> as you move to tease her stiff prick. Between your dick in $his ass and your hand on $his cock, $he rapidly approaches her peak. Quickly, you bind the base of $his penis, denying her release and eliciting a long moan from the pent-up $girl. You begin thrusting hard, telling $him that YOU are the one who'll be orgasming here, not $him. Only once you have taught $him $his place by filling her asspussy with your cum do you allow her release. Just undoing the binding is enough to set her over the edge, coating the cushions<<if $activeSlave.belly >= 5000>> and the bottom of $his _belly <<if $activeSlave.belly >= 3000>>pregnant <</if>>belly<</if>> in her virile sperm. You dismount and order the exhausted $girl to clean $himself and the couch up before going back to her assignment; $he @@.hotpink;complies meekly@@, understanding that having a potent penis is meaningless in her position.<<if $activeSlave.fetish == "none">>The next time $he walks past your office, you can't help notice the growing erection $he carries. @@.coral;Your dominating display has left her craving domination.@@<<set $activeSlave.fetish = "submissive", $activeSlave.fetishStrength = 10>><</if>> <<set $activeSlave.devotion += 5>> <</replace>> <</if>> @@ -4510,7 +4510,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> "What<<s>> that mean <<Master>>?" <</if>> - You quickly approach and catch $him, forcing her <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid <<else>>distended <</if>><</if>>body face up onto the couch. $He <<if canSee($activeSlave)>>watches you carefully<<else>>listens to your movements<</if>> as you size up her fully erect + You quickly approach and catch $him, forcing her <<if $activeSlave.belly >= 1500>><<if $activeSlave.bellyPreg >= 1500>>gravid <<else>>distended <</if>><</if>>body face up onto the couch. $He <<if canSee($activeSlave)>>watches you carefully<<elseif canHear($activeSlave)>>listens to your movements<<else>>waits with trepidation<</if>> as you size up her fully erect <<if $activeSlave.dick == 1>> tiny dick. <<elseif $activeSlave.dick == 2>> @@ -4534,9 +4534,9 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> hypertrophied dick <</if>> - You push her back down as you straddle $his cock, lining it up before lowering <<if $PC.belly >= 1500>>your pregnant body until $he delightfully penetrates you<<else>>yourself onto her needy prick<</if>>. You slowly ride her dick, instructing $him the proper way to thrust into you and how to adequately support your weight. Once $he gets the hand of things, you dismount and lie down on the couch, legs spread, beckoning her into you. $He gingerly inserts $his cock<<if $activeSlave.belly >= 100000>> while you do your best to manage her _belly stomach<</if>> and begins thrusting, slowly at first, before getting the hang of things and speeding up<<if $PC.dick == 1>>, your own neglected dick bobbing along to her thrusts<</if>>. As soon as you feel her beginning to tense you <<if $PC.pregKnown == 1>>tell her it's safe to cum in you, you're already pregnant<<else>>order $him to pull out<</if>>. The poor $girl is so caught up in her lust, $he can't stop thrusting. Before you can rectify this, $he pushes you over the edge and gushes deep into you as you climax<<if $PC.dick == 1>> and spray your own cum <<if $PC.belly >= 5000 && $activeSlave.belly >= 5000>>into the cramped space between your swollen bodies<<elseif $activeSlave.belly >= 100000>>across your belly and the underside of $hers<<else>>across $his chest<</if>><</if>>. $He gingerly pulls $himself from you, apologizes @@.hotpink;meekly@@ for losing control, and snuggles up next to you. Cumming in $his <<= WrittenMaster()>>'s pussy as $his first time builds @@.mediumaquamarine;a special bond@@ with you. + You push her back down as you straddle $his cock, lining it up before lowering <<if $PC.belly >= 1500>>your pregnant body until $he delightfully penetrates you<<else>>yourself onto her needy prick<</if>>. You slowly ride her dick, instructing $him the proper way to thrust into you and how to adequately support your weight. Once $he gets the hand of things, you dismount and lie down on the couch, legs spread, beckoning her into you. $He gingerly inserts $his cock<<if $activeSlave.belly >= 100000>> while you do your best to manage $his _belly stomach<</if>> and begins thrusting, slowly at first, before getting the hang of things and speeding up<<if $PC.dick == 1>>, your own neglected dick bobbing along to $his thrusts<</if>>. As soon as you feel her beginning to tense you <<if $PC.pregKnown == 1>>tell her it's safe to cum in you, you're already pregnant<<else>>order $him to pull out<</if>>. The poor $girl is so caught up in $his lust, $he can't stop thrusting. Before you can rectify this, $he pushes you over the edge and gushes deep into you as you climax<<if $PC.dick == 1>> and spray your own cum <<if $PC.belly >= 5000 && $activeSlave.belly >= 5000>>into the cramped space between your swollen bodies<<elseif $activeSlave.belly >= 100000>>across your belly and the underside of $hers<<else>>across $his chest<</if>><</if>>. $He gingerly pulls $himself from you, apologizes @@.hotpink;meekly@@ for losing control, and snuggles up next to you. Cumming in $his <<= WrittenMaster()>>'s pussy as $his first time builds @@.mediumaquamarine;a special bond@@ with you. <<if $PC.preg == 0 && $PC.pregWeek == 0>> - You aren't on contraceptives right now; her first time may be more fruitful than $he realizes. + You aren't on contraceptives right now; $his first time may be more fruitful than $he realizes. <</if>> <<set $activeSlave.devotion += 10, $activeSlave.trust += 20, $activeSlave.penetrativeCount++, $penetrativeTotal++>> <<if canImpreg($PC, $activeSlave)>> @@ -4550,23 +4550,23 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<replace "#result">> In one swift motion, one pull out a chastity cage and lock it onto $him. $He gasps as $he feels it hug close to her struggling erection. You explain that $he has just become potent, and thus, will be restricted until you feel differently. <<if !canTalk($activeSlave)>> - $He rubs a hand across her caged dick. + $He rubs a hand across $his caged dick. <<else>> "You don't want me to u<<s>>e my peni<<s>>, <<Master>>?" <</if>> - You bring her over to the couch, set her on your lap, and teasingly call $him a buttslut. Every so often you graze a finger around her chastity cage, torturing her dick and balls, but you only make it the center of attention once the poor over-aroused slave + You bring $him over to the couch, set her on your lap, and teasingly call $him a buttslut. Every so often you graze a finger around her chastity cage, torturing her dick and balls, but you only make it the center of attention once the poor over-aroused slave <<if !canTalk($activeSlave)>> begins to use piteous gestures to beg you abjectly to penetrate $him. <<else>> begs, "I can't take it any more, <<Master>>! Plea<<s>>e fuck me!" <</if>> - You snicker, but remind $him that $he has no say in her release. You line up and insert your <<if ($PC.dick == 0)>>strap-on<<else>>cock<</if>> up $his ass and begin slowly fucking $him, making sure to stimulate her prostate. When $he finally orgasms <<if ($PC.dick == 0)>>her unabashed enjoyment<<else>>the strength of her spasming sphincter<</if>> sends you over as well. $He's left in a confused haze; $his body tells $him to fuck, but you tell $him to get fucked. $He @@.hotpink;sides with your decision@@ and vows to be the one taking dick for you. <<if $activeSlave.fetish == "none">>@@.coral;Overcoming her urges to become a father via anal cause $him to become a buttslut.@@<<set $activeSlave.fetish = "buttslut", $activeSlave.fetishStrength = 10>><</if>> + You snicker, but remind $him that $he has no say in her release. You line up and insert your <<if ($PC.dick == 0)>>strap-on<<else>>cock<</if>> up $his ass and begin slowly fucking $him, making sure to stimulate her prostate. When $he finally orgasms <<if ($PC.dick == 0)>>her unabashed enjoyment<<else>>the strength of her spasming sphincter<</if>> sends you over as well. $He's left in a confused haze; $his body tells $him to fuck, but you tell $him to get fucked. $He @@.hotpink;sides with your decision@@ and vows to be the one taking dick for you. <<if $activeSlave.fetish == "none">>@@.coral;Overcoming $his urges to become a father via anal cause $him to become a buttslut.@@<<set $activeSlave.fetish = "buttslut", $activeSlave.fetishStrength = 10>><</if>> <<set $activeSlave.devotion += 5, $activeSlave.dickAccessory = "chastity">> <<= AnalVCheck()>> <</replace>> <</link>><<if ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>> <<if $seeExtreme == 1 && $activeSlave.indentureRestrictions <= 0>> -<br><<link "Geld $him to render her impotent again">> +<br><<link "Geld $him to render $him impotent again">> <<set $activeSlave.balls = 0, $activeSlave.health -= 10, $activeSlave.trust -= 20>> <<EventNameDelink $activeSlave>> <<replace "#result">> @@ -4580,7 +4580,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<link "Permit $him to continue">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You can't complain, it feels really good. You don't know where this skill was lurking in $his broken mind, but you're glad to see it put to good use. <<if $PC.dick == 1>>Just as you are about to cum, $he takes the full length of your dick down her throat, diligently taking in every drop of cum<<else>>Even as you buck with pleasure, $he diligently keeps $his tongue to your clit and pussy, making sure you don't go a moment without pleasure<</if>>. You don't have an orgasm like that every day, and as $he looks at you lovingly, you prod her with your still hard <<if $PC.dick == 1>>cock<<else>>clit<</if>> for round two. + You can't complain, it feels really good. You don't know where this skill was lurking in $his broken mind, but you're glad to see it put to good use. <<if $PC.dick == 1>>Just as you are about to cum, $he takes the full length of your dick down $his throat, diligently taking in every drop of cum<<else>>Even as you buck with pleasure, $he diligently keeps $his tongue to your clit and pussy, making sure you don't go a moment without pleasure<</if>>. You don't have an orgasm like that every day, and as $he looks at you lovingly, you prod $him with your still hard <<if $PC.dick == 1>>cock<<else>>clit<</if>> for round two. $He is @@.green;no longer mindbroken@@ and for whatever twisted reasons deeply and sincerely @@.hotpink;loves@@ and @@.mediumaquamarine;trusts@@ you. <<set $activeSlave.devotion = 90, $activeSlave.oldDevotion = 90, $activeSlave.trust = 90, $activeSlave.oldTrust = 90, $activeSlave.sexualQuirk = "caring", $activeSlave.fetish = "none", $activeSlave.fetishKnown = 1>> <<set _ress = $genePool.findIndex(function(s) { return s.ID == $activeSlave.ID; })>> @@ -4597,7 +4597,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <br><<link "Embrace $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You gently grab her face and stare deeply into her $activeSlave.eyeColor eyes. <<if canSee($activeSlave)>>They are full of life as opposed to their usual dullness<<else>>They are as dull as always, but that isn't her fault. $His facial expressions at the act tell you all you need to know<</if>>. You pull your wife into a tight embrace, her coming back to you is more than enough a gift, $he needn't do anything more for now. You pull the covers over the both of you and begin to doze off, smiling at the warmth cuddling ever closer to you. + You gently grab her face and stare deeply into $his $activeSlave.eyeColor eyes. <<if canSee($activeSlave)>>They are full of life as opposed to their usual dullness<<else>>They are as dull as always, but that isn't her fault. $His facial expressions at the act tell you all you need to know<</if>>. You pull your wife into a tight embrace, her coming back to you is more than enough a gift, $he needn't do anything more for now. You pull the covers over the both of you and begin to doze off, smiling at the warmth cuddling ever closer to you. $He is @@.green;no longer mindbroken@@ and thanks to your care deeply and sincerely @@.hotpink;loves@@ and @@.mediumaquamarine;trusts@@ you. <<set $activeSlave.devotion = 100, $activeSlave.oldDevotion = 100, $activeSlave.trust = 100, $activeSlave.oldTrust = 100, $activeSlave.sexualQuirk = "romantic", $activeSlave.fetish = "none", $activeSlave.fetishKnown = 1>> <<set $activeSlave.intelligence = $genePool[_ress].intelligence>> @@ -4621,7 +4621,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del You don the biggest strap-on in reach and viciously rape $him, roughly groping $his breasts while you do. Once you are satisfied with the stimulation, you thrust hard and deep one last time for good measure, only to have the dildo stay firmly lodged in $his cunt. You shrug, not your problem. <<if $activeSlave.vagina == 0>>$His once virgin pussy now is now @@.lime;thoroughly stretched@@ after your enjoyment of it. You watch $his body struggle to force the dildo out of her until it manages to do so with a wet thud.<<set $activeSlave.vagina++>><</if>> <</if>> - $He doesn't move from this position and barely reacts to your prodding; it seems her mind was still fragile, $he'll likely be back to her usual blank self when you awake. + $He doesn't move from this position and barely reacts to your prodding; it seems $his mind was still fragile, $he'll likely be back to her usual blank self when you awake. <<set $activeSlave.vaginalCount++>> <<set $vaginalTotal++>> <<if canImpreg($activeSlave, $PC)>> @@ -4636,7 +4636,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del You don the biggest strap-on in reach and viciously assrape $him, forcing her face into the sheets with one hand while roughly groping $his breasts with the other. Once you are satisfied with the stimulation, you thrust hard and deep one last time for good measure, only to have the dildo stay firmly lodged in $his ass. You shrug, not your problem. <<if $activeSlave.anus == 0>>$His once virgin hole now is now @@.lime;thoroughly stretched@@ after your enjoyment of it. You watch $his body struggle to force the dildo out of rear until it manages to do so with a soft thud.<<set $activeSlave.anus++>><</if>> <</if>> - $He doesn't move from this position and barely reacts to your prodding; it seems her mind was still fragile, $he'll likely be back to her usual blank self when you awake. + $He doesn't move from this position and barely reacts to your prodding; it seems $his mind was still fragile, $he'll likely be back to $his usual blank self when you awake. <<if canImpreg($activeSlave, $PC)>> <<= knockMeUp($activeSlave, 5, 1, -1, 1)>> <</if>> @@ -4653,7 +4653,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<set $activeSlave.oralCount++>> <<set $oralTotal++>> <</if>> - You pull the blanket back over yourself and nudge her off your bed; you'll deal with her in the morning<<if $fuckSlaves > 1>>, <<if $masterSuiteUpgradeLuxury == 2>>which will likely entail pulling her used body out of the fuckpit orgy<<else>>assuming one of your other toys doesn't get to her first<</if>><</if>>. + You pull the blanket back over yourself and nudge her off your bed; you'll deal with $him in the morning<<if $fuckSlaves > 1>>, <<if $masterSuiteUpgradeLuxury == 2>>which will likely entail pulling her used body out of the fuckpit orgy<<else>>assuming one of your other toys doesn't get to her first<</if>><</if>>. <<if $fuckSlaves > 1 && $masterSuiteUpgradeLuxury == 2>> <<if canDoAnal($activeSlave) && $activeSlave.anus > 0>> <<if $activeSlave.anus < 3>> @@ -4689,7 +4689,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <br><<link "Punish her for waking you">> <<EventNameDelink $activeSlave>> <<replace "#result">> - In one swift motion you throw aside the cover and backhand the $desc for waking you. $He falls to your side, where $he lays, unmoving. It seems her mind was still fragile, $he'll likely be back to her usual blank self when you awake. You pull the blanket back over yourself; you'll deal with her in the morning<<if $fuckSlaves > 1>>, <<if $masterSuiteUpgradeLuxury == 2>>which will likely entail pulling her used body out of the fuckpit orgy<<else>>assuming one of your other toys doesn't get to her first<</if>><</if>>. + In one swift motion you throw aside the cover and backhand the $desc for waking you. $He falls to your side, where $he lays, unmoving. It seems her mind was still fragile, $he'll likely be back to her usual blank self when you awake. You pull the blanket back over yourself; you'll deal with $him in the morning<<if $fuckSlaves > 1>>, <<if $masterSuiteUpgradeLuxury == 2>>which will likely entail pulling her used body out of the fuckpit orgy<<else>>assuming one of your other toys doesn't get to her first<</if>><</if>>. <<if $fuckSlaves > 1 && $masterSuiteUpgradeLuxury == 2>> <<if canDoAnal($activeSlave) && $activeSlave.anus > 0>> <<if $activeSlave.anus < 3>> @@ -4729,7 +4729,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<link "Fight $him off as much as you can">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You know your own body well, at least enough to be able to make it as difficult as possible for $him to use you. If $he were to loosen her grip by a little, you'd be quick to shake her off, but the position $he's got you in doesn't leave much room to fight back. When you start to tire, $he pushes you to the wall and starts rubbing $his + You know your own body well, at least enough to be able to make it as difficult as possible for $him to use you. If $he were to loosen her grip by a little, you'd be quick to shake $him off, but the position $he's got you in doesn't leave much room to fight back. When you start to tire, $he pushes you to the wall and starts rubbing $his <<if $activeSlave.dick == 1>> pathetic <<elseif $activeSlave.dick == 2>> @@ -4752,7 +4752,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> hypertrophied <</if>> - dick on your lower body, thrusting blindly around your belly, before lodging $himself between your thighs. You have a hard time fighting against her in your position, but you're not about to let her dominate you either. You continue trying to shake her off, making sure at the same time that your movements are as aggressive as possible to try and distract her with pain or pleasure. You feel her grip loosen as $his body tenses before pending orgasm, so you strongly push into $him, knocking her off balance and to the floor. $He spills $his seed all over $himself and you as you wrestle her into a chokehold. Now that you have $him restrained, it's time $he learned $his place. + dick on your lower body, thrusting blindly around your belly, before lodging $himself between your thighs. You have a hard time fighting against $him in your position, but you're not about to let $him dominate you either. You continue trying to shake $him off, making sure at the same time that your movements are as aggressive as possible to try and distract $him with pain or pleasure. You feel her grip loosen as $his body tenses before pending orgasm, so you strongly push into $him, knocking $him off balance and to the floor. $He spills $his seed all over $himself and you as you wrestle $him into a chokehold. Now that you have $him restrained, it's time $he learned $his place. <<set $mutinery = 2>> <br><br><span id="result2"> @@ -4774,7 +4774,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</link>> <br><<link "Mute $him">> <<replace "#result2">> - As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He tried to rape you, $he must be silenced. Restrained as $he is, the most $he can do is cry and beg. When $he awakens from surgery, $he realizes all you did was stop her from talking; @@.mediumaquamarine;what stops her from making another go at you?@@ Your other rebellious slaves see this a minor loss for a potentially huge gain and, if anything, @@.mediumaquamarine;become more defiant.@@ + As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He tried to rape you, $he must be silenced. Restrained as $he is, the most $he can do is cry and beg. When $he awakens from surgery, $he realizes all you did was stop $him from talking; @@.mediumaquamarine;what stops $him from making another go at you?@@ Your other rebellious slaves see this a minor loss for a potentially huge gain and, if anything, @@.mediumaquamarine;become more defiant.@@ <<set $activeSlave.trust += 5, $activeSlave.devotion -= 15, $activeSlave.voice = 0>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 10; } })>> <<set $cash -= $surgeryCost>> @@ -4791,7 +4791,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<if $activeSlave.vagina == -2>> <br><<link "Surgically alter $his gender">> <<replace "#result2">> - You ask her if $he enjoyed the last time $he used her dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces her new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for her @@.red;suffering.@@ You waste no time in shoving her against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into her virgin pussy. You use her until you are satisfied and toss $him to the floor to think about her new life. Every other rebellious slave is @@.gold;horrified by the example.@@ + You ask $him if $he enjoyed the last time $he used her dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces her new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for her @@.red;suffering.@@ You waste no time in shoving her against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into her virgin pussy. You use her until you are satisfied and toss $him to the floor to think about her new life. Every other rebellious slave is @@.gold;horrified by the example.@@ <<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1>> <<= VaginalVCheck()>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>> @@ -4801,16 +4801,16 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> <br><<link "Remove her male genitalia">> <<replace "#result2">> - You ask her if $he enjoyed the last time $he used her dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces her new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for her @@.red;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@ + You ask $him if $he enjoyed the last time $he used her dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces her new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for her @@.red;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@ <<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none">> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>> <<set $cash -= ($surgeryCost*2)>> <</replace>> <</link>> //Will cost <<print cashFormat(($surgeryCost*2))>>// <</if>> - <br><<link "Deny her from ever having satisfying sex again">> + <br><<link "Deny $him from ever having satisfying sex again">> <<replace "#result2">> - You ask her if $he enjoyed her last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces her new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for her @@.red;suffering.@@ You waste no time in shoving her against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his anus. As her arousal grows, $he realizes you not only took her dick, but her prostate as well. $He quickly find $himself desperate for release but lacking any way to do so. You watch her squirm in sexual frustration. This will be her new life. Every other rebellious slave is @@.gold;horrified by the example.@@ + You ask $him if $he enjoyed her last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces her new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for her @@.red;suffering.@@ You waste no time in shoving her against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his anus. As her arousal grows, $he realizes you not only took her dick, but her prostate as well. $He quickly find $himself desperate for release but lacking any way to do so. You watch her squirm in sexual frustration. This will be her new life. Every other rebellious slave is @@.gold;horrified by the example.@@ <<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0>> <<= AnalVCheck()>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>> @@ -4866,7 +4866,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</link>> <br><<link "Flog $him">> <<replace "#result2">> - You bind her naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to her crotch, while making sure $he will be in pain for days to come. Such a beating leaves her @@.red;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@ + You bind $his naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to $his crotch, while making sure $he will be in pain for days to come. Such a beating leaves $him @@.red;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@ <<set $activeSlave.trust -= 15>> <<set $activeSlave.health -= 15>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>> @@ -4874,7 +4874,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</link>> <br><<link "Mute $him">> <<replace "#result2">> - As you pull her limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He tried to rape you, $he must be silenced. Restrained as $he is, the most $he can do is cry and beg. When $he awakens from surgery, $he realizes all you did was stop her from talking; @@.mediumaquamarine;what stops her from making another go at you?@@ Your other rebellious slaves see this a minor loss for a potentially huge gain and, if anything, @@.mediumaquamarine;become more defiant.@@ + As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He tried to rape you, $he must be silenced. Restrained as $he is, the most $he can do is cry and beg. When $he awakens from surgery, $he realizes all you did was stop $him from talking; @@.mediumaquamarine;what stops $him from making another go at you?@@ Your other rebellious slaves see this a minor loss for a potentially huge gain and, if anything, @@.mediumaquamarine;become more defiant.@@ <<set $activeSlave.trust += 5, $activeSlave.devotion -= 15, $activeSlave.voice = 0>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 10; } })>> <<set $cash -= $surgeryCost>> @@ -4882,7 +4882,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</link>> //Will cost <<print cashFormat($surgeryCost)>>// <br><<link "Castrate $him">> <<replace "#result2">> - As you pull her limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces her new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for her @@.red;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@ + As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@ <<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10, $activeSlave.health -= 10>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } })>> <<set $cash -= $surgeryCost>> @@ -4891,7 +4891,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<if $activeSlave.vagina == -2>> <br><<link "Surgically alter $his gender">> <<replace "#result2">> - You ask her if $he enjoyed the last time $he used her dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces her new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for her @@.red;suffering.@@ You waste no time in shoving her against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into her virgin pussy. You use her until you are satisfied and toss $him to the floor to think about her new life. Every other rebellious slave is @@.gold;horrified by the example.@@ + You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@ <<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1>> <<= VaginalVCheck()>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>> @@ -4901,7 +4901,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> <br><<link "Remove $his male genitalia">> <<replace "#result2">> - You ask her if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@ + You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@ <<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none">> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>> <<set $cash -= ($surgeryCost*2)>> @@ -4910,7 +4910,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</if>> <br><<link "Deny $him from ever having satisfying sex again">> <<replace "#result2">> - You ask her if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving her against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his anus. As $his arousal grows, $he realizes you not only took her dick, but $his prostate as well. $He quickly find $himself desperate for release but lacking any way to do so. You watch her squirm in sexual frustration. This will be $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@ + You ask $him if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his anus. As $his arousal grows, $he realizes you not only took $his dick, but $his prostate as well. $He quickly find $himself desperate for release but lacking any way to do so. You watch $him squirm in sexual frustration. This will be $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@ <<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0>> <<= AnalVCheck()>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>> @@ -4924,7 +4924,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <br><<link "Fake playing along">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You start removing your top and putting on a show of seducing your slave, dropping to your knees while looking doe eyed at $him. By sucking her off, you'll probably get $him to lower their guard enough to get the upper hand. You take $his + You start removing your top and putting on a show of seducing your slave, dropping to your knees while looking doe eyed at $him. By sucking $him off, you'll probably get $him to lower their guard enough to get the upper hand. You take $his <<if $activeSlave.dick == 1>> pathetic <<elseif $activeSlave.dick == 2>> @@ -4947,7 +4947,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> hypertrophied <</if>> - dick inside your<<if $PC.career == "escort" || $PC.career == "servant">> expert<</if>> mouth. You diligently suck until you feel $him begin to tense up; this is your chance. You clamp down on $his cock while simultaneously punching her in the balls. $He howls in pain, until you headbutt $him in the stomach and knock the wind out of $him. You quickly pull her into an arm lock and force her over your desk. Now that you have her restrained, it's time $he learned her place; after you've gotten the taste of slut out of your mouth, that is. + dick inside your<<if $PC.career == "escort" || $PC.career == "servant">> expert<</if>> mouth. You diligently suck until you feel $him begin to tense up; this is your chance. You clamp down on $his cock while simultaneously punching $him in the balls. $He howls in pain, until you headbutt $him in the stomach and knock the wind out of $him. You quickly pull $him into an arm lock and force $him over your desk. Now that you have $him restrained, it's time $he learned $his place; after you've gotten the taste of slut out of your mouth, that is. <<set $mutinery = 2>> <br><br><span id="result2"> @@ -4961,7 +4961,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</link>> <br><<link "Flog $him">> <<replace "#result2">> - You bind her naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to her crotch, while making sure $he will be in pain for days to come. Such a beating leaves her @@.red;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@ + You bind $his naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to $his crotch, while making sure $he will be in pain for days to come. Such a beating leaves $him @@.red;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@ <<set $activeSlave.trust -= 15>> <<set $activeSlave.health -= 15>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>> @@ -4969,7 +4969,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</link>> <br><<link "Mute $him">> <<replace "#result2">> - As you pull her limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He tried to rape you, $he must be silenced. Restrained as $he is, the most $he can do is cry and beg. When $he awakens from surgery, $he realizes all you did was stop her from talking; @@.mediumaquamarine;what stops her from making another go at you?@@ Your other rebellious slaves see this a minor loss for a potentially huge gain and, if anything, @@.mediumaquamarine;become more defiant.@@ + As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He tried to rape you, $he must be silenced. Restrained as $he is, the most $he can do is cry and beg. When $he awakens from surgery, $he realizes all you did was stop $him from talking; @@.mediumaquamarine;what stops $him from making another go at you?@@ Your other rebellious slaves see this a minor loss for a potentially huge gain and, if anything, @@.mediumaquamarine;become more defiant.@@ <<set $activeSlave.trust += 5, $activeSlave.devotion -= 15, $activeSlave.voice = 0>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 10; } })>> <<set $cash -= $surgeryCost>> @@ -4977,7 +4977,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</link>> //Will cost <<print cashFormat($surgeryCost)>>// <br><<link "Castrate $him">> <<replace "#result2">> - As you pull her limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces her new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for her @@.red;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@ + As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@ <<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10, $activeSlave.health -= 10>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } })>> <<set $cash -= $surgeryCost>> @@ -4986,7 +4986,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<if $activeSlave.vagina == -2>> <br><<link "Surgically alter $his gender">> <<replace "#result2">> - You ask her if $he enjoyed the last time $he used her dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces her new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for her @@.red;suffering.@@ You waste no time in shoving her against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into her virgin pussy. You use her until you are satisfied and toss $him to the floor to think about her new life. Every other rebellious slave is @@.gold;horrified by the example.@@ + You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@ <<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1>> <<= VaginalVCheck()>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>> @@ -4996,7 +4996,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> <br><<link "Remove $his male genitalia">> <<replace "#result2">> - You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces her new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@ + You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;horrified by the example.@@ <<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.foreskin = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.dickAccessory = "none">> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>> <<set $cash -= ($surgeryCost*2)>> @@ -5005,7 +5005,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</if>> <br><<link "Deny $him from ever having satisfying sex again">> <<replace "#result2">> - You ask $him if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces her new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for her @@.red;suffering.@@ You waste no time in shoving her against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his anus. As her arousal grows, $he realizes you not only took her dick, but her prostate as well. $He quickly find $himself desperate for release but lacking any way to do so. You watch her squirm in sexual frustration. This will be her new life. Every other rebellious slave is @@.gold;horrified by the example.@@ + You ask $him if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his anus. As $his arousal grows, $he realizes you not only took $his dick, but $his prostate as well. $He quickly find $himself desperate for release but lacking any way to do so. You watch $him squirm in sexual frustration. This will be $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@ <<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0>> <<= AnalVCheck()>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>> @@ -5031,7 +5031,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</link>> <br><<link "Flog $him">> <<replace "#result2">> - You bind $his naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to her crotch, while making sure $he will be in pain for days to come. Such a beating leaves her @@.red;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@ + You bind $his naked body to the wall in preparation for a good beating. Going against one's master is bad, but going against you is even worse. You thoroughly strike $him, showering extra attention to $his crotch, while making sure $he will be in pain for days to come. Such a beating leaves $him @@.red;in agonizing pain@@ and makes a clear example to $him and all your other rebellious slaves that @@.gold;you are not to be trifled with.@@ <<set $activeSlave.trust -= 15>> <<set $activeSlave.health -= 15>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>> @@ -5039,7 +5039,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</link>> <br><<link "Mute $him">> <<replace "#result2">> - As you pull her limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He tried to rape you, $he must be silenced. Restrained as $he is, the most $he can do is cry and beg. When $he awakens from surgery, $he realizes all you did was stop her from talking; @@.mediumaquamarine;what stops $him from making another go at you?@@ Your other rebellious slaves see this a minor loss for a potentially huge gain and, if anything, @@.mediumaquamarine;become more defiant.@@ + As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He tried to rape you, $he must be silenced. Restrained as $he is, the most $he can do is cry and beg. When $he awakens from surgery, $he realizes all you did was stop $him from talking; @@.mediumaquamarine;what stops $him from making another go at you?@@ Your other rebellious slaves see this a minor loss for a potentially huge gain and, if anything, @@.mediumaquamarine;become more defiant.@@ <<set $activeSlave.trust += 5, $activeSlave.devotion -= 15, $activeSlave.voice = 0>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 10; } })>> <<set $cash -= $surgeryCost>> @@ -5047,7 +5047,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</link>> //Will cost <<print cashFormat($surgeryCost)>>// <br><<link "Castrate $him">> <<replace "#result2">> - As you pull her limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces her new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for her @@.red;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@ + As you pull $his limp body to the remote surgery, you notice $he understands what $he has done and begs you to reconsider your decision; but your mind is set. $He had the balls to try and rape you, and now $he won't. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new life; @@.mediumorchid;$he'll never get hard again@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ Every other rebellious slave is @@.gold;mortified by the example.@@ <<set $activeSlave.trust -= 20, $activeSlave.devotion -= 10, $activeSlave.health -= 10>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 5; } })>> <<set $cash -= $surgeryCost>> @@ -5056,7 +5056,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<if $activeSlave.vagina == -2>> <br><<link "Surgically alter $his gender">> <<replace "#result2">> - You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving her against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use her until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@ + You ask $him if $he enjoyed the last time $he used $his dick and if it was worth crossing you, because it will not happen again. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a shemale@@ and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his virgin pussy. You use $him until you are satisfied and toss $him to the floor to think about $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@ <<set $activeSlave.trust -= 30, $activeSlave.devotion -= 25, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.balls = 0, $activeSlave.scrotum = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 1>> <<= VaginalVCheck()>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>> @@ -5075,7 +5075,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</if>> <br><<link "Deny $him from ever having satisfying sex again">> <<replace "#result2">> - You ask her if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces her new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for her @@.red;suffering.@@ You waste no time in shoving her against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his anus. As her arousal grows, $he realizes you not only took her dick, but her prostate as well. $He quickly find $himself desperate for release but lacking any way to do so. You watch her squirm in sexual frustration. This will be her new life. Every other rebellious slave is @@.gold;horrified by the example.@@ + You ask $him if $he enjoyed $his last orgasm, because $he won't be getting any more. Restrained as $he is, the most $he can do is cry and beg. Once $he comes to after the surgery, $he faces $his new body; @@.mediumorchid;$he's now a surgical null,@@ though $he retains $his balls, and $he's @@.gold;the only one to blame@@ for $his @@.red;suffering.@@ You waste no time in shoving $him against the wall and forcing your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> into $his anus. As $his arousal grows, $he realizes you not only took $his dick, but $his prostate as well. $He quickly find $himself desperate for release but lacking any way to do so. You watch $him squirm in sexual frustration. This will be $his new life. Every other rebellious slave is @@.gold;horrified by the example.@@ <<set $activeSlave.trust -= 50, $activeSlave.devotion -= 30, $activeSlave.health -= 20, $activeSlave.dick = 0, $activeSlave.prostate = 0, $activeSlave.dickAccessory = "none", $activeSlave.vagina = 0, $activeSlave.ovaries = 0, $activeSlave.clit = 0, $activeSlave.labia = 0>> <<= AnalVCheck()>> <<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust -= 15; } })>> @@ -5092,7 +5092,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<EventNameDelink $activeSlave>> <<replace "#result">> <<if $arcologies[0].FSPhysicalIdealist != "unset">> - You struggle underneath $his grip and manage to wriggle your arms free. You grab the amorous bull and effortless flip her off of you. $He might be strong, but you are a chiseled goddess. You <<if $PC.dick == 0>>grab your biggest strap-on<<else>>stroke your growing erection<</if>> as $he struggles to right $himself, catching $his hips as $he tries to escape. You show no mercy as you force yourself into her <<if $activeSlave.anus == 0>>virgin<</if>> ass and viciously fuck $him like $he intended to do to you. You savor the sight of your every thrust against her prostate forcing spurts of precum out her gigantic, throbbing erection. You pick up the pace as $he climaxes, soaking the sheets beneath $him; $he's not getting out of this until you are satisfied. By the end of things, the master suite reeks of fresh cum and $activeSlave.slaveName's twitching body is the center piece of $his semen puddle. The sheets will definitely need a changing, you note, as her semi-erect cock twitches and a thick rope of jism sprays forth. + You struggle underneath $his grip and manage to wriggle your arms free. You grab the amorous bull and effortlessly flip $him off of you. $He might be strong, but you are a chiseled goddess. You <<if $PC.dick == 0>>grab your biggest strap-on<<else>>stroke your growing erection<</if>> as $he struggles to right $himself, catching $his hips as $he tries to escape. You show no mercy as you force yourself into $his <<if $activeSlave.anus == 0>>virgin<</if>> ass and viciously fuck $him like $he intended to do to you. You savor the sight of your every thrust against $his prostate forcing spurts of precum out $his gigantic, throbbing erection. You pick up the pace as $he climaxes, soaking the sheets beneath $him; $he's not getting out of this until you are satisfied. By the end of things, the master suite reeks of fresh cum and $activeSlave.slaveName's twitching body is the center piece of $his semen puddle. The sheets will definitely need a changing, you note, as $his semi-erect cock twitches and a thick rope of jism sprays forth. <<= AnalVCheck(5)>> <<else>> You struggle underneath $his grip and manage to wriggle your arms free. You push at the amorous bull and attempt to lift the heavy $girl off you. $activeSlave.slaveName takes this poorly and rams $his gigantic dick straight into your vagina and through your cervix. You pass out from the pain. @@ -5106,7 +5106,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <br><<link "Wait for an chance to escape">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He is far stronger than you expected and has you trapped in a compromising position. You've seen $activeSlave.slaveName fuck before; $he's a quick shot, only in it to get $his mate pregnant. $He cums so hard $he nearly blacks out; that will be your best chance to escape $him. You question your choice as $his gigantic dick pokes at your crotch, eager to find the egg at the end of the tunnel. $He lacks even the basic understanding of foreplay, you realize, as $he drives $his cock deep into your pussy. You groan with pain at the sheer size of the rod stretching out your poor hole and struggle to hold back the tears once $he starts thrusting. There is no pleasure for you here as $he batters your cervix; should $he force through it, you may not be able to throw her off. With a loud grunt, $he does just that. $He may be deep seated now, but you aren't going to give up. You feel her tense up; now's your chance! As $he climaxes, you slip a leg around $his side and push her with all your might. $He flops over, pulling out as $he spurts $his massive load and nailing you right in the face. You spit the jism out of your mouth and quickly restrain the dribbling bull. + $He is far stronger than you expected and has you trapped in a compromising position. You've seen $activeSlave.slaveName fuck before; $he's a quick shot, only in it to get $his mate pregnant. $He cums so hard $he nearly blacks out; that will be your best chance to escape $him. You question your choice as $his gigantic dick pokes at your crotch, eager to find the egg at the end of the tunnel. $He lacks even the basic understanding of foreplay, you realize, as $he drives $his cock deep into your pussy. You groan with pain at the sheer size of the rod stretching out your poor hole and struggle to hold back the tears once $he starts thrusting. There is no pleasure for you here as $he batters your cervix; should $he force through it, you may not be able to throw $him off. With a loud grunt, $he does just that. $He may be deep seated now, but you aren't going to give up. You feel $him tense up; now's your chance! As $he climaxes, you slip a leg around $his side and push $him with all your might. $He flops over, pulling out as $he spurts $his massive load and nailing you right in the face. You spit the jism out of your mouth and quickly restrain the dribbling bull. <br><br> Panting, you look over the damage: Your pussy is gaping, there is semen everywhere, and given the steady flow from you, $he likely got some of that ejaculation in you. You sigh to yourself, knowing you have nobody to blame but yourself for this. $He's a breeding bull and you, a fertile woman. $He only did what $he was conditioned for; the blame is on you for ignoring the warning signs and not taking the proper precautions. Still, $he knew you were fertile and went right for the prize; it would be wise to assume you've been impregnated. <<= knockMeUp($PC, 20, 0, $activeSlave.ID, 1)>> @@ -5126,7 +5126,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<set _c = $slaveIndices[$Concubine.ID]>> <<set $slaves[_c].health -= 40, $slaves[_c].trust -= 5>> <<else>> - and cums directly into your exposed womb. $He backs off, possibly startled by the shouting, giving you the chance to slip away to safety. You sigh to yourself, knowing you have nobody to blame but yourself for this. $He's a breeding bull and you a fertile woman. $He only did what $he was conditioned for; the fault is on you for ignoring the warning signs and not taking the proper precautions. Still, $he knew you were fertile and went right for the prize; it would be wise to assume $he's done her job well. + and cums directly into your exposed womb. $He backs off, possibly startled by the shouting, giving you the chance to slip away to safety. You sigh to yourself, knowing you have nobody to blame but yourself for this. $He's a breeding bull and you a fertile woman. $He only did what $he was conditioned for; the fault is on you for ignoring the warning signs and not taking the proper precautions. Still, $he knew you were fertile and went right for the prize; it would be wise to assume $he's done $his job well. <<= knockMeUp($PC, 50, 0, $activeSlave.ID)>> <<set $activeSlave.penetrativeCount++, $penetrativeTotal++>> <</if>> @@ -5135,9 +5135,9 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <br><<link "Take it like a good girl">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He is far stronger than you expected and has you trapped in a compromising position. You've seen $activeSlave.slaveName fuck before; $he's a quick shot, only in it to get her mate pregnant. You question what you are thinking as her gigantic dick pokes at your crotch, eager to find the egg at the end of the tunnel. $He lacks even the basic understanding of foreplay, you realize, as $he drives $his cock deep into your pussy. You groan with pain at the sheer size of the rod stretching out your poor hole and struggle to hold back the tears once $he starts thrusting. There is no pleasure for you here as $he batters your cervix; you barely stop yourself from screaming out as $he slams through your final defense and cums directly into your exposed womb. + $He is far stronger than you expected and has you trapped in a compromising position. You've seen $activeSlave.slaveName fuck before; $he's a quick shot, only in it to get $his mate pregnant. You question what you are thinking as $his gigantic dick pokes at your crotch, eager to find the egg at the end of the tunnel. $He lacks even the basic understanding of foreplay, you realize, as $he drives $his cock deep into your pussy. You groan with pain at the sheer size of the rod stretching out your poor hole and struggle to hold back the tears once $he starts thrusting. There is no pleasure for you here as $he batters your cervix; you barely stop yourself from screaming out as $he slams through your final defense and cums directly into your exposed womb. <br><br> - You immediately realize you've made a mistake; you feel full already and $he's still cumming. You watch in horror as your belly steadily swells with seed, unable to flow out thanks to your obstructed cunt. $activeSlave.slaveName grunts as $he pushes out the last of her load before pulling out and releasing you. You try to get up, but the experience has left you drained, so you are left hoping that her instincts tell her $he's done her job. $He lowers her nose to your violated pussy and sniffs; unsatisfied, $he moves back into position to properly seed you this time. You black out as her second load joins the first, only to awaken sometime later + You immediately realize you've made a mistake; you feel full already and $he's still cumming. You watch in horror as your belly steadily swells with seed, unable to flow out thanks to your obstructed cunt. $activeSlave.slaveName grunts as $he pushes out the last of $his load before pulling out and releasing you. You try to get up, but the experience has left you drained, so you are left hoping that $his instincts tell $him $he's done $his job. $He lowers $his nose to your violated pussy and sniffs; unsatisfied, $he moves back into position to properly seed you this time. You black out as $his second load joins the first, only to awaken sometime later <<if $Concubine != 0>> <<setLocalPronouns $Concubine 2>> with $Concubine.slaveName trying _his2 best to drain your swollen belly. @@ -5175,7 +5175,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<if canTalk($activeSlave)>> "<<S>>o the diet i<<s>> working well, <<Master>>? That'<<s>> good, I <<s>>uppo<<s>>e. I'm ju<<s>>t a bit <<sh>>ocked at how hone<<s>>t you were, people u<<s>>ually try to dodge that que<<s>>tion or outright lie." <<else>> - $He smiles before explaining $he knows you want her plumper and that $he accepts it, but is surprised by your honesty to such a question. + $He smiles before explaining $he knows you want $him plumper and that $he accepts it, but is surprised by your honesty to such a question. <</if>> $He leaves your office @@.mediumaquamarine;slightly more trusting@@ for someone who's life is now entirely out of their hands. <<set $activeSlave.trust++>> @@ -5185,15 +5185,15 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> $His eyes begin to water as $he struggles not to sob but $he quickly loses composure and hastily flees your gaze, likely to the cafeteria. <</if>> - $He may have run out of your office @@.gold;in tears,@@ but $he'll quickly come to terms with all that matters is @@.hotpink;your judgment, not $his.@@ Even more so when $he realizes the resuliting stress eating only @@.lime;filled her out more.@@ + $He may have run out of your office @@.gold;in tears,@@ but $he'll quickly come to terms with all that matters is @@.hotpink;your judgment, not $his.@@ Even more so when $he realizes the resuliting stress eating only @@.lime;filled $him out more.@@ <<set $activeSlave.devotion += 7, $activeSlave.trust -= 5, $activeSlave.weight += 5>> <<elseif $activeSlave.behavioralFlaw == "anorexic">> <<if canTalk($activeSlave)>> "I'm <<s>>o di<<s>>gu<<s>>ting, <<Master>>, I'm glad you <<s>>ee it too. I was <<s>>o <<c>>ertain you'd lie to me... <<S>>orry to have wa<<s>>ted your time." $He <<else>> - $His face lightens at your <<if canHear($activeSlave)>>words<<else>>affirmation<</if>>. It seems you told $him just what $he wanted to hear<<if !canHear($activeSlave)>>, so to speak<</if>>. $He gives her thanks and + $His face lightens at your <<if canHear($activeSlave)>>words<<else>>affirmation<</if>>. It seems you told $him just what $he wanted to hear<<if !canHear($activeSlave)>>, so to speak<</if>>. $He gives $his thanks and <</if>> - leaves your office with @@.hotpink;slightly more faith@@ in her <<= WrittenMaster()>>. + leaves your office with @@.hotpink;slightly more faith@@ in $his <<= WrittenMaster()>>. <<set $activeSlave.devotion += 5>> <<else>> <<if canTalk($activeSlave)>> @@ -5213,7 +5213,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<if canTalk($activeSlave)>> "I know you want me to gain weight, <<Master>>, <<s>>o you don't need to <<s>>pare my feeling<<s>>. It'<<s>> a ni<<c>>e ge<<s>>ture, though." <<else>> - $He frowns before explaining $he knows you want her plumper and that $he accepts it, but does appreciate the thought. + $He frowns before explaining $he knows you want $him plumper and that $he accepts it, but does appreciate the thought. <</if>> $He leaves your office in @@.hotpink;a good mood@@ for someone being forced to gain weight. <<set $activeSlave.devotion++>> @@ -5221,7 +5221,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<if canTalk($activeSlave)>> "It'<<s>> okay <<Master>>, you don't have to lie to me. I know thi<<s>> i<<s>> my fault, but thank you for trying to cheer me up." <<else>> - $He frowns before explaining $he has only $himself to blame for her weight, but does appreciate the thought. + $He frowns before explaining $he has only $himself to blame for $his weight, but does appreciate the thought. <</if>> $He leaves your office in @@.hotpink;good spirits@@ for nearly no effort. <<set $activeSlave.devotion++>> @@ -5234,7 +5234,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del $He runs out of your office @@.mediumorchid;in tears.@@ It's likely that $he'll @@.gold;dwell on your response@@ for some time. <<set $activeSlave.devotion -= 10, $activeSlave.trust -= 10>> <<else>> - Of course $he hasn't gained any weight. $He ponders your response for a moment before replying <<if canTalk($activeSlave)>>"Thank you, <<Master>>"<<else>>with a smile<</if>> and leaving your office with a @@.hotpink;happy spring in her step.@@ Crisis averted. + Of course $he hasn't gained any weight. $He ponders your response for a moment before replying <<if canTalk($activeSlave)>>"Thank you, <<Master>>"<<else>>with a smile<</if>> and leaving your office with a @@.hotpink;happy spring in $his step.@@ Crisis averted. <<set $activeSlave.devotion++>> <</if>> <</replace>> @@ -5247,7 +5247,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <br><<link "Send $him to the gym">> <<replace "#result">> <<EventNameDelink $activeSlave>> - $His face <<if $activeSlave.behavioralQuirk == "fitness">>brightens<<else>>sours<</if>> as you instruct $him to spend her free time on the treadmill if $he is so bothered by it, <<if $activeSlave.behavioralQuirk == "fitness">>and by week's end, $he's @@.hotpink;in a fantastic mood.@@<<else>>but by week's end, $he's singing a different tune.<</if>> Not only is $he @@.lime;several sizes smaller@@ than her expectations, but $he @@.mediumaquamarine;looks and feels great,@@ something $he just can't help but @@.hotpink;show off@@ as $he struts past your office. + $His face <<if $activeSlave.behavioralQuirk == "fitness">>brightens<<else>>sours<</if>> as you instruct $him to spend $his free time on the treadmill if $he is so bothered by it, <<if $activeSlave.behavioralQuirk == "fitness">>and by week's end, $he's @@.hotpink;in a fantastic mood.@@<<else>>but by week's end, $he's singing a different tune.<</if>> Not only is $he @@.lime;several sizes smaller@@ than $his expectations, but $he @@.mediumaquamarine;looks and feels great,@@ something $he just can't help but @@.hotpink;show off@@ as $he struts past your office. <<if $activeSlave.behavioralQuirk == "fitness">> <<set $activeSlave.devotion += 10, $activeSlave.trust += 10>> <<else>> @@ -5459,7 +5459,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<link "Apply lotion liberally">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You reach down to take $his hands, and pull her up to stand in front of you before crushing her in a frankly sexual embrace. Taking charge of the lotion, you apply it to your hands and start with her face. $He submits to your close attention, even closing $his eyes so you can get her eyelids, only a slight quickening of breath betraying her intensity of feeling at having you do this. You take your time, which turns into exquisite sexual torture when you finally reach her <<if $activeSlave.boobs > 2000>>incredible breasts, which stand out so far in front of $him that you have to reach around their mass rather inelegantly<<elseif $activeSlave.boobs > 800>>heavy breasts<<else>>lovely chest<</if>>. When your warm, moist hands <<if $activeSlave.nipples != "fuckable">>rub<<else>>slip into<</if>> her<<if $activeSlave.lactation > 0>> milky<</if>> nipples, $he cannot suppress a moan. You take pity, take $his hands, guide them to the lotion bottle, and coat them generously. Then, you place $his hands in yours and move them to between $his legs, manipulating them like a music teacher guiding a pupil's hands on an instrument, guiding her in gentle masturbation. You go back to applying lotion to the rest of $his body, enjoying the slave's intense pleasure. When you've covered every inch of $him, you hug her close, returning your hands to $his nipples <<if $PC.dick == 1>>and pushing your rock-hard prick in between her well-lubricated thighs<<if $PC.vagina == 1>>, <</if>><</if>><<if $PC.vagina == 1>>after guiding one of $hers around behind $him to see to your pussy<</if>>. $He quickens her pace<<if canSee($activeSlave)>> and raises her gaze to the mirror, seeing her magnificently nude, $activeSlave.skin skin flushed with arousal<<else>>, feeling her magnificently nude, $activeSlave.skin skin flush with arousal<</if>> as her + You reach down to take $his hands, and pull her up to stand in front of you before crushing $him in a frankly sexual embrace. Taking charge of the lotion, you apply it to your hands and start with her face. $He submits to your close attention, even closing $his eyes so you can get her eyelids, only a slight quickening of breath betraying her intensity of feeling at having you do this. You take your time, which turns into exquisite sexual torture when you finally reach her <<if $activeSlave.boobs > 2000>>incredible breasts, which stand out so far in front of $him that you have to reach around their mass rather inelegantly<<elseif $activeSlave.boobs > 800>>heavy breasts<<else>>lovely chest<</if>>. When your warm, moist hands <<if $activeSlave.nipples != "fuckable">>rub<<else>>slip into<</if>> her<<if $activeSlave.lactation > 0>> milky<</if>> nipples, $he cannot suppress a moan. You take pity, take $his hands, guide them to the lotion bottle, and coat them generously. Then, you place $his hands in yours and move them to between $his legs, manipulating them like a music teacher guiding a pupil's hands on an instrument, guiding $him in gentle masturbation. You go back to applying lotion to the rest of $his body, enjoying the slave's intense pleasure. When you've covered every inch of $him, you hug her close, returning your hands to $his nipples <<if $PC.dick == 1>>and pushing your rock-hard prick in between her well-lubricated thighs<<if $PC.vagina == 1>>, <</if>><</if>><<if $PC.vagina == 1>>after guiding one of $hers around behind $him to see to your pussy<</if>>. $He quickens her pace<<if canSee($activeSlave)>> and raises her gaze to the mirror, seeing her magnificently nude, $activeSlave.skin skin flushed with arousal<<else>>, feeling her magnificently nude, $activeSlave.skin skin flush with arousal<</if>> as her <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> <<if canDoAnal($activeSlave)>> eager fingering of $his anus turn frantic. @@ -5568,7 +5568,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<replace "#result">> You slide up behind $him and run a possessive hand down<<if $activeSlave.belly >= 1500>> her swollen midriff down<</if>> to finger her pussylips. $He compliantly cocks $his hips backward for you, and is surprised to find a couple of warm, lubricated fingers rather than <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> sliding into her ready cunt. <<if $activeSlave.vagina > 2>> - $He moans when you add a third, and grunts when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and relaxes completely. The wide part of your hand, at the knuckles, squeezes into her without much trouble, and $he lets out a huge sigh. When you start to fuck her huge cunt with your hand, though, $he collapses <<if $activeSlave.belly >= 300000>>onto her _belly belly<<else>>to $his knees<</if>>, whining and begging nonverbally. You kick the lotion towards $his hand; $he gets the message and starts to frantically + $He moans when you add a third, and grunts when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and relaxes completely. The wide part of your hand, at the knuckles, squeezes into her without much trouble, and $he lets out a huge sigh. When you start to fuck her huge cunt with your hand, though, $he collapses <<if $activeSlave.belly >= 300000>>onto $his _belly belly<<else>>to $his knees<</if>>, whining and begging nonverbally. You kick the lotion towards $his hand; $he gets the message and starts to frantically <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> rub her taint. <<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>> @@ -5583,7 +5583,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del $He manages to climax promptly, her big vagina squeezing your hand strongly. $He slumps to the ground when you withdraw your hand, gasping, the collapse giving you a good view into her open, pink-walled channel. You haul her around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and groaning, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's replaced your hand with her own. <<set $activeSlave.devotion += 5>> <<elseif $activeSlave.vagina == 2>> - $He grunts when you add a third, and begins to beg when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and hurriedly gets down <<if $activeSlave.belly >= 300000>>onto her _belly belly<<else>>on $his knees<</if>> to present a more comfortable angle. The wide part of your hand, at the knuckles, squeezes into her after some effort on your part and squealing on her part. You kick the lotion towards $his hand; $he gets the message and starts to frantically + $He grunts when you add a third, and begins to beg when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and hurriedly gets down <<if $activeSlave.belly >= 300000>>onto $his _belly belly<<else>>on $his knees<</if>> to present a more comfortable angle. The wide part of your hand, at the knuckles, squeezes into her after some effort on your part and squealing on her part. You kick the lotion towards $his hand; $he gets the message and starts to frantically <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> rub her taint <<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>> @@ -5598,7 +5598,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del as you slowly fist fuck $him. $He manages to climax eventually. $He slumps to the ground when you withdraw your hand, gasping, the collapse giving you a good view into her now-gaping, pink-walled channel. You haul her around so $he can <<if $PC.dick == 1>>suck you off<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>. $He complies @@.hotpink;submissively,@@ drooling and gasping, all pretense of feminine grace gone. It doesn't take long, since that was quite a lot of fun, but by the time you finish $he's masturbating again. <<set $activeSlave.devotion += 5>> <<else>> - $He squeals when you add a third, and begins to shamelessly beg for mercy when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and collapses <<if $activeSlave.belly >= 300000>>onto her _belly belly<<else>>to $his knees<</if>>, begging you to be gentle. You kick the lotion towards $his hand; $he gets the message and starts to frantically + $He squeals when you add a third, and begins to shamelessly beg for mercy when you insert a fourth. When $he feels you form your hand into a point, thumb included, $he understands what's coming and collapses <<if $activeSlave.belly >= 300000>>onto $his _belly belly<<else>>to $his knees<</if>>, begging you to be gentle. You kick the lotion towards $his hand; $he gets the message and starts to frantically <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> rub her taint, <<elseif $activeSlave.dick > 0 && !canAchieveErection($activeSlave)>> @@ -5629,7 +5629,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<elseif $activeSlave.weight > 130>> $His belly is so fat that $he has to take precautions to handle the massive shift in its mass when $he inverts. <</if>> - You get up from behind your desk,<<if $PC.dick == 0>> don a strap-on,<</if>> and stand behind $him. You grab $him by the ankles, and $he giggles self-consciously, aware that in this position, her <<if $activeSlave.vagina > -1>>holes are on display pretty much as openly as they can possibly be<<else>>butthole is on display pretty much as openly as it can possibly be<</if>>. $He groans with soreness as you lift $him by $his legs, pulling her upward until $he's in a full handstand, $his knees clasping you on either side to steady $him. Carefully, you maneuver your <<if $PC.dick == 0>>phallus<<else>>cock<</if>> to line it up with her <<if $activeSlave.vagina > -1>>pussy<<else>>asspussy<</if>>. Realizing what you intend, $he arches her back and cocks $his hips,<<if $activeSlave.belly >= 5000>> pushing her already bulging stomach even further out from $him, all the while<</if>> grunting and shivering as her sore muscles stretch to support her in the necessary gymnastic pose to angle her hole just right. + You get up from behind your desk,<<if $PC.dick == 0>> don a strap-on,<</if>> and stand behind $him. You grab $him by the ankles, and $he giggles self-consciously, aware that in this position, her <<if $activeSlave.vagina > -1>>holes are on display pretty much as openly as they can possibly be<<else>>butthole is on display pretty much as openly as it can possibly be<</if>>. $He groans with soreness as you lift $him by $his legs, pulling her upward until $he's in a full handstand, $his knees clasping you on either side to steady $him. Carefully, you maneuver your <<if $PC.dick == 0>>phallus<<else>>cock<</if>> to line it up with her <<if $activeSlave.vagina > -1>>pussy<<else>>asspussy<</if>>. Realizing what you intend, $he arches her back and cocks $his hips,<<if $activeSlave.belly >= 5000>> pushing her already bulging stomach even further out from $him, all the while<</if>> grunting and shivering as her sore muscles stretch to support $him in the necessary gymnastic pose to angle her hole just right. <br><br> With the combined pain and pleasure of the stretch already overstimulating $him, $he gives a huge sobbing gasp as you enter $him. You move your hands to her <<if $activeSlave.weight > 95>> @@ -5768,7 +5768,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> kid <</if>> - cuddled up beside you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> lowers the temperature in the room and directs another slave to quietly put a couple of warm blankets over you and $activeSlave.slaveName. When you finally wake, several hours later, the effect is magical. You're ensconced in a little island of warmth and comfort, a tiny universe of relaxation populated only by yourself and your slave. $He woke before you did, but remained still to avoid disturbing you. <<if canSee($activeSlave)>>From the lazy, contented look in her $activeSlave.eyeColor eyes as $he meets your waking gaze, $he did not mind waiting. @@.hotpink;$He was already looking at your face when you opened your eyes.@@<<else>>From the serene expression on her face as $he meets your waking gaze, $he did not mind waiting. @@.hotpink;$He was already looking at your face, lost in the soothing sounds of your breathing, when you opened your eyes.@@<</if>> + cuddled up beside you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> lowers the temperature in the room and directs another slave to quietly put a couple of warm blankets over you and $activeSlave.slaveName. When you finally wake, several hours later, the effect is magical. You're ensconced in a little island of warmth and comfort, a tiny universe of relaxation populated only by yourself and your slave. $He woke before you did, but remained still to avoid disturbing you. <<if canSee($activeSlave)>>From the lazy, contented look in $his $activeSlave.eyeColor eyes as $he meets your waking gaze, $he did not mind waiting. @@.hotpink;$He was already looking at your face when you opened your eyes.@@<<else>>From the serene expression on her face as $he meets your waking gaze, $he did not mind waiting. @@.hotpink;$He was already looking at your face, lost in the soothing sounds of your breathing, when you opened your eyes.@@<</if>> <br><br> Since you're awake, $he rolls onto her face and then further, to place her back and <<if $activeSlave.butt > 5>>massive ass<<elseif $activeSlave.butt > 2>>healthy rear<<else>>butt<</if>> against you, making sure to drag her $activeSlave.nipples nipples against you the whole way. You accept the invitation and spoon $him, <<if $activeSlave.height >= 185>>your bodies lining up well, since $he's as tall as you are<<elseif $activeSlave.height >= 160>>$his body fitting neatly within the embrace of your larger frame<<else>>her small body fitting entirely within your embrace<</if>>. $His <<if $activeSlave.muscles > 30>>muscles<<else>>softness<</if>> and warmth awaken your desire, and $he feels <<if $PC.dick == 1>>your stiffening cock beginning to press against <<if $activeSlave.amp == 1>>her perineum. $He shifts to slide $himself along its shaft<<if $PC.vagina == 1>> and down to where your pussy begins<</if>><<else>>the place between her thighs. $He shifts to let your dick slide between them, and reaches down to massage its head<</if>><<else>>heat building against $his butt. <<if $activeSlave.amp == 1>>$He does her best to grind against you, since $he can't caress you without hands<<else>>$He snakes a hand behind $himself to caress your womanhood, and begins to gently masturbate with the other<</if>><</if>>. <<if $PC.dick == 1>> @@ -5800,7 +5800,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del $He hikes $himself up a bit, and then easily slides your cock into her loose rectum. You share loving anal <<set _didAnal = 1>> <<else>> - $He decides against buttsex, and <<if $activeSlave.amp == 1>>contents $himself with grinding<<else>>presses her thighs together so you can frot her.<</if>> After making love + $He decides against buttsex, and <<if $activeSlave.amp == 1>>contents $himself with grinding<<else>>presses her thighs together so you can frot $him.<</if>> After making love <</if>> <<else>> You <<if $activeSlave.amp == 1>>grind against her<<else>>frot her<</if>> @@ -5890,7 +5890,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<= knockMeUp($PC, 20, 0, $activeSlave.ID)>> <</if>> <<elseif ($activeSlave.vagina <= 0)>> - "my butt i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He rolls over and spreads her buttocks, begging you to cover her up. $He moans as $he feels <<if $PC.dick == 1>>your cockhead<<else>>a strap-on<</if>> penetrate $his asshole, her sun-warmed buttocks clenching wonderfully against your crotch. + "my butt i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He rolls over and spreads $his buttocks, begging you to cover her up. $He moans as $he feels <<if $PC.dick == 1>>your cockhead<<else>>a strap-on<</if>> penetrate $his asshole, her sun-warmed buttocks clenching wonderfully against your crotch. <<set _didAnal = 1>> <<else>> "my pu<<ss>>y i<<s>> getting <<s>>unburnt! Plea<<s>>e, <<Master>>, help me!" $He spreads $his legs invitingly, running a hand across $his clit and down to spread her pussylips to the sunshine. $He moans as $he feels <<if $PC.dick == 1>>your cockhead<<else>>a strap-on<</if>> penetrate $him, her sun-warmed chest warm against yours. @@ -5922,11 +5922,11 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<set $activeSlave.devotion += 4>> <</replace>> <</link>> -<br><<link "Bring your good girls out for a day at the beach">> +<br><<link "Bring your good slaves out for a day at the beach">> <<EventNameDelink $activeSlave>> <<setLocalPronouns $HeadGirl 2>> <<replace "#result">> - You direct $assistantName to bring your girls who deserve it out for a day at the beach. There might be little sand out on the balcony, but there's plenty of warm sun. And beaches are overrated these days anyway, with the ocean becoming so unpredictable. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> advises them to get naked, and bring towels and sun lotion appropriate for their individual skin types, so they know they're going to get some sunshine, but they're surprised when they get outside. They're obviously expecting an orgy of some kind, but all they see is you and $activeSlave.slaveName luxuriating on the decking. As they arrive, they take the cue and line up with you one by one. After a long sunbathing session, you send a couple of them inside to bring out cool drinks, a beach ball, and other essentials. The hornier girls are doubtful for a while, but eventually they all relax and @@.mediumaquamarine;gain confidence@@ from the simple, nonsexual pleasure of a little time in the sun. <<if ($activeSlave.ID != $HeadGirl.ID) && ($HeadGirl != 0)>>Your Head Girl $HeadGirl.slaveName quietly compliments the idea, and asks you how it came to you. You let _him2 know it was $activeSlave.slaveName's idea,<<else>>Another slave thanks you profusely, and politely asks you what gave you such a wonderful idea. You let them know it was $activeSlave.slaveName,<</if>> which $activeSlave.slaveName <<if canHear($activeSlave)>>overhears<<elseif canSee($activeSlave)>>witnesses<<else>>soon discovers<</if>>. $He blushes prettily, and @@.mediumaquamarine;is pleased@@ to <<if canHear($activeSlave)>>hear<<else>>learn<</if>> that a slave can receive credit for finding a good thing. + You direct $assistantName to bring your slaves who deserve it out for a day at the beach. There might be little sand out on the balcony, but there's plenty of warm sun. And beaches are overrated these days anyway, with the ocean becoming so unpredictable. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> advises them to get naked, and bring towels and sun lotion appropriate for their individual skin types, so they know they're going to get some sunshine, but they're surprised when they get outside. They're obviously expecting an orgy of some kind, but all they see is you and $activeSlave.slaveName luxuriating on the decking. As they arrive, they take the cue and line up with you one by one. After a long sunbathing session, you send a couple of them inside to bring out cool drinks, a beach ball, and other essentials. The hornier ones are doubtful for a while, but eventually they all relax and @@.mediumaquamarine;gain confidence@@ from the simple, nonsexual pleasure of a little time in the sun. <<if ($activeSlave.ID != $HeadGirl.ID) && ($HeadGirl != 0)>>Your Head Girl $HeadGirl.slaveName quietly compliments the idea, and asks you how it came to you. You let _him2 know it was $activeSlave.slaveName's idea,<<else>>Another slave thanks you profusely, and politely asks you what gave you such a wonderful idea. You let them know it was $activeSlave.slaveName,<</if>> which $activeSlave.slaveName <<if canHear($activeSlave)>>overhears<<elseif canSee($activeSlave)>>witnesses<<else>>soon discovers<</if>>. $He blushes prettily, and @@.mediumaquamarine;is pleased@@ to <<if canHear($activeSlave)>>hear<<else>>learn<</if>> that a slave can receive credit for finding a good thing. <<set $activeSlave.trust++>> <<for _ress = 0; _ress < $slaves.length; _ress++>> <<if $slaves[_ress].devotion > 20>> @@ -6147,7 +6147,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<set $rep += 50>> <<set $activeSlave.oralCount++, $oralTotal++>> <<elseif ($activeSlave.fetish == "humiliation")>> - You sit down on a balcony bench and pull $him down to sit on your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, and then pull $his legs as wide as they'll go as you fuck $him, displaying everything to the whole balcony<<if $activeSlave.belly >= 120000>>; $his _belly stomach hangs so low that it blocks the view, however<<else>><<if $PC.vagina == 1>><<if $PC.dick == 1>>: incidentally including your own pussy, which slides up and down as you piston the cock above it in and out of $him<</if>><</if>><</if>>. $He @@.hotpink;laps up@@ the @@.green;openly aroused@@ stares from $his growing audience. + You sit down on a balcony bench and pull $him down to sit on your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, and then pull $his legs as wide as they'll go as you fuck $him, displaying everything to the whole balcony<<if $activeSlave.belly >= 120000>>; $his _belly stomach hangs so low that it blocks the view, however<<else>><<if $PC.vagina == 1>><<if $PC.dick == 1>>: incidentally including your own pussy, which slides up and down as you piston the cock above it in and out of $his<</if>><</if>><</if>>. $He @@.hotpink;laps up@@ the @@.green;openly aroused@@ stares from $his growing audience. <<set $rep += 100>> <<set $activeSlave.devotion += 3>> <<if canDoVaginal($activeSlave)>> @@ -6603,7 +6603,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <br><<link "Buttfuck $him against the railing">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You move quietly over to $him and encircle her with your arms, holding both $his hands over her _belly<<if $activeSlave.pregKnown == 1>> pregnant<</if>> belly with both of yours. $He relaxes into your + You move quietly over to $him and encircle her with your arms, holding both $his hands over $his _belly<<if $activeSlave.pregKnown == 1>> pregnant<</if>> belly with both of yours. $He relaxes into your <<if $PC.boobsBonus > 2>> enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts <<elseif $PC.boobsBonus == 2>> @@ -6643,7 +6643,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <br><<link "Fuck her against the railing">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You move quietly over to $him and encircle her with your arms, holding both $his hands over her _belly<<if $activeSlave.pregKnown == 1>> pregnant<</if>> belly with both of yours. $He relaxes into your + You move quietly over to $him and encircle her with your arms, holding both $his hands over $his _belly<<if $activeSlave.pregKnown == 1>> pregnant<</if>> belly with both of yours. $He relaxes into your <<if $PC.boobsBonus > 2>> enormous<<if $PC.boobsImplant == 1>> fake<</if>> breasts <<elseif $PC.boobsBonus == 2>> @@ -6687,11 +6687,11 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<replace "#result">> You leave for a moment, but return quickly with a chair and a refreshing beverage so you can sit and enjoy the spectacle. It's hard to tell, but you're reasonably sure $activeSlave.slaveName is flattered by your interest. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> does not let her go for a long time, however, and when $he finally retracts all the phalli, $activeSlave.slaveName collapses weakly to the sweat-stained floor. <<if $activeSlave.belly >= 300000>> - You try to gather the limp nympho in your arms, but her _belly is far too heavy to carry, so you settle for assisting $him to your private bath, which is all ready and filled with steaming water. $activeSlave.slaveName groans with pleasure as you help her into the water and slip in beside $him. + You try to gather the limp nympho in your arms, but $his _belly is far too heavy to carry, so you settle for assisting $him to your private bath, which is all ready and filled with steaming water. $activeSlave.slaveName groans with pleasure as you help her into the water and slip in beside $him. <<else>> You gather the limp nympho in your arms and carry $him to your private bath, which is all ready and filled with steaming water. $activeSlave.slaveName groans with pleasure as you lower $him, still cradled in your arms, into the water. <</if>> - $He nuzzles her $activeSlave.skin cheek against your <<if ($PC.boobs > 0)>>breasts<<else>>chest<</if>>, eyes closed in @@.hotpink;bliss.@@ + $He nuzzles $his $activeSlave.skin cheek against your <<if ($PC.boobs > 0)>>breasts<<else>>chest<</if>>, eyes closed in @@.hotpink;bliss.@@ <<set $activeSlave.devotion += 4>> <</replace>> <</link>> @@ -6785,7 +6785,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<if $activeSlave.belly < 1500>> lay her face down on your desk, <<else>> - direct $him to lay on her side on your desk<<if $activeSlave.belly >= 300000>> with her _belly belly hanging over the edge<</if>>, + direct $him to lay on her side on your desk<<if $activeSlave.belly >= 300000>> with $his _belly belly hanging over the edge<</if>>, <</if>> but is surprised and reassured when $he's penetrated not by a <<if $PC.dick == 0>>strap-on<<else>>turgid<<if $PC.vagina == 1>> futa<</if>> cock<</if>> but by a single gentle finger coated with something healing and cool. The mixed analgesic and anti-inflammatory takes the sharpness off the sore feeling, and will help get $his butt back into fucking shape. @@.mediumaquamarine;$He has become more accepting of anal slavery,@@ and @@.green;$his asshole feels better.@@ <<if ($activeSlave.anus > 2)>>Your expert care has @@.orange;allowed her loose asspussy to recover a little of its natural shape and size.@@<<set $activeSlave.anus -= 1>><</if>> @@ -6870,7 +6870,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> muscular chest pressing <</if>> - against her back, and shudders when your <<if $PC.dick == 0>>strap-on<<else>>stiff prick<</if>> comes to rest between $his legs<<if $PC.vagina == 1>><<if $PC.dick == 1>>, the moist heat of your pussy very obvious at the base of your cock<</if>><</if>>. You bring $him to a fine point of arousal, enjoying $his body, pulling her $activeSlave.skin chin around to kiss her + against her back, and shudders when your <<if $PC.dick == 0>>strap-on<<else>>stiff prick<</if>> comes to rest between $his legs<<if $PC.vagina == 1>><<if $PC.dick == 1>>, the moist heat of your pussy very obvious at the base of your cock<</if>><</if>>. You bring $him to a fine point of arousal, enjoying $his body, pulling $his $activeSlave.skin chin around to kiss her <<if $activeSlave.lips > 60>> bimbo <<elseif $activeSlave.lips > 40>> @@ -6900,11 +6900,11 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</if>> with the orgasm, eliciting a sob of overstimulation, which you draw into a series of sobs by slowly assfucking her despite her climax. You are gentle with $his butt, and continue teasing $his body, so that her arousal builds again and $he manages to climax a second time when you do. You let her out from between you and the doorframe to wash, and return to work, but when $he emerges from a quick trip to the bathroom $he <<if $activeSlave.belly >= 300000>> - leans against her _belly stomach, + leans against $his _belly stomach, <<else>> kneels on the couch, <</if>> - spreads her buttocks with one hand, + spreads $his buttocks with one hand, <<if !canTalk($activeSlave)>> and @@.mediumaquamarine;earnestly asks@@ for more. <<else>> @@ -6955,7 +6955,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <<else>> worsened by her tight little sphincter. <</if>> - You ravage $his ass hard from the first stroke, making it clear you're taking your pleasure, leaving her nothing to do but cling to the doorframe and try to ride it out. At first $he was squashed painfully against it, but $he manages to <<if ($activeSlave.belly >= 5000)>>shift her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>beside the frame and<</if>> cock $his hips out at enough of an angle that $he can get back to + You ravage $his ass hard from the first stroke, making it clear you're taking your pleasure, leaving her nothing to do but cling to the doorframe and try to ride it out. At first $he was squashed painfully against it, but $he manages to <<if ($activeSlave.belly >= 5000)>>shift $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>>beside the frame and<</if>> cock $his hips out at enough of an angle that $he can get back to <<if ($activeSlave.dick > 6) && !canAchieveErection($activeSlave)>> rubbing her oversized cock between it and $his leg <<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>> @@ -7061,7 +7061,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</if>> and mounting you. <<if ($activeSlave.belly >= 100000)>> - You grunt as the weight of her _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly comes to rest on your back<<if $activeSlave.belly >= 300000>>, the sheer gravity of it threatening to force you to the floor<</if>>. + You grunt as the weight of $his _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly comes to rest on your back<<if $activeSlave.belly >= 300000>>, the sheer gravity of it threatening to force you to the floor<</if>>. <<elseif ($activeSlave.boobs >= 15000)>> You grunt as you feel the weight of her massive breasts slam into your back<<if $activeSlave.boobs >= 30000>>before falling to your sides<</if>>. <<elseif ($activeSlave.weight > 160)>> @@ -7254,7 +7254,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del <</if>> body when the air jets play across $him.) <<elseif ($activeSlave.belly >= 5000)>> - how firm her _belly belly is.) + how firm $his _belly belly is.) <<elseif ($activeSlave.dick > 1)>> her soft cock flop around as one of the air jets strikes it.) <<elseif ($activeSlave.boobs > 800)>> @@ -7329,7 +7329,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Abuse $his ass">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He turns around as <<if canSee($activeSlave)>>$he hears <</if>>you enter the bathroom, fear and loathing on her face, but you seize her shoulder and spin her back around without a word. You drag her across the counter until her face is over the sink, and turn it on. $He struggles in sheer incomprehension as you hold her head over the filling basin with one hand and roughly grope $his butt with the other. When the sink is full, you tell $him to spread her buttocks for you like a good butthole bitch. $He hesitates, so you push her face under the surface of the water and hold it there until $he complies. You shove <<if $PC.dick == 0>>a dildo<<else>>your member<</if>> up $his anus so harshly that $he spasms and reflexively tries to get away, so you push her under again until $he stops struggling. For the next ten minutes, $he gets shoved under water whenever $he offers the slightest resistance to anal rape. Soon, her tears are pattering down into the sink. The next time you decide to buttfuck $him, $he's @@.gold;compliant from sheer terror.@@ + $He turns around as <<if canSee($activeSlave)>>$he hears <</if>>you enter the bathroom, fear and loathing on her face, but you seize her shoulder and spin her back around without a word. You drag her across the counter until her face is over the sink, and turn it on. $He struggles in sheer incomprehension as you hold her head over the filling basin with one hand and roughly grope $his butt with the other. When the sink is full, you tell $him to spread $his buttocks for you like a good butthole bitch. $He hesitates, so you push her face under the surface of the water and hold it there until $he complies. You shove <<if $PC.dick == 0>>a dildo<<else>>your member<</if>> up $his anus so harshly that $he spasms and reflexively tries to get away, so you push her under again until $he stops struggling. For the next ten minutes, $he gets shoved under water whenever $he offers the slightest resistance to anal rape. Soon, her tears are pattering down into the sink. The next time you decide to buttfuck $him, $he's @@.gold;compliant from sheer terror.@@ <<set $activeSlave.trust -= 5>> <<= AnalVCheck()>> <</replace>> @@ -7439,23 +7439,23 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Sentence $him to a month in the arcade">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $activeSlave.slaveName screams and begs when $he realizes what her punishment is, but you are obdurate. + $activeSlave.slaveName screams and begs when $he realizes what $his punishment is, but you are obdurate. <<if ($activeSlave.muscles > 30)>> $His powerful form has to be sedated for immurement in the arcade. <<elseif ($activeSlave.weight >= 190)>> - $He is so massively fat that immuring her in the arcade is a struggle, even when $he isn't trying to. + $He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to. <<elseif $activeSlave.belly >= 120000>> - $He is so enormously gravid that immuring her in the arcade is a hassle, even though her _belly middle limits her ability to struggle. + $He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits her ability to struggle. <<elseif ($activeSlave.weight >= -10)>> - $His desperate struggles make immuring her in the arcade difficult. + $His desperate struggles make immuring $him in the arcade difficult. <<elseif $activeSlave.belly >= 1500>> $His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit her properly into the restraints for immurement in the arcade. <<elseif $activeSlave.muscles < -15>> - $His weak body makes immuring her in the arcade pathetically easy. + $His weak body makes immuring $him in the arcade pathetically easy. <<else>> - $His thin form makes immuring her in the arcade pathetically easy. + $His thin form makes immuring $him in the arcade pathetically easy. <</if>> - After $he's properly confined, the only sign of her discomfiture is a slight movement of her $activeSlave.skin butt as $he wriggles desperately against her restraints. + After $he's properly confined, the only sign of her discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against her restraints. <<= assignJob($activeSlave, "be confined in the arcade")>> <<set $activeSlave.sentence = 4>> <</replace>> @@ -7484,7 +7484,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Clip the would-be escapee's tendons">> <<EventNameDelink $activeSlave>> <<replace "#result">> - The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for her punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag her struggling, weeping form through the penthouse to the surgery. $activeSlave.slaveName is @@.mediumorchid;saddened@@ and @@.gold;frightened@@ by this punishment, and her @@.red;health is damaged@@ by the surgery. Every single one of your other slaves with any resistance left in them is @@.gold;sensibly restrained@@ from trying such rash acts. + The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag her struggling, weeping form through the penthouse to the surgery. $activeSlave.slaveName is @@.mediumorchid;saddened@@ and @@.gold;frightened@@ by this punishment, and her @@.red;health is damaged@@ by the surgery. Every single one of your other slaves with any resistance left in them is @@.gold;sensibly restrained@@ from trying such rash acts. <<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5, $activeSlave.health -= 10, $activeSlave.heels = 1>> <<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 5; } })>> <</replace>> @@ -7493,7 +7493,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Amputate the would-be escapee's limbs">> <<EventNameDelink $activeSlave>> <<replace "#result">> - The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for her punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag her struggling, weeping form through the penthouse to the surgery. $activeSlave.slaveName is @@.mediumorchid;filled with implacable hatred@@ by this terrible punishment, and her @@.red;health is damaged@@ by the major surgery. However, every single one of your other slaves not already obedient to you is @@.gold;utterly terrified@@ by the example set. + The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag her struggling, weeping form through the penthouse to the surgery. $activeSlave.slaveName is @@.mediumorchid;filled with implacable hatred@@ by this terrible punishment, and her @@.red;health is damaged@@ by the major surgery. However, every single one of your other slaves not already obedient to you is @@.gold;utterly terrified@@ by the example set. <<set $activeSlave.devotion -= 50, $activeSlave.trust -= 50, $activeSlave.health -= 40, $activeSlave.amp = 1, $activeSlave.shoes = "none", $activeSlave.diet = "healthy", $activeSlave.heels = 0>> <<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 10; } })>> <</replace>> @@ -7502,7 +7502,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Blind the would-be escapee">> <<EventNameDelink $activeSlave>> <<replace "#result">> - The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for her punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag her struggling, weeping form through the penthouse to the surgery. You make sure to point out all the things $he'll never get to see again. $activeSlave.slaveName is @@.mediumorchid;filled with implacable hatred@@ by this terrible punishment, and her @@.red;health is slightly damaged@@ by the surgery. However, every single one of your other slaves not already obedient to you is @@.gold;utterly terrified@@ by the example set. + The simple thing to do would be to sedate $activeSlave.slaveName and haul $him to the remote surgery for $his punishment. That would deny $him the added weight of terror, however, and would stop your other slaves from learning by the sight of it. So, you restrain $him, pronounce judgment, and drag her struggling, weeping form through the penthouse to the surgery. You make sure to point out all the things $he'll never get to see again. $activeSlave.slaveName is @@.mediumorchid;filled with implacable hatred@@ by this terrible punishment, and her @@.red;health is slightly damaged@@ by the surgery. However, every single one of your other slaves not already obedient to you is @@.gold;utterly terrified@@ by the example set. <<set $activeSlave.devotion -= 50, $activeSlave.trust -= 50, $activeSlave.health -= 20, $activeSlave.eyes = -2, $activeSlave.eyeColor = "dulled " + $activeSlave.eyeColor>> <<set $slaves.forEach(function(s) { if (s.devotion <= 20) { s.trust -= 10; } })>> <</replace>> @@ -7525,7 +7525,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Extirpate this foolishness with pain">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You seize $him and begin to bind $him for appropriate punishment. $activeSlave.slaveName does not resist you physically at first. $He finds $himself tied bent over your desk, face down, with $his arms locked behind her<<if $activeSlave.belly >= 1500>> and her _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly hanging off the edge<</if>>. $He struggles a little when you insert your cock into her <<if ($activeSlave.anus == 1)>>poor little anus<<elseif ($activeSlave.anus == 2)>>whore's butt<<else>>gaping rear end<</if>>, but her real agony begins when you place $his arms in an inescapable joint lock and apply a little pressure. It doesn't damage $him, but it easily causes more pain than $he is capable of resisting. $He does a little dance within her bindings, squealing and involuntarily clenching you nicely with her anal ring. You require $him to recite the litany "My name i<<s>> <<print _slavename>>!", coaching her with alternate orders and agonizing correction until $he's screaming every word at the top of her lungs in an endless wail. $His screeching rises and falls as $he feels the burning sensation of your merciless use of $his ass, but $he works her lungs hard to avoid as much pain as $he can. When you've climaxed and cast off her bindings, you make her repeat her name one last time as $he stiffly rubs her abused arms and anus. $He does, @@.gold;without hesitation.@@ + You seize $him and begin to bind $him for appropriate punishment. $activeSlave.slaveName does not resist you physically at first. $He finds $himself tied bent over your desk, face down, with $his arms locked behind her<<if $activeSlave.belly >= 1500>> and $his _belly <<if $activeSlave.bellyPreg >= 1500>>pregnant <</if>>belly hanging off the edge<</if>>. $He struggles a little when you insert your cock into her <<if ($activeSlave.anus == 1)>>poor little anus<<elseif ($activeSlave.anus == 2)>>whore's butt<<else>>gaping rear end<</if>>, but her real agony begins when you place $his arms in an inescapable joint lock and apply a little pressure. It doesn't damage $him, but it easily causes more pain than $he is capable of resisting. $He does a little dance within her bindings, squealing and involuntarily clenching you nicely with her anal ring. You require $him to recite the litany "My name i<<s>> <<print _slavename>>!", coaching her with alternate orders and agonizing correction until $he's screaming every word at the top of her lungs in an endless wail. $His screeching rises and falls as $he feels the burning sensation of your merciless use of $his ass, but $he works her lungs hard to avoid as much pain as $he can. When you've climaxed and cast off her bindings, you make her repeat her name one last time as $he stiffly rubs her abused arms and anus. $He does, @@.gold;without hesitation.@@ <<set $activeSlave.trust -= 5>> <<= AnalVCheck()>> <</replace>> @@ -7533,34 +7533,34 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Allow $him to resume her birth name, but make it publicly humiliating">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You calmly and charitably tell $him that that's acceptable; $he can be $activeSlave.birthName again. $He has the wit to be worried, and $he soon finds that her fears are not unjustified. You bring her out to <<if $club>>$clubName<<else>>a public club<</if>>, and explain with equanimity that $he has two choices: $he can either introduce $himself to strangers by name and offer them free oral sex, or $he can be whipped until $he introduces $himself to strangers by name and offers them free oral sex. $His lip quivers a little, but $he stumbles over to a nearby group of local worthies and whimpers hesitantly, "H-hi, my name i<<s>> <<print _name>>, can I <<s>>uck you off, plea<<s>>e?" They laugh, and understanding the situation perfectly, give you a @@.green;grateful wave@@ even as their leader pushes $him to $his knees. For the rest of the week, $he's seeing to her duties, sleeping, or blowing strangers after telling them her name. Though $he has reassumed her birth name, it is @@.gold;no longer any source of independence to her.@@ + You calmly and charitably tell $him that that's acceptable; $he can be $activeSlave.birthName again. $He has the wit to be worried, and $he soon finds that her fears are not unjustified. You bring her out to <<if $club>>$clubName<<else>>a public club<</if>>, and explain with equanimity that $he has two choices: $he can either introduce $himself to strangers by name and offer them free oral sex, or $he can be whipped until $he introduces $himself to strangers by name and offers them free oral sex. $His lip quivers a little, but $he stumbles over to a nearby group of local worthies and whimpers hesitantly, "H-hi, my name i<<s>> <<print _name>>, can I <<s>>uck you off, plea<<s>>e?" They laugh, and understanding the situation perfectly, give you a @@.green;grateful wave@@ even as their leader pushes $him to $his knees. For the rest of the week, $he's seeing to $his duties, sleeping, or blowing strangers after telling them her name. Though $he has reassumed her birth name, it is @@.gold;no longer any source of independence to $him.@@ <<set $rep += 100>> <<set $activeSlave.trust -= 5, $activeSlave.oralCount += 50, $activeSlave.publicCount += 50, $activeSlave.slaveName = $activeSlave.birthName>> <<set $oralTotal += 50>> <<if random(1,100) > 50>>The experience has given $him an @@.lightcoral;interest in humiliation.@@<<set $activeSlave.fetishStrength = 10>><<set $activeSlave.fetish = "humiliation">><<set $activeSlave.fetishKnown = 1>><</if>> <</replace>> -<</link>> //This may impact her sexuality.// +<</link>> //This may impact $his sexuality.// <<if $arcade > 0>> <br><<link "Sentence $him to a month in the arcade">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $activeSlave.slaveName screams and begs when $he realizes what her punishment is, but you are obdurate. + $activeSlave.slaveName screams and begs when $he realizes what $his punishment is, but you are obdurate. <<if ($activeSlave.muscles > 30)>> $His powerful form has to be sedated for immurement in the arcade. <<elseif ($activeSlave.weight >= 190)>> - $He is so massively fat that immuring her in the arcade is a struggle, even when $he isn't trying to. + $He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to. <<elseif $activeSlave.belly >= 120000>> - $He is so enormously gravid that immuring her in the arcade is a hassle, even though her _belly middle limits her ability to struggle. + $He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits her ability to struggle. <<elseif ($activeSlave.weight >= -10)>> - $His desperate struggles make immuring her in the arcade difficult. + $His desperate struggles make immuring $him in the arcade difficult. <<elseif $activeSlave.belly >= 1500>> $His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit her properly into the restraints for immurement in the arcade. <<elseif $activeSlave.muscles < -15>> - $His weak body makes immuring her in the arcade pathetically easy. + $His weak body makes immuring $him in the arcade pathetically easy. <<else>> - $His thin form makes immuring her in the arcade pathetically easy. + $His thin form makes immuring $him in the arcade pathetically easy. <</if>> - After $he's properly confined, the only sign of her discomfiture is a slight movement of her $activeSlave.skin butt as $he wriggles desperately against her restraints. + After $he's properly confined, the only sign of her discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against her restraints. <<= assignJob($activeSlave, "be confined in the arcade")>> <<set $activeSlave.sentence = 4>> <</replace>> @@ -7618,7 +7618,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t You pause before getting her dressed; there's little reason to waste her virginity on a plug. You <<if $PC.dick == 1>>stroke yourself to erection<<else>>don a strapon<</if>> and bend her over before working your way into her tight pussy. <<= VaginalVCheck()>> <</if>> - For the rest of the week, $he walks around awkwardly, unable to find a comfortable position <<if $activeSlave.belly >= 1500>>between<<else>>since<</if>> her <<if $seeRace == 1>>$activeSlave.race <</if>>body <<if $activeSlave.belly >= 1500>>is<</if>> being penetrated by her own clothing<<if $activeSlave.belly >= 1500>> and the straps digging into her _belly rounded belly<</if>>. @@.hotpink;$He has become more submissive.@@ + For the rest of the week, $he walks around awkwardly, unable to find a comfortable position <<if $activeSlave.belly >= 1500>>between<<else>>since<</if>> her <<if $seeRace == 1>>$activeSlave.race <</if>>body <<if $activeSlave.belly >= 1500>>is<</if>> being penetrated by her own clothing<<if $activeSlave.belly >= 1500>> and the straps digging into $his _belly rounded belly<</if>>. @@.hotpink;$He has become more submissive.@@ <</replace>> <<set $activeSlave.devotion += 4>> <</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>> @@ -7627,23 +7627,23 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Sentence $him to a month in the arcade">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $activeSlave.slaveName screams and begs when $he realizes what her punishment is, but you are obdurate. + $activeSlave.slaveName screams and begs when $he realizes what $his punishment is, but you are obdurate. <<if ($activeSlave.muscles > 30)>> $His powerful form has to be sedated for immurement in the arcade. <<elseif ($activeSlave.weight >= 190)>> - $He is so massively fat that immuring her in the arcade is a struggle, even when $he isn't trying to. + $He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to. <<elseif $activeSlave.belly >= 120000>> - $He is so enormously gravid that immuring her in the arcade is a hassle, even though her _belly middle limits her ability to struggle. + $He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits her ability to struggle. <<elseif ($activeSlave.weight >= -10)>> - $His desperate struggles make immuring her in the arcade difficult. + $His desperate struggles make immuring $him in the arcade difficult. <<elseif $activeSlave.belly >= 1500>> $His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit her properly into the restraints for immurement in the arcade. <<elseif $activeSlave.muscles < -15>> - $His weak body makes immuring her in the arcade pathetically easy. + $His weak body makes immuring $him in the arcade pathetically easy. <<else>> - $His thin form makes immuring her in the arcade pathetically easy. + $His thin form makes immuring $him in the arcade pathetically easy. <</if>> - After $he's properly confined, the only sign of her discomfiture is a slight movement of her $activeSlave.skin butt as $he wriggles desperately against her restraints. + After $he's properly confined, the only sign of her discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against her restraints. <<= assignJob($activeSlave, "be confined in the arcade")>> <<set $activeSlave.sentence = 4>> <</replace>> @@ -7658,7 +7658,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if ($activeSlave.amp != 1)>> You tie the protesting slave to your desk <<if $activeSlave.belly >= 5000>> - with $his chest against the top of the desk with her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly hanging of the side, so that + with $his chest against the top of the desk with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly hanging of the side, so that <<else>> so that $his chest is against the top of the desk and <</if>> @@ -7667,12 +7667,16 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $activeSlave.belly >= 300000>> You carefully balance the protesting, defenseless torso atop her own _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>>. <<elseif $activeSlave.belly >= 5000>> - You place the protesting, defenseless torso on your lap, face down with her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>> belly between your legs. + You place the protesting, defenseless torso on your lap, face down with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>> belly between your legs. <<else>> You place the protesting, defenseless torso on your desk, face down. <</if>> <</if>> +<<<<<<< HEAD You spank her severely, leaving her buttocks bright pink. $He must count the strokes or have her punishment start over. Sobbing, $he counts +======= + You spank her severely, leaving $his buttocks bright pink. $He must count the strokes or have $his punishment start over. Sobbing, $he counts +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <<if ($activeSlave.lips > 70)>> through her massive dick-sucking lips, <<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>> @@ -7885,7 +7889,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Secure $him by her piercings for public use">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You order $him to make sure all of her piercings have rings in them, and then come to you when $he's done. $He enters your office with a mixture of fear and curiosity on her face. You lead her outside and secure her in a side hall so that $his ass is presented to anyone who takes interest. $He's forced to maintain this exact posture by a light chain between <<if $activeSlave.belly > 10000>>her popped navel and a ring on the ground.<<elseif ($activeSlave.dick > 0)>>her dickhead and a ring on the ground.<<elseif $activeSlave.vagina == -1>>$his nipples and a ring on the ground.<<else>>$his pussy and a ring on the ground.<</if>> You fuck $his ass to check the bondage; it's good. The chain is out of the way, and $he jerks and struggles amusingly to keep it from tugging her painfully. You pull out to leave her fucked butt with cum dribbling out of it, and leave $him to the tender mercies of the growing crowd. @@.green;The sadists among the public are duly grateful.@@ + You order $him to make sure all of her piercings have rings in them, and then come to you when $he's done. $He enters your office with a mixture of fear and curiosity on her face. You lead her outside and secure $him in a side hall so that $his ass is presented to anyone who takes interest. $He's forced to maintain this exact posture by a light chain between <<if $activeSlave.belly > 10000>>her popped navel and a ring on the ground.<<elseif ($activeSlave.dick > 0)>>her dickhead and a ring on the ground.<<elseif $activeSlave.vagina == -1>>$his nipples and a ring on the ground.<<else>>$his pussy and a ring on the ground.<</if>> You fuck $his ass to check the bondage; it's good. The chain is out of the way, and $he jerks and struggles amusingly to keep it from tugging her painfully. You pull out to leave her fucked butt with cum dribbling out of it, and leave $him to the tender mercies of the growing crowd. @@.green;The sadists among the public are duly grateful.@@ <<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>> <<if $activeSlave.vagina == 0 && $activeSlave.anus == 0>> They take pleasure in claiming @@.lime;both her virginity and anal cherry.@@ @@ -8200,11 +8204,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> You instruct $him to go back to what $he was doing. <<if $activeSlave.belly >= 150000>> - $He leans back over her _belly stomach, + $He leans back over $his _belly stomach, <<else>> - $He gets back to her $activeSlave.skin knees, + $He gets back to $his $activeSlave.skin knees, <</if>> - puzzled, and then gasps when $he finds <<if $PC.dick == 0>>your fingers<<else>>your cockhead<</if>> pressing against her rosebud. You instruct her imperiously to get on with it, and $he soon understands your intent. $He scrubs back and forth, panting and moaning, as you buttfuck her in time with her labors<<if $PC.dick == 0>>, using your other hand to look after yourself<<elseif $PC.vagina == 1>>, using your other hand to shlick your pussy while you pound her<</if>>. You even carefully scoot along with her when $he needs to reach new spots. By the time $he's done $his arms and $his anus are very tired. $His submission to you @@.hotpink;has increased.@@ + puzzled, and then gasps when $he finds <<if $PC.dick == 0>>your fingers<<else>>your cockhead<</if>> pressing against her rosebud. You instruct her imperiously to get on with it, and $he soon understands your intent. $He scrubs back and forth, panting and moaning, as you buttfuck $him in time with her labors<<if $PC.dick == 0>>, using your other hand to look after yourself<<elseif $PC.vagina == 1>>, using your other hand to shlick your pussy while you pound her<</if>>. You even carefully scoot along with her when $he needs to reach new spots. By the time $he's done $his arms and $his anus are very tired. $His submission to you @@.hotpink;has increased.@@ <<= AnalVCheck()>> <<set $activeSlave.devotion += 4>> <</replace>> @@ -8235,11 +8239,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> You instruct $him to go back to what $he was doing. <<if $activeSlave.belly >= 150000>> - $He leans back over her _belly stomach, + $He leans back over $his _belly stomach, <<else>> - $He gets back to her $activeSlave.skin knees, + $He gets back to $his $activeSlave.skin knees, <</if>> - puzzled, and then gasps when $he finds <<if $PC.dick == 0>>your fingers<<else>>your cockhead<</if>> tracing $his pussy lips. You instruct her imperiously to get on with it, and $he soon understands your intent. $He scrubs back and forth, panting and moaning, as you fuck her in time with her labors<<if $PC.dick == 0>>, using your other hand to look after yourself<<elseif $PC.vagina == 1>>, using your other hand to shlick your pussy while you pound her<</if>>. You even carefully scoot along with her when $he needs to reach new spots. By the time $he's done $his arms are very tired and $his legs struggling to hold $him. $His submission to you @@.hotpink;has increased.@@ + puzzled, and then gasps when $he finds <<if $PC.dick == 0>>your fingers<<else>>your cockhead<</if>> tracing $his pussy lips. You instruct her imperiously to get on with it, and $he soon understands your intent. $He scrubs back and forth, panting and moaning, as you fuck $him in time with her labors<<if $PC.dick == 0>>, using your other hand to look after yourself<<elseif $PC.vagina == 1>>, using your other hand to shlick your pussy while you pound her<</if>>. You even carefully scoot along with her when $he needs to reach new spots. By the time $he's done $his arms are very tired and $his legs struggling to hold $him. $His submission to you @@.hotpink;has increased.@@ <<= VaginalVCheck()>> <<set $activeSlave.devotion += 4>> <</replace>> @@ -8268,7 +8272,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> "<<Master>>, how may I <<s>>erve you?" <</if>> - You instruct $him to strip off her apron and lay her $activeSlave.skin back against the ground. $He does, and you empty a bottle of lubricant across her entire body. $He gasps from the cold fluid. You slide around on the floor with $him, playfully scrubbing her <<if $seeRace == 1>>$activeSlave.race <</if>>body around in the pool of lube, playing with her wet breasts<<if ($activeSlave.belly >= 5000)>>, her rounded <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>>,<</if>> and her lubricated thighs before + You instruct $him to strip off her apron and lay $his $activeSlave.skin back against the ground. $He does, and you empty a bottle of lubricant across her entire body. $He gasps from the cold fluid. You slide around on the floor with $him, playfully scrubbing her <<if $seeRace == 1>>$activeSlave.race <</if>>body around in the pool of lube, playing with her wet breasts<<if ($activeSlave.belly >= 5000)>>, her rounded <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>>,<</if>> and her lubricated thighs before <<if $PC.dick == 0>> wrestling the slick slave onto her back so you can ride her face while reaching down to spread $his legs and molest her <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> @@ -8366,10 +8370,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.devotion -= 5>> <</replace>> <</link>> -<br><<link "Sissy slave girls don't need to climax to serve">> +<br><<link "Sissy slave <<= $girl>>s don't need to climax to serve">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You explain patiently that $he needs to stop focusing on getting off. $He's a sex slave, and what matters is that $he pleasures others. If $he doesn't climax $himself, that's unfortunate but not really significant. $He looks terribly forlorn, so to drive home the point you push her down to the floor, give $him a rough face fuck, and send her away with tousled hair, <<if $PC.dick == 0>>a tired tongue<<else>>a mouthful of ejaculate<</if>>, and the same limp dick as before. @@.mediumorchid;It's frustrating for her.@@ + You explain patiently that $he needs to stop focusing on getting off. $He's a sex slave, and what matters is that $he pleasures others. If $he doesn't climax $himself, that's unfortunate but not really significant. $He looks terribly forlorn, so to drive home the point you push her down to the floor, give $him a rough face fuck, and send her away with tousled hair, <<if $PC.dick == 0>>a tired tongue<<else>>a mouthful of ejaculate<</if>>, and the same limp dick as before. @@.mediumorchid;It's frustrating for $him.@@ <<set $activeSlave.devotion -= 2>> <<if ($activeSlave.clitSetting != $activeSlave.fetish)>> But, $he slowly @@.lightcoral;accepts her new role as a submissive little sex toy.@@ @@ -8382,7 +8386,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Prostate stimulation ought to do the trick">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You explain that $he will have to find a new way to climax to be a happy little shemale slut. As you do, you push her against a wall and force her up on tiptoe so that $his butt is conveniently positioned, and then ram <<if $PC.dick == 0>>a vibrating strap-on<<else>>yourself<</if>> up $his ass. $He squeals and dances against the wall on tiptoe, impaled on your <<if $PC.dick == 0>>fake cock<<else>>member<</if>>. $He doesn't climax to anal then, or the next time you assfuck $him, or the time after that; but some time later a long buttsex session ends when $he gives a little shake and a whimper and dribbles a pathetic squirt of cum from her still-limp dick. By the end of the week @@.mediumaquamarine;$he's smiling trustingly@@ and offering you $his butt every chance $he gets. + You explain that $he will have to find a new way to climax to be a happy little shemale slut. As you do, you push $him against a wall and force her up on tiptoe so that $his butt is conveniently positioned, and then ram <<if $PC.dick == 0>>a vibrating strap-on<<else>>yourself<</if>> up $his ass. $He squeals and dances against the wall on tiptoe, impaled on your <<if $PC.dick == 0>>fake cock<<else>>member<</if>>. $He doesn't climax to anal then, or the next time you assfuck $him, or the time after that; but some time later a long buttsex session ends when $he gives a little shake and a whimper and dribbles a pathetic squirt of cum from her still-limp dick. By the end of the week @@.mediumaquamarine;$he's smiling trustingly@@ and offering you $his butt every chance $he gets. <<= AnalVCheck(10)>> <<set $activeSlave.trust += 4>> <<if ($activeSlave.clitSetting != $activeSlave.fetish)>> @@ -8398,7 +8402,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Check on $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Since $he's limbless<<if $activeSlave.pregKnown == 1>> and pregnant<</if>>, $his health is more fragile than most slaves'. You look in on $him, and when $he continues to shiver, you pull the sheets back around $him, tucking her in in such a way that $he can lie comfortably. In the morning $he doesn't understand why $he's so snug and well-rested, but @@.green;$his health improves with decent sleep.@@ + Since $he's limbless<<if $activeSlave.pregKnown == 1>> and pregnant<</if>>, $his health is more fragile than most slaves'. You look in on $him, and when $he continues to shiver, you pull the sheets back around $him, tucking $him in in such a way that $he can lie comfortably. In the morning $he doesn't understand why $he's so snug and well-rested, but @@.green;$his health improves with decent sleep.@@ <<set $activeSlave.health += 10>> <</replace>> <</link>> @@ -8433,11 +8437,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<EventNameDelink $activeSlave>> <<replace "#result">> <<if $activeSlave.belly >= 600000>> - You struggle to heft her overfilled body up, eliciting whimpers of joy at the impending relief and the pressure removed from $his body, and carefully secure her with a few straps so $he can serve as your living cocksleeve. $He's attached to the front of your torso<<if $activeSlave.belly >= 5000>>, her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> forcing you to experience what it is like to carry $activeSlave.pregType children,<</if>> with your cock up inside $him, and the gentle motion of your member as you waddle outside brings $him to climax within a few steps. You carefully stroll around the nicer levels of the arcology, admiring the views and <<if canSee($activeSlave)>>showing $activeSlave.slaveName the sights $he now requires assistance to see<<else>>explaining the sights as $activeSlave.slaveName soaks in the sounds and smells $he now requires assistance to experience<</if>> and leaving a large wake as people make room for your gravid mass. @@.hotpink;$He has become more devoted to you.@@ The sight of you waddling around with a living fucktoy on your cock @@.green;certainly cements your reputation as an arcology owner who has everything,@@ once they figure out that the belly attached to you is, in fact, owned by a barely visible slavegirl. + You struggle to heft her overfilled body up, eliciting whimpers of joy at the impending relief and the pressure removed from $his body, and carefully secure her with a few straps so $he can serve as your living cocksleeve. $He's attached to the front of your torso<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> forcing you to experience what it is like to carry $activeSlave.pregType children,<</if>> with your cock up inside $him, and the gentle motion of your member as you waddle outside brings $him to climax within a few steps. You carefully stroll around the nicer levels of the arcology, admiring the views and <<if canSee($activeSlave)>>showing $activeSlave.slaveName the sights $he now requires assistance to see<<else>>explaining the sights as $activeSlave.slaveName soaks in the sounds and smells $he now requires assistance to experience<</if>> and leaving a large wake as people make room for your gravid mass. @@.hotpink;$He has become more devoted to you.@@ The sight of you waddling around with a living fucktoy on your cock @@.green;certainly cements your reputation as an arcology owner who has everything,@@ once they figure out that the belly attached to you is, in fact, owned by a barely visible slavegirl. <<elseif $activeSlave.belly >= 300000>> - You heft her heavy body her up, eliciting whimpers of joy at the impending relief, and carefully secure her with a few straps so $he can serve as your living cocksleeve. $He's attached to the front of your torso<<if $activeSlave.belly >= 5000>>, her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> massively jutting out in front of you,<</if>> with your cock up inside $him, and the gentle motion of your member as you waddle outside brings $him to climax within a few steps. You carefully stroll around the nicer levels of the arcology, admiring the views and <<if canSee($activeSlave)>>showing $activeSlave.slaveName the sights $he now requires assistance to see<<else>>explaining the sights as $activeSlave.slaveName soaks in the sounds and smells $he now requires assistance to experience<</if>>. @@.hotpink;$He has become more devoted to you.@@ The sight of you waddling around with a living fucktoy on your cock @@.green;certainly cements your reputation as an arcology owner who has everything.@@ + You heft her heavy body her up, eliciting whimpers of joy at the impending relief, and carefully secure her with a few straps so $he can serve as your living cocksleeve. $He's attached to the front of your torso<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> massively jutting out in front of you,<</if>> with your cock up inside $him, and the gentle motion of your member as you waddle outside brings $him to climax within a few steps. You carefully stroll around the nicer levels of the arcology, admiring the views and <<if canSee($activeSlave)>>showing $activeSlave.slaveName the sights $he now requires assistance to see<<else>>explaining the sights as $activeSlave.slaveName soaks in the sounds and smells $he now requires assistance to experience<</if>>. @@.hotpink;$He has become more devoted to you.@@ The sight of you waddling around with a living fucktoy on your cock @@.green;certainly cements your reputation as an arcology owner who has everything.@@ <<else>> - You scoop her up, eliciting whimpers of joy at the impending relief, and carefully secure her with a few straps so $he can serve as your living cocksleeve. $He's attached to the front of your torso<<if $activeSlave.belly >= 5000>>, her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> jutting out in front of you,<</if>> with your cock up inside $him, and the gentle motion of your member as you walk outside brings $him to climax within a few steps. You take your time and stroll around the nicer levels of the arcology, admiring the views and <<if canSee($activeSlave)>>showing $activeSlave.slaveName the sights $he now requires assistance to see<<else>>explaining the sights as $activeSlave.slaveName soaks in the sounds and smells $he now requires assistance to experience<</if>>. @@.hotpink;$He has become more devoted to you.@@ The sight of you walking around with a living fucktoy on your cock @@.green;certainly cements your reputation as an arcology owner who has everything.@@ + You scoop her up, eliciting whimpers of joy at the impending relief, and carefully secure her with a few straps so $he can serve as your living cocksleeve. $He's attached to the front of your torso<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> jutting out in front of you,<</if>> with your cock up inside $him, and the gentle motion of your member as you walk outside brings $him to climax within a few steps. You take your time and stroll around the nicer levels of the arcology, admiring the views and <<if canSee($activeSlave)>>showing $activeSlave.slaveName the sights $he now requires assistance to see<<else>>explaining the sights as $activeSlave.slaveName soaks in the sounds and smells $he now requires assistance to experience<</if>>. @@.hotpink;$He has become more devoted to you.@@ The sight of you walking around with a living fucktoy on your cock @@.green;certainly cements your reputation as an arcology owner who has everything.@@ <</if>> <<set $activeSlave.devotion += 4, $rep += 100>> <<if canDoVaginal($activeSlave)>> @@ -8478,7 +8482,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Punish her for disobedience, but address her anal pain">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You patiently and calmly explain to $him that disobeying orders isn't acceptable, but that too much pain from her buttplug is a sign that something isn't right. First, you inform $him, $he will have to be punished for the disobedience, since $he should have brought her trouble to you instead of disobeying. $He's almost willing as you bend her over <<if $activeSlave.belly >= 300000>>her _belly middle<<else>>the desk<</if>> and spank her buttocks severely, unsure whether to resent the corporal punishment or appreciate your measured response. When you're done tanning $his ass, $he's surprised to feel a cool, lubricated digit working its way into $his anus. $He stiffens a little but eventually relaxes enough to take the finger, then two, and finally three, before you gently and slowly emplace her plug. You instruct her kindly on how to relax in the future when $he inserts it on her own. $He @@.hotpink;appreciates@@ your approach. + You patiently and calmly explain to $him that disobeying orders isn't acceptable, but that too much pain from her buttplug is a sign that something isn't right. First, you inform $him, $he will have to be punished for the disobedience, since $he should have brought her trouble to you instead of disobeying. $He's almost willing as you bend her over <<if $activeSlave.belly >= 300000>>her _belly middle<<else>>the desk<</if>> and spank $his buttocks severely, unsure whether to resent the corporal punishment or appreciate your measured response. When you're done tanning $his ass, $he's surprised to feel a cool, lubricated digit working its way into $his anus. $He stiffens a little but eventually relaxes enough to take the finger, then two, and finally three, before you gently and slowly emplace her plug. You instruct her kindly on how to relax in the future when $he inserts it on her own. $He @@.hotpink;appreciates@@ your approach. <<set $activeSlave.devotion += 4>> <</replace>> <</link>> @@ -8536,7 +8540,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $activeSlave.butt > 12>> thankful that you reserved a seat for both of her massive cheeks. <<elseif $activeSlave.belly >= 300000>> - thankful that the front row has plenty of room for her _belly belly to occupy. + thankful that the front row has plenty of room for $his _belly belly to occupy. <<elseif $activeSlave.butt > 6>> carefully fitting her big bottom into the seat. <<elseif $activeSlave.boobs > 4000>> @@ -8544,7 +8548,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> $He cheers lustily at all the right moments, earning repeated crowd focus shots on the big screen; many fans wonder who their ridiculously hot fellow fan is before @@.green;recognizing you,@@ putting two and two together, and realizing enviously that $he's your sex slave. Since this is the Free Cities, the big screen gives her more attention rather than cutting away when $he intentionally cheers hard enough that her skirt rides up. <<if $activeSlave.broodmother == 2 && $activeSlave.preg > 37>> - The only slightly embarrassing incident is when $he's standing up to rally the crowd behind $him, facing away from the game and goes into labor on another of her brood; the contractions forcing $him to lean forward onto her _belly stomach and give the players below a clear view of her crowning child. + The only slightly embarrassing incident is when $he's standing up to rally the crowd behind $him, facing away from the game and goes into labor on another of her brood; the contractions forcing $him to lean forward onto $his _belly stomach and give the players below a clear view of her crowning child. <<elseif $activeSlave.belly < 300000>> The only slightly embarrassing incident is when $he's standing up to rally the crowd behind $him, facing away from the game and bending down to show cleavage to the stands in such a way that her <<if ($activeSlave.butt > 5)>>massive ass<<elseif ($activeSlave.butt > 2)>>big butt<<else>>nice ass<</if>> lifts her skirt up enough that the players below can clearly see her <<if ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<elseif $activeSlave.anus > 0>>tight asshole<<else>>virgin asshole<</if>><<if $activeSlave.vagina > 3>> and gaping pussy<<elseif $activeSlave.vagina > 2>> and used pussy<<elseif $activeSlave.vagina > 1>> and lovely pussy<<elseif $activeSlave.vagina > 0>> and tight pussy<<elseif $activeSlave.vagina == 0>> and virgin pussy<</if>>. <<else>> @@ -8751,7 +8755,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Surprise sex">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You uncoil from under the sheet like a striking serpent, tackling her $activeSlave.skin body off the edge of the bed<<if ($activeSlave.bellyPreg >= 1500)>>, twisting in midair,<</if>> and onto the floor with a crash. The wind is knocked out of her with an audible grunt as<<if ($activeSlave.bellyPreg >= 1500)>> $he lands on top of you and rolls over<<else>> you land on top of her<</if>>. + You uncoil from under the sheet like a striking serpent, tackling $his $activeSlave.skin body off the edge of the bed<<if ($activeSlave.bellyPreg >= 1500)>>, twisting in midair,<</if>> and onto the floor with a crash. The wind is knocked out of her with an audible grunt as<<if ($activeSlave.bellyPreg >= 1500)>> $he lands on top of you and rolls over<<else>> you land on top of her<</if>>. <<if ($activeSlave.bellyPreg < 1500)>> <<if $activeSlave.belly >= 10000>> $His _belly belly squashes out to either side of $his torso, @@ -8812,7 +8816,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Surprise buttsex">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You uncoil from under the sheet like a striking serpent, tackling her $activeSlave.skin body off the edge of the bed<<if ($activeSlave.bellyPreg >= 1500)>>, twisting in midair,<</if>> and onto the floor with a crash. The wind is knocked out of her with an audible grunt as<<if ($activeSlave.bellyPreg >= 1500)>> $he lands on top of you and rolls over<<else>> you land on top of her<</if>>. + You uncoil from under the sheet like a striking serpent, tackling $his $activeSlave.skin body off the edge of the bed<<if ($activeSlave.bellyPreg >= 1500)>>, twisting in midair,<</if>> and onto the floor with a crash. The wind is knocked out of her with an audible grunt as<<if ($activeSlave.bellyPreg >= 1500)>> $he lands on top of you and rolls over<<else>> you land on top of her<</if>>. <<if ($activeSlave.bellyPreg < 1500)>> <<if $activeSlave.belly >= 10000>> $His _belly belly squashes out to either side of $his torso, @@ -8988,7 +8992,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> "Really, <<if $activeSlave.rudeTitle == 1>><<= PoliteRudeTitle($activeSlave)>><<else>><<Master>><</if>>?" $he asks hopefully. <</if>> - You whisper into her ear that yes, $he will be all right as long as $he does her best. $He wiggles $his butt against you a little and giggles <<if $PC.dick == 1>>at the responding stiffness $he feels between her buttocks<<else>>as you shove $him to $his knees<</if>>. $He shimmies down and <<if $PC.dick == 1>>takes you into $his mouth<<if $PC.vagina == 1>> and does her best to reach the top of your pussy with the tip of $his tongue<</if>><<else>>eats you out<</if>>, <<if canSee($activeSlave)>>looking you in the eyes the whole time and <</if>>@@.hotpink;smiling@@ as much as $he can manage with <<if $PC.dick == 1>>a dick in $his mouth<<else>>$his tongue working your clit<</if>>. + You whisper into her ear that yes, $he will be all right as long as $he does her best. $He wiggles $his butt against you a little and giggles <<if $PC.dick == 1>>at the responding stiffness $he feels between $his buttocks<<else>>as you shove $him to $his knees<</if>>. $He shimmies down and <<if $PC.dick == 1>>takes you into $his mouth<<if $PC.vagina == 1>> and does her best to reach the top of your pussy with the tip of $his tongue<</if>><<else>>eats you out<</if>>, <<if canSee($activeSlave)>>looking you in the eyes the whole time and <</if>>@@.hotpink;smiling@@ as much as $he can manage with <<if $PC.dick == 1>>a dick in $his mouth<<else>>$his tongue working your clit<</if>>. <<set $activeSlave.devotion += 4, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>> @@ -8997,11 +9001,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> $He's so intent on trying to suck off the food dispenser that $he doesn't hear you enter the room. $He starts with surprise when you seize $him and push $him <<if $activeSlave.belly >= 300000>> - over her _belly belly, face-down into the counter. + over $his _belly belly, face-down into the counter. <<else>> face-down across the counter. <</if>> - After making $him confirm that $he can hear you, you patiently repeat the very simple instructions for getting meals from the kitchen. Then, you tell $him to repeat them. $He manages the first step fine and has completely forgotten the second. The moment $he hesitates, $he has an instant to hear the rush of air trying to get out of the way of your speeding palm before it contacts the $activeSlave.skin skin of her buttocks. $He writhes and cries and promises to try harder, but her poor rear end is almost raw before $he gets it all right. $He leaves the kitchen snuffling sadly to $himself, but in the coming days $he really does seem to @@.gold;do her best@@ to avoid another beating. + After making $him confirm that $he can hear you, you patiently repeat the very simple instructions for getting meals from the kitchen. Then, you tell $him to repeat them. $He manages the first step fine and has completely forgotten the second. The moment $he hesitates, $he has an instant to hear the rush of air trying to get out of the way of your speeding palm before it contacts the $activeSlave.skin skin of $his buttocks. $He writhes and cries and promises to try harder, but $his poor rear end is almost raw before $he gets it all right. $He leaves the kitchen snuffling sadly to $himself, but in the coming days $he really does seem to @@.gold;do $his best@@ to avoid another beating. <<set $activeSlave.trust -= 5>> <</replace>> <</link>> @@ -9009,13 +9013,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Sentence $him to a month in the arcade">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $activeSlave.slaveName screams and begs when $he realizes what her punishment for being stupid is to be, but you are obdurate. + $activeSlave.slaveName screams and begs when $he realizes what $his punishment for being stupid is to be, but you are obdurate. <<if ($activeSlave.muscles > 30)>> $His powerful form has to be sedated for immurement in the arcade. <<elseif ($activeSlave.weight >= 190)>> $He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to. <<elseif $activeSlave.belly >= 120000>> - $He is so enormously gravid that immuring $him in the arcade is a hassle, even though her _belly middle limits $his ability to struggle. + $He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits $his ability to struggle. <<elseif ($activeSlave.weight >= -10)>> $His desperate struggles make immuring $him in the arcade difficult. <<elseif $activeSlave.belly >= 1500>> @@ -9025,7 +9029,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $His thin form makes immuring $him in the arcade pathetically easy. <</if>> - After $he's properly confined, the only sign of her discomfiture is a slight movement of her $activeSlave.skin butt as $he wriggles desperately against her restraints. + After $he's properly confined, the only sign of her discomfiture is a slight movement of $his $activeSlave.skin butt as $he wriggles desperately against her restraints. <<= assignJob($activeSlave, "be confined in the arcade")>> <<set $activeSlave.sentence = 4>> <</replace>> @@ -9038,11 +9042,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Cheer her up">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You close in on $him, and $he starts to present $himself with the force of long habit. However, you take $him by the hand and draw her in close, running your fingertips along her cheekbone, looking into her $activeSlave.eyeColor eyes. <<if canSee($activeSlave)>>$He only holds your gaze for a brief moment before blushing and looking down again,<<else>>Once $he feels your hand stop, $he quickly glances down while<</if>> muttering another apology. You raise her chin again with a gentle hand and give $him a deep kiss. After a moment $he hugs you with almost painful + You close in on $him, and $he starts to present $himself with the force of long habit. However, you take $him by the hand and draw $him in close, running your fingertips along her cheekbone, looking into $his $activeSlave.eyeColor eyes. <<if canSee($activeSlave)>>$He only holds your gaze for a brief moment before blushing and looking down again,<<else>>Once $he feels your hand stop, $he quickly glances down while<</if>> muttering another apology. You raise her chin again with a gentle hand and give $him a deep kiss. After a moment $he hugs you with almost painful <<if $activeSlave.belly >= 100000>> - fierceness, a feat given the size of her _belly <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>belly, where + fierceness, a feat given the size of $his _belly <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>belly, where <<elseif $activeSlave.belly >= 5000>> - fierceness, pushing her _belly <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>belly into yours, where + fierceness, pushing $his _belly <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>belly into yours, where <<else>> fierceness, and <</if>> @@ -9082,7 +9086,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> $He gets a weekly health exam from the automated systems, which also do their best to monitor her well-being, but $he does not protest as you take $him to the surgery and give $him a <<if $PC.medicine >= 100>>professional examination. It feels good to put the old skills to use on an attractive patient<<else>>thorough examination<</if>>. There's nothing the matter other than that $he hasn't been 18 for a long time. $He looks a little sad at some of the results, but whenever $he does, you place a hand on $his cheek and give $him a kiss. $He gets the idea. "I under<<s>>tand, <<Master>>. I can <<s>>till <<s>>erve you," $he <<say>>s. - You adjust her diet and exercise a little, which should @@.green;slightly improve@@ $his health<<if $PC.medicine >= 100>>, and prescribe some new supplements that might help her @@.green;feel her best@@ all the time<<set $activeSlave.health += 10>><</if>>. As $he gets up from the chair and makes to resume her duties, you give $him a light swat across the buttocks. $He squeaks and turns to @@.mediumaquamarine;giggle at you,@@ giving you a broad wink and shaking $his tits a little for you. + You adjust her diet and exercise a little, which should @@.green;slightly improve@@ $his health<<if $PC.medicine >= 100>>, and prescribe some new supplements that might help her @@.green;feel her best@@ all the time<<set $activeSlave.health += 10>><</if>>. As $he gets up from the chair and makes to resume $his duties, you give $him a light swat across the buttocks. $He squeaks and turns to @@.mediumaquamarine;giggle at you,@@ giving you a broad wink and shaking $his tits a little for you. <<set $activeSlave.health += 10, $activeSlave.trust += 4>> <</replace>> <</link>> @@ -9120,7 +9124,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> You finger fuck her for a while, the sting of the soap on her sensitive insides making her gasp. <</if>> - As $he moans down on the shower floor, you lie down behind $him, spooning her helpless body<<if $activeSlave.belly >= 5000>>, your hands encircling her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>><</if>>. + As $he moans down on the shower floor, you lie down behind $him, spooning her helpless body<<if $activeSlave.belly >= 5000>>, your hands encircling $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>><</if>>. <<if $PC.dick == 1>> Your cock slides into her with ease <<elseif $PC.boobs == 1>> @@ -9224,10 +9228,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "obedient bitchy">> -<<link "Beg her pardon and offer to loan the bitch to her">> +<<link "Beg her pardon and offer to loan the bitch to $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - The businesswoman's anger turns to malicious anticipation as you call $activeSlave.slaveName over and inform $him that you and the businesswoman have decided $activeSlave.slaveName will be spending the night with her. Now that you look at your business partner, she has certain signs of a sadist. $activeSlave.slaveName notices too, and begins to cry<<if $activeSlave.bellyPreg >= 1500>> and shield $his pregnancy<</if>> as the businesswoman promises that there will be "no permanent damage." $activeSlave.slaveName is unceremoniously returned in the early hours of the morning. $His back and buttocks have been meticulously flogged right up to the very edge of damage, leaving angry marks across $his $activeSlave.skin skin. $His mouth lolls open, as though $he's been doing little but give cunnilingus. <<if $activeSlave.vagina != -1>>$His pussy,<<elseif $activeSlave.dick == 0>>$His shamefully featureless groin with its tiny little hole,<<else>>$His dick,<</if>> anus,<<if $activeSlave.belly >= 10001>> popped navel,<</if>> and even $his nipples show signs of torture. Whenever $he thinks of a sharp remark in the future, @@.hotpink;$he'll remember the pain and keep $his mouth shut.@@ + The businesswoman's anger turns to malicious anticipation as you call $activeSlave.slaveName over and inform $him that you and the businesswoman have decided $activeSlave.slaveName will be spending the night with $him. Now that you look at your business partner, she has certain signs of a sadist. $activeSlave.slaveName notices too, and begins to cry<<if $activeSlave.bellyPreg >= 1500>> and shield $his pregnancy<</if>> as the businesswoman promises that there will be "no permanent damage." $activeSlave.slaveName is unceremoniously returned in the early hours of the morning. $His back and buttocks have been meticulously flogged right up to the very edge of damage, leaving angry marks across $his $activeSlave.skin skin. $His mouth lolls open, as though $he's been doing little but give cunnilingus. <<if $activeSlave.vagina != -1>>$His pussy,<<elseif $activeSlave.dick == 0>>$His shamefully featureless groin with its tiny little hole,<<else>>$His dick,<</if>> anus,<<if $activeSlave.belly >= 10001>> popped navel,<</if>> and even $his nipples show signs of torture. Whenever $he thinks of a sharp remark in the future, @@.hotpink;$he'll remember the pain and keep $his mouth shut.@@ <<set $activeSlave.behavioralFlaw = "none", $activeSlave.oralCount += 5, $oralTotal += 5>> <</replace>> <</link>> @@ -9332,7 +9336,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Make an example by forcing $him to take a massive dose">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You take $him by the shoulders, look into $his eyes, and tell her you'll fix things so $he doesn't mind so much. $He looks hopeful, even when you tell $him to take her pill. $He does, and you hand her another. And another. $He's crying with dread by the fourth pill, knowing that this is her punishment for complaining. $His pupils dilate, $he begins to breathe hard, and her $activeSlave.skin skin flushes badly. $He tries to beg you to fuck her but can't seem to find the words. $He begins to masturbate compulsively, so hard that $he collapses to the kitchen floor with her first spastic orgasm. + You take $him by the shoulders, look into $his eyes, and tell her you'll fix things so $he doesn't mind so much. $He looks hopeful, even when you tell $him to take her pill. $He does, and you hand her another. And another. $He's crying with dread by the fourth pill, knowing that this is $his punishment for complaining. $His pupils dilate, $he begins to breathe hard, and $his $activeSlave.skin skin flushes badly. $He tries to beg you to fuck her but can't seem to find the words. $He begins to masturbate compulsively, so hard that $he collapses to the kitchen floor with her first spastic orgasm. <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> $His cock is painfully compressed by her chastity cage, but it does nothing to stop her frantic efforts to come. <<elseif canAchieveErection($activeSlave)>> @@ -9356,7 +9360,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $His whole body spasms with orgasm, but $he doesn't even pause her efforts to draw out an orgasm by any means possible. <</if>> - For the hour or so it takes $him to pass out, slaves using the kitchen have to step over her prostrate, orgasming body, lying in a pool of her own drool, tears, sweat, and fluids. The next time you see her in the kitchen, $he takes her medicine like a @@.gold;good $girl.@@ All your aphrodisiac addicts recognize the symptoms and the punishment, and @@.gold;avoid even thinking@@ about resisting the system. + For the hour or so it takes $him to pass out, slaves using the kitchen have to step over her prostrate, orgasming body, lying in a pool of her own drool, tears, sweat, and fluids. The next time you see $him in the kitchen, $he takes her medicine like a @@.gold;good $girl.@@ All your aphrodisiac addicts recognize the symptoms and the punishment, and @@.gold;avoid even thinking@@ about resisting the system. <<set $slaves.forEach(function(s) { if (s.aphrodisiacs > 0 || s.inflationType == "aphrodisiac") { s.trust -= 5; } })>> <</replace>> <</link>> @@ -9383,7 +9387,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "impregnation please">> -<<link "Put a slave in her">> +<<link "Put a slave in $him">> <<if $activeSlave.mpreg == 1>> <<if !canDoAnal($activeSlave)>> You slowly undo her chastity, allowing $him to be overwhelmed with anticipation of the deed to come. @@ -9548,7 +9552,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</link>> <</if>> <<if ($cumSlaves >= 5)>> - <br><<link "Use the Dairy cockmilk to impregnate her">> + <br><<link "Use the Dairy cockmilk to impregnate $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> You tell her $he'll be having everyone's children. $He looks puzzled until you put her on the couch, legs spread, and produce a large, soft injector full of fresh cum. At this $he giggles and thanks you; $he rapturously rubs $his belly as you gently push the injector home. For the rest of the week, $he appears in your office morning and night, receiving the seed of every slave you're currently having cockmilked. $He goes about her other business with a @@.hotpink;deeply pleased@@ expression on her face. Whenever $he has a spare moment $he steals down to the Dairy to hug the slaves there or otherwise show them a little affection. @@ -9604,7 +9608,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "See how rough you can be and still get $him to cum">> <<EventNameDelink $activeSlave>> <<replace "#result">> - The aphrodisiac dosage $he's on will let her orgasm to almost anything. You spend a few minutes playing with $his nipples, skillfully edging her away from climax, and $he's almost vibrating with discomfort. $He's so desperate that $he sobs with relief when you order $him to <<if ($activeSlave.heels == 1) && ($activeSlave.shoes != "heels")>>kneel<<elseif ($activeSlave.shoes == "heels")>>totter up<<else>>stand<</if>> <<if $activeSlave.belly >= 5000>>_belly belly <</if>>against a wall and spread her buttocks. A little saliva and<<if $PC.vagina == 1>> a bit of your own pussyjuice, transferred by a couple of fingers, and<</if>> <<if $PC.dick == 0>>your vibrating strap-on<<else>>your dick<</if>> is up her willing ass. The position is uncomfortable for $him, and you are not gentle, but $he comes anyway. By the end of the night her butthole is so sore that $he <<if $activeSlave.belly >= 5000>>lies on her side<<else>>lies on $his stomach<</if>> every chance $he gets. $His submissiveness @@.hotpink;has increased.@@ + The aphrodisiac dosage $he's on will let her orgasm to almost anything. You spend a few minutes playing with $his nipples, skillfully edging her away from climax, and $he's almost vibrating with discomfort. $He's so desperate that $he sobs with relief when you order $him to <<if ($activeSlave.heels == 1) && ($activeSlave.shoes != "heels")>>kneel<<elseif ($activeSlave.shoes == "heels")>>totter up<<else>>stand<</if>> <<if $activeSlave.belly >= 5000>>_belly belly <</if>>against a wall and spread $his buttocks. A little saliva and<<if $PC.vagina == 1>> a bit of your own pussyjuice, transferred by a couple of fingers, and<</if>> <<if $PC.dick == 0>>your vibrating strap-on<<else>>your dick<</if>> is up her willing ass. The position is uncomfortable for $him, and you are not gentle, but $he comes anyway. By the end of the night her butthole is so sore that $he <<if $activeSlave.belly >= 5000>>lies on her side<<else>>lies on $his stomach<</if>> every chance $he gets. $His submissiveness @@.hotpink;has increased.@@ <<set $activeSlave.devotion += 4>> <</replace>> <</link>> @@ -9662,7 +9666,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Join $him in the shower">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You step into the running water and help $him to her feet with exaggerated gallantry. $He seems surprised <<if canSee($activeSlave)>>and stares at<<else>>faces<</if>> you through the steam for a moment before looking away with a blush. Before long you have her back against the shower wall, her titanic udders<<if $activeSlave.belly >= 5000>> and _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>> belly<</if>> offering an amusing challenge as they slide soapily between you as you fuck. $He comes in no time at all, and a brief massage of her huge soapy nipples produces a whimpering aftershock orgasm. <<if canSee($activeSlave)>>$His $activeSlave.eyeColor eyes stare straight into yours<<else>>You stare into her $activeSlave.eyeColor eyes<</if>> as $he writhes with overstimulation, @@.mediumaquamarine;her trust in your stewardship of her pleasure total.@@ + You step into the running water and help $him to her feet with exaggerated gallantry. $He seems surprised <<if canSee($activeSlave)>>and stares at<<else>>faces<</if>> you through the steam for a moment before looking away with a blush. Before long you have her back against the shower wall, her titanic udders<<if $activeSlave.belly >= 5000>> and _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>> belly<</if>> offering an amusing challenge as they slide soapily between you as you fuck. $He comes in no time at all, and a brief massage of her huge soapy nipples produces a whimpering aftershock orgasm. <<if canSee($activeSlave)>>$His $activeSlave.eyeColor eyes stare straight into yours<<else>>You stare into $his $activeSlave.eyeColor eyes<</if>> as $he writhes with overstimulation, @@.mediumaquamarine;her trust in your stewardship of her pleasure total.@@ <<if canDoVaginal($activeSlave)>><<= VaginalVCheck()>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck()>><</if>> <<set $activeSlave.devotion += 4>> <</replace>> @@ -9743,7 +9747,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <</replace>> <</link>> -<br><<link "Make sure her first fuck puts her in her place">> +<br><<link "Make sure her first fuck puts $him in her place">> <<EventNameDelink $activeSlave>> <<replace "#result">> You throw her onto the couch beside your desk, $he fails to stop her from losing balance with her flailing <<if $activeSlave.amp == 1>>stumps<<else>>limbs<</if>>. $He looks around doubtfully; $he's already started to wonder whether this was a mistake. In a few moments $he knows it for sure as $he feels<<if !canDoVaginal($activeSlave)>> her vaginal chastity ripped off and<</if>> the burning sensation of a lubricated <<if $PC.dick == 0>>strap-on<<else>>dickhead<</if>> forcing her virgin pussy wide. You have her face shoved deep between the leather cushions and you ignore the muffled sounds coming from $him. $He limply tries to relax for her beloved master, but the painful sensation coming from her crotch causes $him to start to writhe uncontrollably. $He pushes against the couch, trying to endure the pounding. When you finish, the poor slave is left lying on the couch with <<if $PC.dick == 0>>a<<else>>a thin dribble of ejaculate escaping from her<</if>> @@.lime;newly fucked vagina,@@ a stream of drying tears running down each side of her face,<<if $activeSlave.dick > 0>> a single drop of precum at the tip of her totally flaccid dick,<</if>> and a new understanding of @@.gold;her place in life.@@ @@ -9796,7 +9800,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <</replace>> <</link>> -<br><<link "Make sure her first buttfuck puts her in her place">> +<br><<link "Make sure her first buttfuck puts $him in her place">> <<EventNameDelink $activeSlave>> <<replace "#result">> You throw her onto the couch face-down<<if $activeSlave.belly >= 5000>>, $his rear pushed into the air by her rounded belly<</if>>, catching a glimpse of her doubtful face as $he goes; $he's already started to wonder whether this was a mistake. In a few moments $he knows it for sure as $he feels<<if !canDoAnal($activeSlave)>> her anal chastity ripped off and<</if>> the burning sensation of a lubricated <<if $PC.dick == 0>>strap-on<<else>>dickhead<</if>> forcing her virgin sphincter wide. Whatever noises $he might be making are pretty inaudible, since you have her sobbing face shoved deep between the leather cushions. $He tries not to struggle and relax for her beloved master, but $his body rebels against the pain and $he starts to wriggle spastically, trying to burrow into the couch to get away from the pounding. When you finish, the poor slave is left lying on the couch with <<if $PC.dick == 0>>a<<else>>a thin dribble of ejaculate escaping from her<</if>> @@.lime;newly fucked butthole,@@ a stream of drying tears running down each side of her face,<<if $activeSlave.dick > 0>> a single drop of precum at the tip of her totally flaccid dick,<</if>> and a new understanding of @@.gold;her place in life.@@ @@ -9856,7 +9860,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> gentle anal sex <</if>> - for the rest of the night<<if $PC.vagina == 1>><<if $PC.dick == 1>>; whenever you go soft for a moment, all $he has to do is eat you out, and you're rock hard again<</if>><</if>>. As you move from position to position<<if $activeSlave.belly >= 5000>>, and exploring several unusual ones thanks to her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>><</if>>, $he twists to face you whenever $he can. When $he manages it, $he kisses you when $he can reach your lips, and $he <<if canSee($activeSlave)>>stares deeply into your eyes<<else>>meets your face with her own<</if>> when $he cannot. $His trust in you @@.mediumaquamarine;has increased.@@ + for the rest of the night<<if $PC.vagina == 1>><<if $PC.dick == 1>>; whenever you go soft for a moment, all $he has to do is eat you out, and you're rock hard again<</if>><</if>>. As you move from position to position<<if $activeSlave.belly >= 5000>>, and exploring several unusual ones thanks to $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>><</if>>, $he twists to face you whenever $he can. When $he manages it, $he kisses you when $he can reach your lips, and $he <<if canSee($activeSlave)>>stares deeply into your eyes<<else>>meets your face with her own<</if>> when $he cannot. $His trust in you @@.mediumaquamarine;has increased.@@ <<set $activeSlave.trust += 4>> <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> <<= BothVCheck()>> @@ -9870,7 +9874,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>> <</if>> <<if canDoAnal($activeSlave)>> -<br><<link "Assrape her">> +<br><<link "Assrape $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> You order $him to kneel. $He looks hopeful and complies, but her anticipation of enjoyable sex vanishes with a pathetic little gasp when you<<if $PC.dick == 0>> don a strap-on and<</if>> <<if $PC.vagina == 1>>use a couple of fingers to collect some of your pussyjuice for improvised lube<<else>>spit on her butthole<</if>>. With only a little saliva as lubrication, you brutally sodomize $him, fucking her <<if $seeRace == 1>>$activeSlave.race <</if>>ass to the limit of what you can get away with without damaging $him. @@ -9884,7 +9888,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</replace>> <</link>><<if ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>> <</if>> -<br><<link "Play with her">> +<br><<link "Play with $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> You get into bed and crook a finger, silently ordering $him to join you. $He<<if $activeSlave.clothes != "no clothing">> hurries out of $his clothes and<</if>> bounces over, @@ -9911,7 +9915,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> her pussylips shining with arousal. <</if>> - As $he <<if $activeSlave.belly >= 10000>>hefts her <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>bulk<<else>>climbs<</if>> into bed you take her $activeSlave.skin hand and guide her into your lap, facing away from you. $He sighs happily and snuggles her + As $he <<if $activeSlave.belly >= 10000>>hefts her <<if $activeSlave.bellyPreg >= 3000>>gravid <</if>>bulk<<else>>climbs<</if>> into bed you take $his $activeSlave.skin hand and guide her into your lap, facing away from you. $He sighs happily and snuggles her <<if $activeSlave.weight > 160>> rippling <<elseif $activeSlave.weight > 95>> @@ -9925,7 +9929,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> soft <</if>> - back into your chest. You<<if $activeSlave.belly >= 5000>> embrace her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly before you<</if>> + back into your chest. You<<if $activeSlave.belly >= 5000>> embrace $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly before you<</if>> <<if ($activeSlave.boobs > 2000)>> run your hands across her massive chest <<elseif ($activeSlave.boobs > 800)>> @@ -10097,7 +10101,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.devotion += 4>> <</replace>> <</link>> -<br><<link "Share some refreshments with her">> +<br><<link "Share some refreshments with $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> You reach into the back of your desk, where your private reserves are, and wordlessly offer $him a @@ -10325,7 +10329,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t $he licks $his lips unconsciously. $He seems to be developing the beginnings of a lovely @@.lightcoral;oral fixation.@@ <<set $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>> <<else>> - $he betrays mixed feelings. The shocking intimacy of reaching sexual release as $he used $his mouth to pleasure you seems to be @@.hotpink;affecting her.@@ + $he betrays mixed feelings. The shocking intimacy of reaching sexual release as $he used $his mouth to pleasure you seems to be @@.hotpink;affecting $him.@@ <<set $activeSlave.devotion += 4>> <</if>> <<set $activeSlave.oralCount++, $oralTotal++>> @@ -10334,7 +10338,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<if ($activeSlave.fetish != "buttslut") || ($activeSlave.fetishKnown != 1)>> <<if ($activeSlave.vagina == -1) && ($activeSlave.attrXY <= 65)>> -<br><<link "Make her cum like a girl">> +<br><<link "Make $him cum like a girl">> <<EventNameDelink $activeSlave>> <<replace "#result">> You order $him to get $his ass up on your desk. $He obeys, though not without a flicker of trepidation. $He points $his butt at you like a sex slave should, and doesn't crane around to see what you're doing behind $him, but $he's stiff with the awareness that <<if $PC.dick == 1>>there's almost certainly a hard<<if $PC.vagina == 1>> futa<</if>> dick about<<else>>you're almost certainly donning a strap-on<</if>> to slide inside her girly asspussy. $He's not wrong, and $he lets out a little moan as <<if $PC.dick == 1>>your cockhead<<if $PC.vagina == 1>>, which you kindly lubed with a bit of your pussyjuice,<</if>><<else>>its broad tip<</if>> <<if $activeSlave.anus > 2>>slides easily inside her whorish anus<<elseif $activeSlave.anus == 2>>slides up her experienced butthole<<else>>forces its way inside her tight sphincter<</if>>. @@ -10356,7 +10360,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> $He seems a little too focused on her hot cunt. You order $him to get up on your desk, and $he obeys eagerly, her <<if canSee($activeSlave)>>$activeSlave.eyeColor eyes shining<<else>>facial expression filled<</if>> with lust. <<if canSee($activeSlave)>>They focus<<else>>$He focuses<</if>> on <<if $PC.dick == 1>>your cock as you bring it to bear<<if $PC.vagina == 1>>, not to mention the pussy at its base<</if>><<else>>your strap-on as you step into it<</if>>, and $he's about to express her gratitude when you push the slave, who is sitting on the edge of your desk with $his legs spread to provide you access to $his pussy, over onto her back. $He barely has time to reorient $himself when $he feels <<if $activeSlave.anus > 2>>a sudden fullness in her loose ass<<elseif $activeSlave.anus == 2>>a presence inside her experienced ass<<else>>something starting to push its way up her poor little bottom<</if>>. <br><br> - $He cannot hide her disappointment, but has the presence of mind not to protest as you assfuck her hard enough that her <<if $activeSlave.boobs > 2000>>ridiculous tits almost hit her in the face with each stroke<<elseif $activeSlave.boobs > 800>>big boobs bounce all over the place<<else>>boobs bounce<</if>><<if $activeSlave.belly >= 10000>> and taut belly is forced back<</if>>. $His orgasm sneaks up on $him, and comes by surprise, forcing a squeal out of her as her sphincter tightens down involuntarily. $He gets up gingerly, clearly feeling sore, + $He cannot hide her disappointment, but has the presence of mind not to protest as you assfuck her hard enough that her <<if $activeSlave.boobs > 2000>>ridiculous tits almost hit $him in the face with each stroke<<elseif $activeSlave.boobs > 800>>big boobs bounce all over the place<<else>>boobs bounce<</if>><<if $activeSlave.belly >= 10000>> and taut belly is forced back<</if>>. $His orgasm sneaks up on $him, and comes by surprise, forcing a squeal out of her as her sphincter tightens down involuntarily. $He gets up gingerly, clearly feeling sore, <<if (random(0,1) == 1)>> and looks preoccupied. $He reaches idly around and massages her well-fucked backdoor meditatively, biting her lower lip as $he investigates. Maybe, $he seems to be thinking, @@.lightcoral;anal is fun?@@ <<set $activeSlave.fetish = "buttslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 10>> @@ -10439,7 +10443,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</replace>> <</link>><<if ($activeSlave.anus == 0) && canDoAnal($activeSlave)>> //This option will take anal virginity//<</if>> <<if canDoAnal($activeSlave)>> -<br><<link "Use her cage to torture her">> +<br><<link "Use her cage to torture $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> You make no reply at all, but walk around to stand behind the slave. $He knows $he's fucked, and starts to shake with fear. You put a foot on $his ass and shove her down<<if $activeSlave.belly >= 5000>> so $his rear is pointed into the air again<<else>> to lie flat on the floor<</if>>, and then straddle $him, shoving <<if $PC.dick == 1>>your<<if $PC.vagina == 1>> futa<</if>> cock up $his butt<<else>>one more finger than $he can comfortably take up $his butt<</if>>. $He tries to beg some more, but you give $him a warning slap, and $he shuts up. Despite your roughness, $he's so horny that $he starts to get hard. You can't see or feel this directly, of course, but it's easy to tell from her desperate sobbing and involuntary writhing, and the lovely spasming of her anal sphincter. $His tears dry up as $he builds towards a climax; orgasm might be an uncomfortable experience for $him, but it will buy $him a few minutes free of discomfort. @@ -10510,7 +10514,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t $He questions what you mean until you grab her head and push her face against your dick. $He tries to recoil, bringing $his hands to your balls. You continue rubbing yourself against her face as begins to fondle you, enjoying your masculine features. $He groans as her dick rapidly hardens at the feel of your penis against your face and the scent of your arousal and precum. You know just how arousing $he finds the male form, and you play off that until the aroused slave is in tears from the pressure on $his cock. <</if>> <</if>> - You leave her in a @@.gold;worse state than $he started in,@@ $he's hornier than ever and still lacks any satisfying release. But that's her problem, not yours.<<if $PC.belly >= 10000>> Even when so heavily pregnant, it feels good to know you can still bring a dick to full attention.<</if>> + You leave $him in a @@.gold;worse state than $he started in,@@ $he's hornier than ever and still lacks any satisfying release. But that's her problem, not yours.<<if $PC.belly >= 10000>> Even when so heavily pregnant, it feels good to know you can still bring a dick to full attention.<</if>> <<set $activeSlave.trust -= 4>> <</replace>> <</link>> @@ -10675,7 +10679,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> miniscule <</if>> - lips are level with your <<if $PC.dick == 0>>fake dick<<else>>dick<</if>><<if $activeSlave.belly >= 100000>>, straddle her _belly belly<</if>>, and push it into $his mouth without waiting for $him to get ready. $He gags, but does her best to work her tired mouth. When you're finally satisfied and you let her up, you aim another slap at her + lips are level with your <<if $PC.dick == 0>>fake dick<<else>>dick<</if>><<if $activeSlave.belly >= 100000>>, straddle $his _belly belly<</if>>, and push it into $his mouth without waiting for $him to get ready. $He gags, but does her best to work her tired mouth. When you're finally satisfied and you let her up, you aim another slap at her <<if ($activeSlave.butt > 12)>> inhuman ass <<elseif ($activeSlave.butt > 5)>> @@ -10691,7 +10695,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.devotion += 4, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>> -<br><<link "Just talk with her">> +<br><<link "Just talk with $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> You take $him by the hand, lead $him to a nearby couch, and sit down with $him, letting her seat $himself beside you so $he can @@ -10702,11 +10706,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> without putting too much weight on her poor overused butthole. You ask her about your day. <<if !canTalk($activeSlave)>> - $He uses gestures to recount it through her tears. Apparently while one guy was using $his anus, another thought it was hot and waited for him to be done before using her in turn, without letting her rest or clean $himself. It took four cocks total for another slave to notice and rescue $him. + $He uses gestures to recount it through her tears. Apparently while one guy was using $his anus, another thought it was hot and waited for him to be done before using $him in turn, without letting her rest or clean $himself. It took four cocks total for another slave to notice and rescue $him. <<else>> $He <<say>>s, a little tearfully, "<<Master>>, thi<<s>> guy wanted to u<<s>>e my butt in public. <<S>>o of cour<<s>>e I let him, and he made me <<s>>it in hi<<s>> lap to do it, and held my leg<<s>> back <<s>>o everyone could <<s>>ee! And then another guy thought it wa<<s>> hot and waited, and then fucked me in my a<<ss>> too. Another girl finally noti<<c>>ed and re<<s>>cued me after four cock<<s>>, <<Master>>. I'm really <<s>>ore." <</if>> - $He <<if canSee($activeSlave)>>looks up at you with big $activeSlave.eyeColor eyes<<else>>gazes at you<</if>> for a long moment, a final tear leaking down her $activeSlave.skin cheek, before $he suddenly + $He <<if canSee($activeSlave)>>looks up at you with big $activeSlave.eyeColor eyes<<else>>gazes at you<</if>> for a long moment, a final tear leaking down $his $activeSlave.skin cheek, before $he suddenly <<if !canTalk($activeSlave)>> shakes with mute laughter. <<else>> @@ -10751,7 +10755,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.trust += 2>> <</replace>> <</link>> - <br><<link "Rape her">> + <br><<link "Rape $him">> <<replace "#result2">> But $he's wrong to place that kind of faith in you. As $he withdraws from the kiss, you snake a betraying hand between $his butt and the couch, and shove <<if $activeSlave.anus <= 1>> @@ -10763,7 +10767,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> $He lets out a pained "oh," and then goes silent. For such a little sound, it bears a great weight of @@.gold;betrayed trust.@@ You insert your fingers to the knuckle, making her writhe with discomfort, and then turf her off the couch to land <<if $activeSlave.belly >= 300000>> - across her _belly stomach + across $his _belly stomach <<else>> face first <</if>> @@ -10788,9 +10792,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> You tell $him that $he deserves a reward for coming to you. $He almost bursts into tears and nods jerkily, unable to do anything else. You brush a finger across $his cheek, her ear, $his lips; at each touch $he <<if !canTalk($activeSlave)>>breathes in sharply<<else>>gasps<</if>>. Moving around behind $him, you run a hand down her flank to her hip, and then around to her<<if $activeSlave.belly >= 10000 || $activeSlave.bellyPreg >= 5000>> popped<</if>> navel, and up to cup $his breasts. Your run a thumb <<if $activeSlave.nipples != "fuckable">>over<<else>>into<</if>> each nipple, almost tipping her over the edge. Your hands move down again, <<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>> - spreading her buttocks to tease her clenched anus, and then forward across her perineum. From there, you trace her labia and end with a pinch of $his clit - and this is enough. + spreading $his buttocks to tease her clenched anus, and then forward across her perineum. From there, you trace her labia and end with a pinch of $his clit - and this is enough. <<elseif canDoAnal($activeSlave)>> - spreading her buttocks to tease her clenched anus, and then forward across her perineum - and this is enough. + spreading $his buttocks to tease her clenched anus, and then forward across her perineum - and this is enough. <<elseif canDoVaginal($activeSlave)>> tracing her labia, and then forward to $his clit - and this is enough. <<else>> @@ -10802,7 +10806,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> and almost falling. <</if>> - $He hurries to clean up after $himself, sobbing with relief and thanking you; her submissiveness @@.hotpink;has increased.@@ + $He hurries to clean up after $himself, sobbing with relief and thanking you; $his submissiveness @@.hotpink;has increased.@@ <<set $activeSlave.devotion += 4>> <</replace>> <</link>> @@ -10814,7 +10818,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t $He almost cries with relief when you tell $him to <<switch $activeSlave.fetish>> <<case "submissive">> - lie down on your desk on $his side in the fetal position. $He clambers up hurriedly and hugs $his knees<<if $activeSlave.belly >= 10000>> as best $he can with her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy <</if>>in the way<</if>>, spinning $himself around on the smooth surface so $his rear is pointing right at you. You stand up and pull her over, her $activeSlave.skin skin sliding across the cool glass desktop, until her + lie down on your desk on $his side in the fetal position. $He clambers up hurriedly and hugs $his knees<<if $activeSlave.belly >= 10000>> as best $he can with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy <</if>>in the way<</if>>, spinning $himself around on the smooth surface so $his rear is pointing right at you. You stand up and pull $him over, $his $activeSlave.skin skin sliding across the cool glass desktop, until $his <<if canDoAnal($activeSlave) && canDoVaginal($activeSlave)>> butt is right at the edge of the desk. You warm yourself up with a pussy fuck before shifting your attention to her neglected asshole. <<= BothVCheck(3)>> @@ -10835,7 +10839,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "cumslut">> get under your desk and <<if $PC.dick == 1>>suck a dick<<if $PC.vagina == 1>> and eat a pussy<</if>><<else>>eat pussy<</if>> while you work. <<if $activeSlave.belly >= 120000>> - As her _belly belly bumps into you, you sigh and swivel your chair to the side; there is no way $he'll fit under there in her bloated state. + As $his _belly belly bumps into you, you sigh and swivel your chair to the side; there is no way $he'll fit under there in her bloated state. <</if>> $He's so horny that $he's barely got <<if $PC.dick == 1>>your cock into $his mouth<<else>>$his lips and tongue on your cunt<</if>> before $he climaxes spontaneously, shivering and moaning nicely. You keep her down there for a while, doing light work and orgasming occasionally as $he gently <<if $PC.dick == 1>>blows you<<if $PC.vagina == 1>> and eats you out<</if>><<else>>lavishes attention on your wet vagina<</if>>. <<set $activeSlave.oralCount += 3, $oralTotal += 3>> @@ -10846,7 +10850,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif canAchieveErection($activeSlave)>> $His rock hard cock, <<if $activeSlave.belly >= 150000>> - forced down by the size of her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> as $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> hurriedly along, jerks suddenly and shoots out a little squirt of cum down the underside of $his belly. + forced down by the size of $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>> as $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> hurriedly along, jerks suddenly and shoots out a little squirt of cum down the underside of $his belly. <<else>> sticking straight forward as $he <<if $activeSlave.belly >= 10000>>waddles<<else>>walks<</if>> hurriedly along, jerks suddenly upward and shoots out a little squirt of cum<<if $activeSlave.belly >= 10000>> across the underside of her <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>>. <</if>> @@ -10870,7 +10874,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if canDoAnal($activeSlave)>> $He climaxes the instant your <<if $PC.dick == 1>>dickhead<<else>>strap-on<</if>> touches her <<if $activeSlave.anus > 2>>anal gape<<else>>pucker<</if>>, but $he knows this is just the start, and $he laughs with pleasure as her <<if $activeSlave.anus > 2>>lewd sphincter loosely squeezes<<else>>sphincter tightens against<</if>> the base of <<if $PC.dick == 1>>your cock<<else>>the strap-on<</if>>. You <<if $activeSlave.belly >= 5000>> - spread your legs more and shove the<<if $activeSlave.bellyPreg >= 3000>>pregnant, <</if>>giggling buttslut down so her _belly belly and chest are between your legs, lower your chair a little, and slide yourself back towards your desk to work. + spread your legs more and shove the<<if $activeSlave.bellyPreg >= 3000>>pregnant, <</if>>giggling buttslut down so $his _belly belly and chest are between your legs, lower your chair a little, and slide yourself back towards your desk to work. <<else>> shove the giggling buttslut down so $his chest is resting against the tops of your legs, lower your chair a little, and slide yourself back towards your desk to work. <</if>> @@ -10906,7 +10910,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> but $he knows this is just the start, and $he laughs with pleasure as hug $his rear around <<if $PC.dick == 1>>your cock<<else>>the strap-on<</if>>. You <<if $activeSlave.belly >= 5000>> - spread your legs more and shove the<<if $activeSlave.bellyPreg >= 3000>>pregnant, <</if>>giggling buttslut down so her _belly belly and chest are between your legs, lower your chair a little, and slide yourself back towards your desk to work. + spread your legs more and shove the<<if $activeSlave.bellyPreg >= 3000>>pregnant, <</if>>giggling buttslut down so $his _belly belly and chest are between your legs, lower your chair a little, and slide yourself back towards your desk to work. <<else>> shove the giggling buttslut down so $his chest is resting against the tops of your legs, lower your chair a little, and slide yourself back towards your desk to work. <</if>> @@ -11016,7 +11020,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "masochist">> get $his ass up on your desk and <<if $activeSlave.belly >= 300000>> - lie off the side atop her _belly stomach. + lie off the side atop $his _belly stomach. <<elseif $activeSlave.belly < 1500>> lie on her side. <<else>> @@ -11071,7 +11075,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br> <<link "during insemination play">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can come to you and offer you her <<if ($activeSlave.vagina > 3)>>hopelessly gaped pussy<<elseif ($activeSlave.vagina > 2)>>loose pussy<<elseif ($activeSlave.vagina > 1)>>nice pussy<<else>>tight pussy<</if>>; $he will be allowed to masturbate while you fill her with cum. $He nods through her tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on her side and using one hand to spread her buttocks apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a spurting strap-on<<else>>your cock<</if>> into her spasming cunt. $He masturbates furiously, not even pausing after her first orgasm; her acceptance of sexual slavery @@.hotpink;has increased.@@ + You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can come to you and offer you her <<if ($activeSlave.vagina > 3)>>hopelessly gaped pussy<<elseif ($activeSlave.vagina > 2)>>loose pussy<<elseif ($activeSlave.vagina > 1)>>nice pussy<<else>>tight pussy<</if>>; $he will be allowed to masturbate while you fill her with cum. $He nods through her tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on her side and using one hand to spread $his buttocks apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a spurting strap-on<<else>>your cock<</if>> into her spasming cunt. $He masturbates furiously, not even pausing after her first orgasm; her acceptance of sexual slavery @@.hotpink;has increased.@@ <<= VaginalVCheck(5)>> <<set $activeSlave.devotion += 4>> <<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1)>> @@ -11089,7 +11093,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br> <<link "while $he takes it up the ass">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can come to you and offer you her <<if ($activeSlave.anus > 3)>>hopelessly gaped rectum<<elseif ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<else>>tight asshole<</if>>; $he will be allowed to masturbate while you buttfuck $him. $He nods through her tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on her side and using one hand to spread her buttocks apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into her spasming rectum. $He masturbates furiously, not even pausing after her first orgasm; her acceptance of sexual slavery @@.hotpink;has increased.@@ + You tell $him that $he deserves a way to get off for coming to tell you rather than breaking the rules. For the rest of the week, $he can come to you and offer you her <<if ($activeSlave.anus > 3)>>hopelessly gaped rectum<<elseif ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<else>>tight asshole<</if>>; $he will be allowed to masturbate while you buttfuck $him. $He nods through her tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on her side and using one hand to spread $his buttocks apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into her spasming rectum. $He masturbates furiously, not even pausing after her first orgasm; her acceptance of sexual slavery @@.hotpink;has increased.@@ <<= AnalVCheck(5)>> <<set $activeSlave.devotion += 4>> <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>> @@ -11134,7 +11138,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $PC.dick == 0>>After the momentary pause of your climax, you<<if $PC.vagina == 1>> use a little manual stimulation of your pussy to force yourself to total hardness again and<</if>> resume thrusting<<else>>Your cum leaks out of her used cunt and onto her working hand<</if>>; her acceptance of sexual slavery @@.hotpink;has increased.@@ <<= VaginalVCheck(5)>> <<elseif canDoAnal($activeSlave)>> - For the rest of the week, $he can come to you and offer you her <<if ($activeSlave.anus > 3)>>hopelessly gaped rectum<<elseif ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<else>>tight asshole<</if>>; $he will be allowed to masturbate after, but only after, you are finished with $him. $He nods through her tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on her side and using one hand to spread her buttocks apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into her spasming rectum. You are not gentle, and despite the anal stimulation $he does not orgasm by the time you <<if $PC.dick == 0>>climax to the vibrations of the strap-on, and the pleasure of buttfucking a bitch<<else>>blow your load in $his ass<</if>>. $He's so eager to get off $he doesn't bother to move, and just + For the rest of the week, $he can come to you and offer you her <<if ($activeSlave.anus > 3)>>hopelessly gaped rectum<<elseif ($activeSlave.anus > 2)>>big slit of an asspussy<<elseif ($activeSlave.anus > 1)>>nice asspussy<<else>>tight asshole<</if>>; $he will be allowed to masturbate after, but only after, you are finished with $him. $He nods through her tears and <<if $activeSlave.belly >= 10000>>struggles to get<<else>>hurriedly gets<</if>> up on your desk, lying on her side and using one hand to spread $his buttocks apart while the other is poised to touch $himself. $He starts crying a little with relief as $he feels you slowly insert <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> into her spasming rectum. You are not gentle, and despite the anal stimulation $he does not orgasm by the time you <<if $PC.dick == 0>>climax to the vibrations of the strap-on, and the pleasure of buttfucking a bitch<<else>>blow your load in $his ass<</if>>. $He's so eager to get off $he doesn't bother to move, and just <<if $activeSlave.belly >= 1500>> snakes a hand down to fondle $himself. <<else>> @@ -11145,7 +11149,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> For the rest of the week, $he can come to you and politely ask to <<if $PC.dick == 1>>suck you off<<else>>eat you out<</if>>; $he will be allowed to masturbate after, but only after, you are satisfied. $He nods through her tears and <<if $activeSlave.belly >= 300000>> - leans over her _belly stomach, + leans over $his _belly stomach, <<else>> <<if $activeSlave.belly >= 10000>> struggles @@ -11185,7 +11189,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t @@.lightcoral;$His enjoyment of pain has increased.@@ <<elseif random(1,100) > 50>> <<set $activeSlave.fetishStrength = 65, $activeSlave.fetish = "masochist", $activeSlave.fetishKnown = 1>> - Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of <<if $PC.title != 0>>her master<<else>>her mistress<</if>> beating her.@@ + Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of <<if $PC.title != 0>>her master<<else>>her mistress<</if>> beating $him.@@ <</if>> <</replace>> <</link>> @@ -11218,7 +11222,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $cash += 100>> <<set $activeSlave.devotion += 4>> <</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>> -<br><<link "Delay her milking and then fuck her in public">> +<br><<link "Delay her milking and then fuck $him in public">> <<EventNameDelink $activeSlave>> <<replace "#result">> $activeSlave.slaveName obeys <<if $activeSlave.devotion > 20>>without hesitation<<else>>hesitantly<</if>> when you order $him to kneel next to your desk the next time $he tries to go to the milkers. $His equanimity is severely tested over the next hours as you ignore $him. The occasional glance at her shows her growing increasingly frantic as $his breasts grow heavier and $his nipples <<if $activeSlave.nipples != "fuckable">>get prouder<<else>>begin to prolapse<</if>>. <<if $activeSlave.preg > 30>>Soon, her child's kicking is forcing milk out of her swollen breasts.<</if>> Eventually, the slight rising and falling of her ribcage as $he inhales and exhales induces enough motion in her overfull breasts that milk spurts out of her with each breath. Satisfied that $he's ready, you<<if $PC.dick == 0>> don a strap-on and<</if>> lead the whimpering, dripping slave out to a public street. Here, you hold her upright so you can fuck her standing. When $he finally comes through the pain of her overfull udders, you reach forward and squeeze her so that $he screams in pain and relief, spraying jets of milk. $He continually aftershock orgasms as you continue pounding. You offer $his breasts to the growing crowd, many of whom come forward to taste her cream. @@ -11243,15 +11247,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Delay her milking and torture her with the pressure">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $activeSlave.slaveName obeys <<if $activeSlave.devotion > 20>>without hesitation<<else>>hesitantly<</if>> when you order $him to kneel next to your desk the next time $he tries to go to the milkers. $His devotion is severely tested over the next hours as you ignore $him. The occasional glance at her shows her growing increasingly frantic as $his breasts grow heavier and her inverted nipples, which prevent any release of pressure without the strong suction of the milkers<<if $activeSlave.nipples != "fuckable">> to protrude them<</if>>, grow more tender. Eventually, $he loses all composure and begins to beg you abjectly to give her relief. Your cruel smile at the kneeling $girl with tears streaming down her $activeSlave.skin cheeks fills her with @@.gold;anticipatory horror.@@ You tell $him to get on all fours like the <<if $activeSlave.pregKnown == 1>>pregnant<</if>> cow $he is. + $activeSlave.slaveName obeys <<if $activeSlave.devotion > 20>>without hesitation<<else>>hesitantly<</if>> when you order $him to kneel next to your desk the next time $he tries to go to the milkers. $His devotion is severely tested over the next hours as you ignore $him. The occasional glance at her shows her growing increasingly frantic as $his breasts grow heavier and her inverted nipples, which prevent any release of pressure without the strong suction of the milkers<<if $activeSlave.nipples != "fuckable">> to protrude them<</if>>, grow more tender. Eventually, $he loses all composure and begins to beg you abjectly to give her relief. Your cruel smile at the kneeling $girl with tears streaming down $his $activeSlave.skin cheeks fills her with @@.gold;anticipatory horror.@@ You tell $him to get on all fours like the <<if $activeSlave.pregKnown == 1>>pregnant<</if>> cow $he is. <<if $activeSlave.belly >= 750000>> - $He is so horribly <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>bloated<</if>> that it is a struggle just to shift onto her _belly stomach in the hope that $he can even reach the floor with all four limbs. Even worse, her efforts are absolutely agonizing to her engorged breasts; when $he finally does get onto the mass that is her middle, the sudden shift of $his breasts causes $him to shriek with pain. + $He is so horribly <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>bloated<</if>> that it is a struggle just to shift onto $his _belly stomach in the hope that $he can even reach the floor with all four limbs. Even worse, her efforts are absolutely agonizing to her engorged breasts; when $he finally does get onto the mass that is her middle, the sudden shift of $his breasts causes $him to shriek with pain. <<elseif $activeSlave.belly >= 300000>> - $He has to crawl onto her _belly stomach to even get all four limbs on the ground. The drastic shifting of $his breasts is agonizing and $he shrieks in spite of $himself. + $He has to crawl onto $his _belly stomach to even get all four limbs on the ground. The drastic shifting of $his breasts is agonizing and $he shrieks in spite of $himself. <<elseif $activeSlave.belly >= 100000>> - $He slowly does, her _belly stomach coming to rest on the floor beneath $him, but the simple movement is agonizing and seems to last forever causing $him to shriek in spite of $himself. + $He slowly does, $his _belly stomach coming to rest on the floor beneath $him, but the simple movement is agonizing and seems to last forever causing $him to shriek in spite of $himself. <<elseif $activeSlave.belly >= 10000>> - $He gingerly does, taking care to give her _belly stomach room, but the simple movement is agonizing and seems to last forever causing $him to shriek in spite of $himself. + $He gingerly does, taking care to give $his _belly stomach room, but the simple movement is agonizing and seems to last forever causing $him to shriek in spite of $himself. <<else>> $He does, but the simple movement is agonizing and $he shrieks in spite of $himself. <</if>> @@ -11279,7 +11283,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> you insert a couple of fingers alongside your <<if $PC.dick == 1>>dick<<else>>phallus<</if>>. <</if>> - $He just goes on screaming about how much her boobs hurt. Eventually, you tire of her bellowing, so you reach around and pop <<if $activeSlave.nipples != "fuckable">>$his nipples out one by one<<else>>finger into each nipple<</if>>. The shrieking reaches a paroxysm, but once they're <<if $activeSlave.nipples != "fuckable">>protruded<<else>>opened<</if>>, the milk begins to jet out of her in a pair of uninterrupted streams. $He collapses forward onto her face, crying with relief as the pain in $his breasts recedes. As it does, $he finally begins to notice + $He just goes on screaming about how much her boobs hurt. Eventually, you tire of her bellowing, so you reach around and pop <<if $activeSlave.nipples != "fuckable">>$his nipples out one by one<<else>>finger into each nipple<</if>>. The shrieking reaches a paroxysm, but once they're <<if $activeSlave.nipples != "fuckable">>protruded<<else>>opened<</if>>, the milk begins to jet out of $him in a pair of uninterrupted streams. $He collapses forward onto her face, crying with relief as the pain in $his breasts recedes. As it does, $he finally begins to notice <<if canDoAnal($activeSlave)>> the pain in $his backdoor as you continue to abuse it<<if $activeSlave.anus == 0>><<set $activeSlave.anus++>>, and that $he is @@.lime;no longer an anal virgin@@<</if>>. <<if canDoVaginal($activeSlave) && $activeSlave.vagina == 0>> @@ -11382,21 +11386,21 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Sentence $him to a month in the arcade">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $activeSlave.slaveName screams and begs when $he realizes what her punishment is, but you are obdurate. + $activeSlave.slaveName screams and begs when $he realizes what $his punishment is, but you are obdurate. <<if ($activeSlave.muscles > 30)>> $His powerful form has to be sedated for immurement in the arcade. <<elseif ($activeSlave.weight >= 190)>> - $He is so massively fat that immuring her in the arcade is a struggle, even when $he isn't trying to. + $He is so massively fat that immuring $him in the arcade is a struggle, even when $he isn't trying to. <<elseif $activeSlave.belly >= 120000>> - $He is so enormously gravid that immuring her in the arcade is a hassle, even though her _belly middle limits her ability to struggle. + $He is so enormously gravid that immuring $him in the arcade is a hassle, even though $his _belly middle limits her ability to struggle. <<elseif ($activeSlave.weight >= -10)>> - $His desperate struggles make immuring her in the arcade difficult. + $His desperate struggles make immuring $him in the arcade difficult. <<elseif $activeSlave.belly >= 1500>> $His <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> body makes it slightly difficult to fit her properly into the restraints for immurement in the arcade. <<elseif $activeSlave.muscles < -15>> - $His weak body makes immuring her in the arcade pathetically easy. + $His weak body makes immuring $him in the arcade pathetically easy. <<else>> - $His thin form makes immuring her in the arcade pathetically easy. + $His thin form makes immuring $him in the arcade pathetically easy. <</if>> After $he's properly confined, the only sign of her discomfiture is a slight movement of $his butt as $he wriggles desperately against her restraints. <<= assignJob($activeSlave, "be confined in the arcade")>> @@ -11422,7 +11426,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.belly >= 120000>> Since <<if $activeSlave.bellyPreg >= 3000>> - $he's so enormously pregnant that her _belly stomach blocks her crotch + $he's so enormously pregnant that $his _belly stomach blocks her crotch <<else>> her _belly stomach is so massive that is blocks her crotch <</if>> @@ -11546,10 +11550,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</link>> <</if>> <<if $slaves.length > 2>> -<br><<link "Include everyone in her millenary">> +<br><<link "Include everyone in $his millenary">> <<EventNameDelink $activeSlave>> <<replace "#result">> +<<<<<<< HEAD You decide to celebrate this happy event with everyone. You beckon to the watching slaves<<if $PC.dick == 0>>, while you don a strap-on,<</if>> and they come eagerly or sullenly according to their natures. They troop in. After some thought, you position a slave on the couch next to your desk, $activeSlave.slaveName <<if $activeSlave.amp != 1>>on all fours<<else>>propped up<</if>> in front of her giving cunnilingus, a third slave<<if $activeSlave.belly >= 5000>>squeezed<</if>> under $activeSlave.slaveName to orally service her in turn, and yourself behind $activeSlave.slaveName to +======= + You decide to celebrate this happy event with everyone. You beckon to the watching slaves<<if $PC.dick == 0>>, while you don a strap-on,<</if>> and they come eagerly or sullenly according to their natures. They troop in. After some thought, you position a slave on the couch next to your desk, $activeSlave.slaveName <<if $activeSlave.amp != 1>>on all fours<<else>>propped up<</if>> in front of her giving cunnilingus, a third slave<<if $activeSlave.belly >= 5000>>squeezed<</if>> under $activeSlave.slaveName to orally service $him in turn, and yourself behind $activeSlave.slaveName to +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <<if canDoVaginal($activeSlave)>> take her <<if $seeRace == 1>>$activeSlave.race <</if>>pussy. <<elseif canDoAnal($activeSlave)>> @@ -11648,13 +11656,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> You bake a simple cake while patiently explaining birthdays. $He slowly remembers, and <<if canSee($activeSlave)>>looks repeatedly at the date display<<else>>focuses intently on the date as $he repeats it to $himself<</if>> to ingrain her birthday back in her mind. When the cake is done, you quickly dust it with confectionary sugar, stand a hotwax candle in the middle of it, and invite $him to think of a wish and blow it out. $He sits on your lap and the two of you take turns feeding each other warm cake. When the cake is gone $he gets up to do the dishes and you turn to go. As you go, $he asks <<if ($activeSlave.lips > 70)>>through her massive dick-sucking lips, <<elseif ($activeSlave.lipsPiercing+$activeSlave.tonguePiercing > 2)>>through her inconvenient oral piercings, <</if>>"<<Master>>, may I tell you what my wi<<sh>> wa<<s>>?" You nod, and $he kneels on the kitchen chair with $his eyes closed, <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> - $his hands spreading her buttocks; $his pussy moist and inviting and $his anus begging for penetration. "Take me, <<Master>>." + $his hands spreading $his buttocks; $his pussy moist and inviting and $his anus begging for penetration. "Take me, <<Master>>." <<= BothVCheck()>> <<elseif canDoVaginal($activeSlave)>> - $his hands spreading her buttocks; $his pussy moist and inviting. "Take me, <<Master>>." + $his hands spreading $his buttocks; $his pussy moist and inviting. "Take me, <<Master>>." <<= VaginalVCheck()>> <<elseif canDoAnal($activeSlave)>> - $his hands spreading her buttocks, and $his mouth open. "Butt<<s>>e<<x>>, <<Master>>." + $his hands spreading $his buttocks, and $his mouth open. "Butt<<s>>e<<x>>, <<Master>>." <<= AnalVCheck()>> <<else>> hands to $his breasts, and mouth wide open. "To ta<<s>>te you, <<Master>>." @@ -11702,7 +11710,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> pretty <</if>> - lips, spreading a blush across her $activeSlave.skin cheeks. Your hands rove down her + lips, spreading a blush across $his $activeSlave.skin cheeks. Your hands rove down her <<if $activeSlave.belly >= 1500>> <<if $activeSlave.bellyPreg >= 1500>> pregnant @@ -11767,7 +11775,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "restricted smart">> -<<link "Discuss her future with her">> +<<link "Discuss her future with $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> You announce matter-of-factly that $he's allowed to speak temporarily, and that you'll be discussing where $he is and where $he sees $himself in the near future. $He's disconcerted by the subject but so desperate for conversation that $he's overjoyed anyway. @@ -11776,7 +11784,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $activeSlave.amp == 1>> you get her helpless form into position, <<elseif $activeSlave.belly >= 300000>> - $he struggles to get into position with her _belly stomach in the way, + $he struggles to get into position with $his _belly stomach in the way, <<elseif $activeSlave.belly >= 10000>> $he gently lowers her <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>bloated<</if>> form to its knees, <<else>> @@ -11925,20 +11933,20 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Make her say it in public">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Since you suspect you know what it is $he wants to say, you <<if $activeSlave.amp == 1>>carry her out<<else>>lead $him by the hand<</if>> onto the club, busy with citizens. You tell her quietly that $he's to shout whatever it is $he wanted to say, if it's something everyone should hear; otherwise $he's to keep it to $himself. $He <<if canSee($activeSlave)>>looks around<<else>>listens<</if>> nervously, her $activeSlave.skin skin betraying a growing blush, before clearing her throat twice, licking $his lips, and howling "I LOVE MY _shoutitoutloud" at the tops of her lungs. When this is out of her $he collapses a little, as though the pressure of holding it inside were propping her up. This attracted a considerable amount of attention, almost all of it @@.green;positive,@@ with many passersby laughing at the fun, and your fellow slaveowners giving you discreet winks and quiet congratulations. + Since you suspect you know what it is $he wants to say, you <<if $activeSlave.amp == 1>>carry her out<<else>>lead $him by the hand<</if>> onto the club, busy with citizens. You tell her quietly that $he's to shout whatever it is $he wanted to say, if it's something everyone should hear; otherwise $he's to keep it to $himself. $He <<if canSee($activeSlave)>>looks around<<else>>listens<</if>> nervously, $his $activeSlave.skin skin betraying a growing blush, before clearing her throat twice, licking $his lips, and howling "I LOVE MY _shoutitoutloud" at the tops of her lungs. When this is out of her $he collapses a little, as though the pressure of holding it inside were propping her up. This attracted a considerable amount of attention, almost all of it @@.green;positive,@@ with many passersby laughing at the fun, and your fellow slaveowners giving you discreet winks and quiet congratulations. <<set $rep += 150>> <</replace>> <</link>> -<br><<link "Keep her quiet but spend some time with her">> +<br><<link "Keep her quiet but spend some time with $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> You announce that you're finished with business for the day, and feel like some quiet time. $He cannot keep <<if canSee($activeSlave)>>a gleam of humor out of her eye<<else>>the corners of $his lips from rising slightly<</if>> at hearing 'quiet time,' and $he <<if $activeSlave.amp == 1>>presents $himself to be carried<<else>>follows you<</if>> happily enough. When $he <<if canSee($activeSlave)>>sees<<else>>realizes<</if>> you're headed to your bedroom $he begins to anticipate her <<= WrittenMaster()>>'s <<if $PC.dick == 0>>strap-on<<else>>cock<</if>>, but is surprised to find that instead of using her you simply <<if $activeSlave.amp == 1>> - place her in bed and curl up around her limbless torso. + place $him in bed and curl up around her limbless torso. <<elseif $activeSlave.bellyPreg >= 5000>> help her into bed and curl up with $him, your arms encircling her prominent baby bump. <<elseif $activeSlave.belly >= 5000>> - help her into bed and curl up with $him, your arms encircling her _belly dome of a middle. + help her into bed and curl up with $him, your arms encircling $his _belly dome of a middle. <<else>> climb into bed and pull her under the sheets with you. <</if>> @@ -11966,13 +11974,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Give her something in return">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You thank $him, and tell her you're considering what to give her in return. $He looks flirty, and says, + You thank $him, and tell her you're considering what to give $him in return. $He looks flirty, and says, <<switch $activeSlave.fetish>> <<case "submissive">> <<if (canDoAnal($activeSlave) || canDoVaginal($activeSlave))>> "Plea<<s>>e, would you hold me down and fuck me, <<Master>>?" $He drapes $himself submissively <<if $activeSlave.belly >= 300000>> - over her _belly middle, + over $his _belly middle, <<else>> over the couch, <</if>> @@ -11985,7 +11993,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> "Plea<<s>>e, would you hold me down and <<if $PC.dick == 1>>fuck my throat<<else>>grind again<<s>>t my fa<<c>>e<</if>>, <<Master>>?" $He drapes $himself submissively <<if $activeSlave.belly >= 300000>> - over her _belly middle + over $his _belly middle <<else>> over the couch <</if>> @@ -11995,7 +12003,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "cumslut">> "Plea<<s>>e, may I <<if $PC.dick == 1>>give you a blowjob<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>eat you out<</if>>, <<Master>>?" $He <<if $activeSlave.belly >= 300000>> - leans onto her _belly middle + leans onto $his _belly middle <<elseif $activeSlave.belly >= 10000>> gently lowers her <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>heavy<</if>> body to its knees <<else>> @@ -12005,7 +12013,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.oralCount++, $oralTotal++>> <<case "humiliation">> <<if (canDoAnal($activeSlave) || canDoVaginal($activeSlave))>> - "Plea<<s>>e, would you fuck me in public, <<Master>>?" $He edges towards the door, lest you misunderstand. You could fuck her in public, and you do. + "Plea<<s>>e, would you fuck me in public, <<Master>>?" $He edges towards the door, lest you misunderstand. You could fuck $him in public, and you do. <<if canDoAnal($activeSlave)>> <<= AnalVCheck()>> <<else>> @@ -12501,7 +12509,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t It doesn't take long before you fill $his ass with cum. <</if>> <<elseif $activeSlave.belly >= 300000>> - You'd like to lift her up into a standing fuck, but even you aren't strong enough to lift her extreme weight. Instead, you choose to have her ride you; supporting her _belly middle is a workout in its own right. + You'd like to lift her up into a standing fuck, but even you aren't strong enough to lift her extreme weight. Instead, you choose to have her ride you; supporting $his _belly middle is a workout in its own right. <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> After a while, you push her up as high as you can, freeing your member, and then lower her back down again, forcing yourself up $his butt instead despite the slave's anxious begging. <<= BothVCheck()>> @@ -12514,7 +12522,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t It doesn't take long before you fill $his ass with cum. <</if>> <<elseif $activeSlave.belly >= 100000>> - Once you're hilted, you hoist her up by the underarms, shifting your stance to handled her _belly stomach's weight, and hold in midair, impaled on your dick. You can't pound her all that hard in this challenging position, but the effort of holding her this way forces you to work out hard, producing an excellent sensation.<<if $PC.vagina == 1>> The position angles your dick upward, producing a lovely massaging sensation in your pussy as you slide in and out of her.<</if>> + Once you're hilted, you hoist her up by the underarms, shifting your stance to handled $his _belly stomach's weight, and hold in midair, impaled on your dick. You can't pound her all that hard in this challenging position, but the effort of holding her this way forces you to work out hard, producing an excellent sensation.<<if $PC.vagina == 1>> The position angles your dick upward, producing a lovely massaging sensation in your pussy as you slide in and out of $him.<</if>> <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> After a while, you lift her up as high as you can, freeing your member, and then lower her back down again, forcing yourself up $his butt instead despite the slave's anxious begging. <<= BothVCheck()>> @@ -12528,7 +12536,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> You're going to be feeling this tomorrow. <<else>> - Once you're hilted, you bring $his hands up on either side of her head to grasp your shoulders behind $him, and then scoop $his legs up and hoist $him to rest against your chest, held in midair and impaled on your dick. You can't pound her all that hard in this challenging position, but the effort of holding $himself this way forces $him to tighten her muscles down hard, producing an excellent sensation.<<if $PC.vagina == 1>> The position angles your dick upward, producing a lovely massaging sensation in your pussy as you slide in and out of her.<</if>> + Once you're hilted, you bring $his hands up on either side of her head to grasp your shoulders behind $him, and then scoop $his legs up and hoist $him to rest against your chest, held in midair and impaled on your dick. You can't pound her all that hard in this challenging position, but the effort of holding $himself this way forces $him to tighten her muscles down hard, producing an excellent sensation.<<if $PC.vagina == 1>> The position angles your dick upward, producing a lovely massaging sensation in your pussy as you slide in and out of $him.<</if>> <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> After a while, you lift her up as high as you can, freeing your member, and then lower her back down again, forcing yourself up $his butt instead despite the slave's anxious begging. <<= BothVCheck()>> @@ -12549,7 +12557,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <br><<link "Have her lick you clean">> <<replace "#result2">> - You take $him by the hand and <<if $PC.belly >= 10000>>waddle<<else>>walk<</if>> towards the shower. The sudden loss of your closeness jerks her rudely out of her sexual reverie, but $he follows willingly, perhaps distracted by the view as you shed your workout clothes on the way. When you get there, you pull her in with you, but you do not turn on the water. Instead, you tell $him to wash you. Not understanding, $he turns to switch on the shower, but you catch $him, and insert two sweaty fingers into the slave's compliant mouth. $He sucks on them, taking refuge in the simple task, and then understands what you mean. $He runs $his tongue up your arm, sucking the salty sweat off you as best $he can. Soon, $he bends down and heads for your + You take $him by the hand and <<if $PC.belly >= 10000>>waddle<<else>>walk<</if>> towards the shower. The sudden loss of your closeness jerks her rudely out of her sexual reverie, but $he follows willingly, perhaps distracted by the view as you shed your workout clothes on the way. When you get there, you pull $him in with you, but you do not turn on the water. Instead, you tell $him to wash you. Not understanding, $he turns to switch on the shower, but you catch $him, and insert two sweaty fingers into the slave's compliant mouth. $He sucks on them, taking refuge in the simple task, and then understands what you mean. $He runs $his tongue up your arm, sucking the salty sweat off you as best $he can. Soon, $he bends down and heads for your <<if $PC.dick == 1>>cock<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>cunt<</if>> but you pull her up again and tell $him to do that last. <<if $PC.belly >= 60000>> @@ -12607,7 +12615,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> The poor $girl is having trouble with <<if $activeSlave.attrXY <= 35>> - guys, so you decide to be kind to $him and play up your feminine side. You lift her $activeSlave.skin chin with a soft touch, and kiss her gently on the lips, pressing your breasts full against her + guys, so you decide to be kind to $him and play up your feminine side. You lift $his $activeSlave.skin chin with a soft touch, and kiss her gently on the lips, pressing your breasts full against her <<if $activeSlave.boobs > 5000>> titanic udders, which are squashed between you. <<elseif $activeSlave.boobs > 1000>> @@ -12879,7 +12887,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t $He shrinks away from you involuntarily, but you stroke loving hands down her temples, the sides of her neck, and her upper arms. $He shudders involuntarily, and you can almost feel her hate $himself through your lip lock. You cock your hips back and to the side, keeping your prick well clear of $him. As far as $he can feel, you're all boobs and feminine lips. <br><br> <<if $activeSlave.toyHole == "dick" || ($sexualOpeness == 1 && canPenetrate($activeSlave))>> - You walk forward, pressing her against the far wall, and then turn yourself around, pinning her against the wall with your butt<<if $activeSlave.belly >= 5000>>, working your way under her _belly belly<</if>>. As $he hesitates, wondering what to do about this, you grab $his hands and place them on your + You walk forward, pressing her against the far wall, and then turn yourself around, pinning her against the wall with your butt<<if $activeSlave.belly >= 5000>>, working your way under $his _belly belly<</if>>. As $he hesitates, wondering what to do about this, you grab $his hands and place them on your <<if $PC.butt > 2>> enormous, <<if $PC.buttImplant == 1>>beachball cheeks<<else>>wobbling ass<</if>>, <<elseif $PC.butt > 1>> @@ -12896,7 +12904,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<= knockMeUp($PC, 40, 0, $activeSlave.ID)>> <</if>> <<elseif $activeSlave.belly >= 150000>> - You walk forward, pressing her against the far wall, and then turn yourself around, pinning her against the wall with your butt, working your way under her _belly belly. As $he hesitates, wondering what to do about this, you grab $his hands and place them on your + You walk forward, pressing her against the far wall, and then turn yourself around, pinning her against the wall with your butt, working your way under $his _belly belly. As $he hesitates, wondering what to do about this, you grab $his hands and place them on your <<if $PC.butt > 2>> enormous, <<if $PC.buttImplant == 1>>beachball cheeks<<else>>wobbling ass<</if>>, <<elseif $PC.butt > 1>> @@ -13109,7 +13117,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Join $him and see if your hands can span $his waist">> <<EventNameDelink $activeSlave>> <<replace "#result">> +<<<<<<< HEAD By the time you reach the shower, $activeSlave.slaveName is towelling $himself. $He notices your approach and folds the towel neatly before performing a little naked pirouette that shows off her artificial +======= + By the time you reach the shower, $activeSlave.slaveName is toweling $himself. $He notices your approach and folds the towel neatly before performing a little naked pirouette that shows off her artificial +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> curviness while displaying each of her delectable holes. <<elseif canDoVaginal($activeSlave)>> @@ -13365,7 +13377,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<if canSee($activeSlave)>>Shaking your head<<else>>Tutting<</if>> with pretended doubt, you say that since you're not sure you'll have to make do. Your order $him to <<if $activeSlave.belly >= 300000>> - lean over her _belly belly<<if $PC.dick == 0>> while you don a strap-on<</if>>. + lean over $his _belly belly<<if $PC.dick == 0>> while you don a strap-on<</if>>. <<elseif $activeSlave.belly >= 5000>> lean face down into the couch cushions<<if $PC.dick == 0>> while you don a strap-on<</if>>. <<else>> @@ -13383,12 +13395,16 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "diet">> -<<link "Catch her at it and punish her">> +<<link "Catch her at it and punish $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> It's childishly easy to catch her at it. You simply call a slave eating her breakfast away over the arcology's audio system, and then enter the kitchen by a different door. $activeSlave.slaveName has the departed slave's cup in $his hand and halfway to $his mouth when $he's caught in the act. You relieve her of her prize, and finding that $he has not started her own proper portion, pour it out onto the floor. You tell $him to lap it up without using $his hands, and begin counting down from ten. $He obeys, <<if $activeSlave.belly >= 300000>> +<<<<<<< HEAD only to find her _belly stomach keeps her from reaching the puddle. When you reach zero you shove her over her middle, face first into the pool of slave food, and administer a stinging slap across her thieving <<if $seeRace == 1>>$activeSlave.race <</if>> ass. +======= + only to find $his _belly stomach keeps her from reaching the puddle. When you reach zero you shove her over her middle, face first into the pool of slave food, and administer a stinging slap across her thieving <<if $seeRace == 1>>$activeSlave.race <</if>> ass. +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <<else>> but slowly and hesitantly. When you reach zero you order $him to get to all fours and administer a stinging slap across her thieving <<if $seeRace == 1>>$activeSlave.race <</if>> ass. <</if>> @@ -13422,14 +13438,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Fill her up with water as punishment">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You meet her in time for her next meal and tell $him that you're aware of her stealing. You indicate a table full of cups, and tell $him that $he can drink as much as $he wants from them if $he'll tell you the truth. $He confesses, and is horrified to find they're full of water, not food. You add casually that $he can choose not to 'eat' the contents... but that $he'll get no real food until $he finishes every one. Torn between hunger and reluctance, $he spends the next hour struggling with so much water that you have to check her for water intoxication. $He finishes with <<if $activeSlave.belly >= 1500>>an even more bulbous<<else>>a bulging<</if>> stomach and a @@.gold;sincere desire to avoid further punishment.@@ + You meet $him in time for her next meal and tell $him that you're aware of her stealing. You indicate a table full of cups, and tell $him that $he can drink as much as $he wants from them if $he'll tell you the truth. $He confesses, and is horrified to find they're full of water, not food. You add casually that $he can choose not to 'eat' the contents... but that $he'll get no real food until $he finishes every one. Torn between hunger and reluctance, $he spends the next hour struggling with so much water that you have to check her for water intoxication. $He finishes with <<if $activeSlave.belly >= 1500>>an even more bulbous<<else>>a bulging<</if>> stomach and a @@.gold;sincere desire to avoid further punishment.@@ <<set $activeSlave.trust -= 5>> <</replace>> <</link>> <br><<link "Make her eat until $he regrets it">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You meet her in time for her next meal and tell $him that you're aware of her stealing. You indicate a table full of cups, and tell $him that $he is going to eat the contents of every last one, every day, until $he regrets being a glutton. $He gulps at the sight, but eagerly digs in. As $his stomach steadily distends and the cups rapidly empty, you realize you may have made a mistake. $He finishes with <<if $activeSlave.belly >= 1500>>an even more bulbous<<else>>a hugely bulging<</if>> stomach and a @@.mediumorchid;smirk at your so-called punishment.@@ + You meet $him in time for her next meal and tell $him that you're aware of her stealing. You indicate a table full of cups, and tell $him that $he is going to eat the contents of every last one, every day, until $he regrets being a glutton. $He gulps at the sight, but eagerly digs in. As $his stomach steadily distends and the cups rapidly empty, you realize you may have made a mistake. $He finishes with <<if $activeSlave.belly >= 1500>>an even more bulbous<<else>>a hugely bulging<</if>> stomach and a @@.mediumorchid;smirk at your so-called punishment.@@ <<set $activeSlave.devotion -= 5, $activeSlave.inflationType = "food", $activeSlave.inflationMethod = 1>> <<if $activeSlave.bellyPreg > 0 || $activeSlave.bellyImplant > 0>> <<set $activeSlave.inflation = 1>> @@ -13443,7 +13459,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Restrict $him to nothing but fresh cum from the Dairy">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You meet her in time for her next meal and tell $him that you're aware of her stealing. You tell $him that you understand her need to eat, and that for the rest of the week you'll mercifully be allowing $him to try a new diet on which $he can eat as much as $he wants. $He's overjoyed <<if canHear($activeSlave)>>to hear it<<elseif canSee($activeSlave)>>when $he reads it on a nearby screen display<<else>>when $he figures it out<</if>>, though this pleasure is replaced with extreme disgust when $he learns that her only culinary options are limited to cum. It's just nutritionally augmented enough to prevent starvation. Disgust is defeated by hunger pangs, and $he spends most of the week going around with a @@.hotpink;preoccupied@@ look on her face and<<if $activeSlave.belly >= 1500>> an even more<<else>> a slightly<</if>> distended belly. By the end, $he's starting to @@.lightcoral;salivate@@ at the mere scent of ejaculate. + You meet $him in time for her next meal and tell $him that you're aware of her stealing. You tell $him that you understand her need to eat, and that for the rest of the week you'll mercifully be allowing $him to try a new diet on which $he can eat as much as $he wants. $He's overjoyed <<if canHear($activeSlave)>>to hear it<<elseif canSee($activeSlave)>>when $he reads it on a nearby screen display<<else>>when $he figures it out<</if>>, though this pleasure is replaced with extreme disgust when $he learns that her only culinary options are limited to cum. It's just nutritionally augmented enough to prevent starvation. Disgust is defeated by hunger pangs, and $he spends most of the week going around with a @@.hotpink;preoccupied@@ look on her face and<<if $activeSlave.belly >= 1500>> an even more<<else>> a slightly<</if>> distended belly. By the end, $he's starting to @@.lightcoral;salivate@@ at the mere scent of ejaculate. <<set $activeSlave.devotion += 4, $activeSlave.fetish = "cumslut", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65, $activeSlave.inflation = 1, $activeSlave.inflationType = "cum", $activeSlave.inflationMethod = 1>> <<run SetBellySize($activeSlave)>> <</replace>> @@ -13459,13 +13475,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $PC.belly >= 10000>> beside you and cozying up to your pregnant belly and sliding a hand down to see to your pussy without hesitation. You help her get comfortable and instead of demanding $he please you or get down on all fours, you just sit there with $him, <<elseif $PC.dick == 0>> - into your lap without hesitation. You help her get comfortable and instead of <<if $PC.dick == 0>>grinding<<else>>thrusting<</if>> or telling $him to ride, you just sit there with her in your lap, + into your lap without hesitation. You help her get comfortable and instead of <<if $PC.dick == 0>>grinding<<else>>thrusting<</if>> or telling $him to ride, you just sit there with $him in your lap, <<else>> onto your member <<if $PC.vagina == 1>> and sliding a hand down to see to your pussy <</if>> - without hesitation. You help her get comfortable and instead of <<if $PC.dick == 0>>grinding<<else>>thrusting<</if>> or telling $him to ride, you just sit there with her in your lap, + without hesitation. You help her get comfortable and instead of <<if $PC.dick == 0>>grinding<<else>>thrusting<</if>> or telling $him to ride, you just sit there with $him in your lap, <</if>> gently massaging her massive tits. They get sore from swinging around as $he moves, works, and fucks, and soon $he's groaning with pleasure at the attention. You finally manage to bring $him to orgasm with almost nothing but delicate stimulation of $his nipples. @@.mediumaquamarine;$He has become more trusting of you.@@ <<set $activeSlave.trust += 4, $activeSlave.mammaryCount++, $mammaryTotal++>> @@ -13551,12 +13567,12 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> for standing sex. $He cocks $his hips and takes your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> compliantly, and after a few thrusts you reach down, seize her behind each knee, and <<if $PC.belly >= 5000 && $activeSlave.belly >= 100000>> - collapse against a nearby bunch under the excessive weight between your pregnancy and her _belly stomach. Appreciating the bench's sacrifice, you return to fucking $him. + collapse against a nearby bunch under the excessive weight between your pregnancy and $his _belly stomach. Appreciating the bench's sacrifice, you return to fucking $him. <<if $activeSlave.bellyPreg >= 600000>> Penetrating her while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing her bloated body to rub against you in ways you couldn't imagine. <</if>> <<elseif $activeSlave.belly >= 100000>> - pull her as close as you can with her _belly belly between you. Struggling to support the immense weight, you back her against a rail so that you can continue to fuck her while holding $him. + pull her as close as you can with $his _belly belly between you. Struggling to support the immense weight, you back her against a rail so that you can continue to fuck her while holding $him. <<if $activeSlave.bellyPreg >= 600000>> Penetrating her while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing her bloated body to rub against you in ways you couldn't imagine. <</if>> @@ -13569,7 +13585,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> boobs, <</if>> - helpless to do anything but let you hold her in midair and fuck $him. + helpless to do anything but let you hold $him in midair and fuck $him. <</if>> <<if canDoVaginal($activeSlave)>> <<if ($activeSlave.vagina > 1)>> @@ -13735,10 +13751,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <</if>> <<if (canDoAnal($activeSlave) && $activeSlave.mpreg == 1) || (canDoVaginal($activeSlave)) && $activeSlave.belly >= 300000>> -<br><<link "Tip her over and fuck her">> +<br><<link "Tip her over and fuck $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He's absorbed enough with her application that $he starts with surprise when you seize $his hips and shove her onto her _belly stomach for a quick fuck. + $He's absorbed enough with her application that $he starts with surprise when you seize $his hips and shove her onto $his _belly stomach for a quick fuck. <<if $activeSlave.mpreg == 1>> <<= AnalVCheck()>> <<else>> @@ -13908,7 +13924,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> her tight little pussy completely vulnerable. <</if>> +<<<<<<< HEAD As <<if $PC.dick == 1>><<if $PC.vagina == 1>>use manual stimulation of your pussy to get your dick<<else>>stroke yourself<</if>> rapidly back to full mast<<else>>don a strap-on<</if>>, $assistantName opines helpfully, "Hey $activeSlave.slaveName! You're about to get fucked!" The slave reacts by obediently reaching back to spread her buttocks and relaxing, but $assistantName ruins her attempt at graceful submission." <<if $PC.title == 1>>Siiir,<<else>>Ma'aaam,<</if>> $he's bluuuushing," $he says tauntingly, and the slave stiffens with renewed embarrassment, not to mention stimulation, as you penetrate $him. +======= + As <<if $PC.dick == 1>><<if $PC.vagina == 1>>use manual stimulation of your pussy to get your dick<<else>>stroke yourself<</if>> rapidly back to full mast<<else>>don a strap-on<</if>>, $assistantName opines helpfully, "Hey $activeSlave.slaveName! You're about to get fucked!" The slave reacts by obediently reaching back to spread $his buttocks and relaxing, but $assistantName ruins her attempt at graceful submission." <<if $PC.title == 1>>Siiir,<<else>>Ma'aaam,<</if>> $he's bluuuushing," $he says tauntingly, and the slave stiffens with renewed embarrassment, not to mention stimulation, as you penetrate $him. +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <<= VaginalVCheck()>> <<else>> <<if $activeSlave.anus > 2>> @@ -13918,7 +13938,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> her tight little rosebud completely vulnerable. <</if>> +<<<<<<< HEAD As <<if $PC.dick == 1>><<if $PC.vagina == 1>>use manual stimulation of your pussy to get your dick<<else>>stroke yourself<</if>> rapidly back to full mast<<else>>don a strap-on<</if>>, $assistantName opines helpfully, "Hey $activeSlave.slaveName! You're about to get buttfucked!" The slave reacts by obediently reaching back to spread her buttocks, and relaxes $his anus, but $assistantName ruins her attempt at graceful anal submission." <<if $PC.title == 1>>Siiir,<<else>>Ma'aaam,<</if>> $he's bluuuushing," $he says tauntingly, and the slave stiffens with renewed embarrassment, not to mention discomfort, as you penetrate $him. +======= + As <<if $PC.dick == 1>><<if $PC.vagina == 1>>use manual stimulation of your pussy to get your dick<<else>>stroke yourself<</if>> rapidly back to full mast<<else>>don a strap-on<</if>>, $assistantName opines helpfully, "Hey $activeSlave.slaveName! You're about to get buttfucked!" The slave reacts by obediently reaching back to spread $his buttocks, and relaxes $his anus, but $assistantName ruins her attempt at graceful anal submission." <<if $PC.title == 1>>Siiir,<<else>>Ma'aaam,<</if>> $he's bluuuushing," $he says tauntingly, and the slave stiffens with renewed embarrassment, not to mention discomfort, as you penetrate $him. +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <<= AnalVCheck()>> <</if>> $He keeps licking away, cleaning up the mess you made as $assistantName does everything $he can to make it seem like the slave is pleasuring $him. Partway through, $assistantName sticks out a hand for a high-five from you, producing a gurgle of indignation @@.mediumaquamarine;or perhaps even laughter@@ as her owner and her owner's personal assistant program high-five over her back. @@ -14037,7 +14061,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "like me">> -<<link "Fuck her">> +<<link "Fuck $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> $He asked for it, and $he'll get it. You get to your @@ -14050,7 +14074,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $PC.dick == 0>> at the floor in front of you<<if !canSee($activeSlave)>> along with a commanding "floor"<</if>>. $He hurries over, but hesitates for an instant, unsure of what to do next. You help her understand by grabbing her on either side of her neck and <<if $activeSlave.belly >= 300000>> - pulling onto her _belly stomach + pulling onto $his _belly stomach <<else>> shoving her down to kneel at your feet <</if>> @@ -14068,7 +14092,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> kneels, <</if>> - $his rear pointing at you, but hesitates for an instant, unsure of what to do next. You help her understand by shoving her down so her collarbone is resting on the back of the couch and $his ass is at just the right height.<<if $PC.vagina == 1>> You ensure that you're fully hard and get her in the right frame of mind by grinding the pussy beneath your dick against her.<</if>> You fuck + $his rear pointing at you, but hesitates for an instant, unsure of what to do next. You help her understand by shoving her down so her collarbone is resting on the back of the couch and $his ass is at just the right height.<<if $PC.vagina == 1>> You ensure that you're fully hard and get $him in the right frame of mind by grinding the pussy beneath your dick against $him.<</if>> You fuck <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> $his pussy and then $his ass in quick succession, plundering $his holes without much regard for her pleasure. <<= BothVCheck()>> @@ -14087,7 +14111,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.trust += 4>> <</replace>> <</link>><<if (($activeSlave.anus == 0) || ($activeSlave.vagina == 0)) && ($PC.dick == 1)>> //This option will take virginity//<</if>> -<br><<link "Rape her">> +<br><<link "Rape $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> $He'll get more than $he asked for. You get to your @@ -14130,7 +14154,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> You spit on $his asshole and then give her some anal foreplay, if slapping your dick against $his anus twice before shoving it inside her counts as anal foreplay. <<= AnalVCheck()>> +<<<<<<< HEAD $He tries to be brave and relax, but those are contradictory goals and $he manages neither as you assrape her into inelegant, tearful begging for you to take your dick out of $his butt, because it hurts. +======= + $He tries to be brave and relax, but those are contradictory goals and $he manages neither as you assrape $him into inelegant, tearful begging for you to take your dick out of $his butt, because it hurts. +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <</if>> It isn't the first time you've heard that, or the hundredth. <</if>> @@ -14138,15 +14166,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.trust -= 4, $activeSlave.devotion += 4>> <</replace>> <</link>><<if (($activeSlave.anus == 0) || ($activeSlave.vagina == 0)) && ($PC.dick == 1)>> //This option will take virginity//<</if>> -<br><<link "Get the truth out of her">> +<br><<link "Get the truth out of $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You ask her why $he's really here, with devastating directness and in a tone that will brook no disobedience. $He quails, her shoulders slumping as $he + You ask $him why $he's really here, with devastating directness and in a tone that will brook no disobedience. $He quails, $his shoulders slumping as $he <<if $activeSlave.belly >= 1500>> <<if $activeSlave.pregKnown == 1>> hugs $his pregnancy <<else>> - attempts to hug $himself with her _belly belly in the way + attempts to hug $himself with $his _belly belly in the way <</if>> <<else>> hugs $himself @@ -14163,15 +14191,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result2">> You get to your feet, letting $him know that the other slaves weren't wrong. $His relief is <<if ["chastity belt", "combined chastity"].includes($activeSlave.vaginalAccessory) || !canDoAnal($activeSlave)>> - palpable as you undo her chastity. + palpable as you undo $his chastity. <<else>> palpable. <</if>> You snap your fingers, pointing <<if $PC.dick == 0>> - at the floor in front of you<<if !canSee($activeSlave)>> along with a commanding "floor"<</if>>. $He hurries over, but hesitates for an instant, unsure of what to do next. You help her understand by grabbing her on either side of her neck and + at the floor in front of you<<if !canSee($activeSlave)>> along with a commanding "floor"<</if>>. $He hurries over, but hesitates for an instant, unsure of what to do next. You help $him understand by grabbing $him on either side of $his neck and <<if $activeSlave.belly >= 300000>> - pulling onto her _belly stomach + pulling onto $his _belly stomach <<else>> shoving her down to kneel at your feet <</if>> @@ -14209,7 +14237,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.trust += 4>> <</replace>> <</link>><<if (($activeSlave.anus == 0) || ($activeSlave.vagina == 0)) && ($PC.dick == 1)>> //This option will take virginity//<</if>> - <br><<link "Now rape her">> + <br><<link "Now rape $him">> <<replace "#result2">> You get to your feet, letting $him know that the other slaves weren't wrong. $His relief is palpable, but $he's getting ahead of <<if ["chastity belt", "combined chastity"].includes($activeSlave.vaginalAccessory) || !canDoAnal($activeSlave)>> @@ -14283,7 +14311,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t You order $him to sit next to you. Sure enough, $he hesitates, but $he seems to have gotten the 'next to you' part, and comes carefully over, <<if canSee($activeSlave)>>watching you<<elseif canHear($activeSlave)>>listening<<else>>waiting<</if>> intently for any indication that $he's misunderstood you. Once there, $he stops, knees bent partway as $he second-guesses $himself about whether $he's supposed to sit. Sighing internally, you grab <<if $activeSlave.belly >= 5000>> <<if $activeSlave.navelPiercing > 0>> - the piercing dangling from her _belly belly + the piercing dangling from $his _belly belly <<else>> her _belly belly <</if>> @@ -14543,7 +14571,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> $He's extremely relieved that you're not going to punish her for the rulebreaking when you tell $him that $he can touch $himself if $he <<if $activeSlave.belly >= 300000>> - leans over her _belly belly + leans over $his _belly belly <<else>> gets on $his knees <</if>> @@ -14559,7 +14587,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t You <<if $PC.belly >= 10000>> <<if $activeSlave.belly >= 300000>> - tip her over her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him, + tip her over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him, <<elseif $activeSlave.belly >= 5000>> order $him to bend over beside you so your pregnancy doesn't obstruct you as badly <<else>> @@ -14567,14 +14595,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<else>> <<if $activeSlave.belly >= 300000>> - tip her over her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>> + tip her over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>> <<elseif $activeSlave.belly >= 5000>> spread your legs to give her <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>bloated middle<</if>> room as you pull her onto your lap <<else>> pull her down over your knee <</if>> <</if>> - and spank her $activeSlave.skin buttocks until they're warm to the touch. It's not a sexual punishment, it's too painful for that; by the end, $activeSlave.slaveName has cried $himself out and is limp in your hands. You pull her up to face you and give her your instructions: from now on, $he can come to you and ask to <<if $PC.dick == 1>>blow you<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>perform cunnilingus on you<</if>>, and masturbate while $he does. $He nods through her tears and flees. In an hour or so, though, $he finds you and asks to <<if $PC.vagina == 1>>give you oral<<else>>suck your cock<</if>>. When you pretend indifference, $he abjectly begs. Soon, $he's down on $his knees, crying a little with shame as $he masturbates furiously. + and spank $his $activeSlave.skin buttocks until they're warm to the touch. It's not a sexual punishment, it's too painful for that; by the end, $activeSlave.slaveName has cried $himself out and is limp in your hands. You pull her up to face you and give her your instructions: from now on, $he can come to you and ask to <<if $PC.dick == 1>>blow you<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>perform cunnilingus on you<</if>>, and masturbate while $he does. $He nods through her tears and flees. In an hour or so, though, $he finds you and asks to <<if $PC.vagina == 1>>give you oral<<else>>suck your cock<</if>>. When you pretend indifference, $he abjectly begs. Soon, $he's down on $his knees, crying a little with shame as $he masturbates furiously. <<set $activeSlave.oralCount += 5, $oralTotal += 5>> <<if ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishKnown == 1)>> <<set $activeSlave.fetishStrength += 4>> @@ -14593,7 +14621,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t You <<if $PC.belly >= 10000>> <<if $activeSlave.belly >= 300000>> - tip her over her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him, and grope her thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you flip her onto her back, lower your gravid body down to her level and start playing with $his nipples. + tip her over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him, and grope her thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you flip her onto her back, lower your gravid body down to her level and start playing with $his nipples. <<elseif $activeSlave.belly >= 5000>> order $him to bend over beside you so your pregnancy doesn't obstruct you as badly and grope her thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul her upright and start playing with $his nipples. <<else>> @@ -14601,7 +14629,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<else>> <<if $activeSlave.belly >= 300000>> - tip her over her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>> and grope her thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul her up into your lap, $his stomach spreading your legs, and start playing with $his nipples. + tip her over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>> and grope her thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul her up into your lap, $his stomach spreading your legs, and start playing with $his nipples. <<elseif $activeSlave.belly >= 5000>> spread your legs to give her <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>bloated middle<</if>> room as you pull her onto your lap and grope her thoroughly, bringing $him to the painful edge of orgasm. Just when $he's about to tip over the edge, the stimulation stops and you haul her up into your lap and start playing with $his nipples. <<else>> @@ -14630,7 +14658,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> pull her into a sitting position on your lap <</if>> - and grope her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>>thoroughly, allowing $him to reach the painful edge of orgasm. You feel $his belly shudder as $he reaches climax under your ministrations. You tease her <<if $activeSlave.belly >= 10001>>popped <</if>>navel as $he comes down from her masturbation session. + and grope $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>stomach<</if>>thoroughly, allowing $him to reach the painful edge of orgasm. You feel $his belly shudder as $he reaches climax under your ministrations. You tease her <<if $activeSlave.belly >= 10001>>popped <</if>>navel as $he comes down from her masturbation session. <<if ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishKnown == 1)>> <<set $activeSlave.fetishStrength += 4>> @@.lightcoral;$His enjoyment of pregnancy has increased.@@ @@ -14649,7 +14677,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t You <<if $PC.belly >= 10000>> <<if $activeSlave.belly >= 300000>> - tip her over her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him, + tip her over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>>, do your best to get close beside $him, <<elseif $activeSlave.belly >= 5000>> order $him to bend over beside you so your pregnancy doesn't obstruct you as badly <<else>> @@ -14657,14 +14685,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<else>> <<if $activeSlave.belly >= 300000>> - tip her over her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>> + tip her over $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>middle<</if>> <<elseif $activeSlave.belly >= 5000>> spread your legs to give her <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>bloated middle<</if>> room as you pull her onto your lap <<else>> pull her down over your knee <</if>> <</if>> - and spank her $activeSlave.skin buttocks until they're warm to the touch. It's not a sexual punishment, it's too painful for that; by the end, $activeSlave.slaveName has cried $himself out and is limp in your hands. You pull her up to face you and give her your instructions: from now on, $he can come to you and ask you to assrape $him, and masturbate while $he takes <<if $PC.dick == 0>>anal penetration<<else>>cock<</if>>. $He nods through her tears and flees. In an hour or so, though, $he finds you and haltingly asks you to buttfuck $him. When you pretend indifference, $he offers you $his anus and abjectly begs you to stick <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> up $his butt. Soon, $he's down on all fours, crying a little with mixed shame and anal pain as $he masturbates furiously. + and spank $his $activeSlave.skin buttocks until they're warm to the touch. It's not a sexual punishment, it's too painful for that; by the end, $activeSlave.slaveName has cried $himself out and is limp in your hands. You pull her up to face you and give her your instructions: from now on, $he can come to you and ask you to assrape $him, and masturbate while $he takes <<if $PC.dick == 0>>anal penetration<<else>>cock<</if>>. $He nods through her tears and flees. In an hour or so, though, $he finds you and haltingly asks you to buttfuck $him. When you pretend indifference, $he offers you $his anus and abjectly begs you to stick <<if $PC.dick == 0>>a strap-on<<else>>your cock<</if>> up $his butt. Soon, $he's down on all fours, crying a little with mixed shame and anal pain as $he masturbates furiously. <<= AnalVCheck(5)>> <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>> <<set $activeSlave.fetishStrength += 4>> @@ -14696,7 +14724,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br> <<link "while submitting to a spanking">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell $him that $he can get $himself off while $he's being spanked, and that's it: you don't tell $him to offer her bottom, much less start spanking $him. $He doesn't understand for a long moment, but before long $he's begging abjectly for a spanking, and has her buttocks presented, quivering with simultaneous arousal and fear of pain. The pain comes soon enough, with a delicious crack of palm on flesh <<if $activeSlave.voice == 0>>and a hoarse grunt, the most noise $he can make.<<else>>and a shriek of agony.<</if>> $He masturbates furiously, but you're an accomplished spanker, and you repeatedly cause her just enough pain to prevent climax. Eventually $he gets off in part because of, rather than in spite of, the lengthy beating. + You tell $him that $he can get $himself off while $he's being spanked, and that's it: you don't tell $him to offer her bottom, much less start spanking $him. $He doesn't understand for a long moment, but before long $he's begging abjectly for a spanking, and has $his buttocks presented, quivering with simultaneous arousal and fear of pain. The pain comes soon enough, with a delicious crack of palm on flesh <<if $activeSlave.voice == 0>>and a hoarse grunt, the most noise $he can make.<<else>>and a shriek of agony.<</if>> $He masturbates furiously, but you're an accomplished spanker, and you repeatedly cause her just enough pain to prevent climax. Eventually $he gets off in part because of, rather than in spite of, the lengthy beating. <<if ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1)>> <<set $activeSlave.fetishStrength += 4>> @@.lightcoral;$His enjoyment of submission has increased.@@ @@ -14719,7 +14747,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> stand <</if>> - with $his arms over her head and $his legs splayed, and tell $him that if $he moves or resists her punishment will begin again from the start. + with $his arms over her head and $his legs splayed, and tell $him that if $he moves or resists $his punishment will begin again from the start. <<if ["chastity belt", "combined chastity"].includes($activeSlave.vaginalAccessory) || ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> $He was touching $his nipples and ass, so you flick and torture $his nipples and give $him a severe spanking. <<elseif !canAchieveErection($activeSlave) && ($activeSlave.dick > 6)>> @@ -14742,7 +14770,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t @@.lightcoral;$His enjoyment of pain has increased.@@ <<elseif random(1,100) > 50>> <<set $activeSlave.fetish = "masochist", $activeSlave.fetishKnown = 1, $activeSlave.fetishStrength = 65>> - Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of <<= WrittenMaster()>> beating her.@@ + Before $he realizes what's happening, @@.lightcoral;$he's getting aroused at the thought of <<= WrittenMaster()>> beating $him.@@ <</if>> <</replace>> <</link>> @@ -14763,7 +14791,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> You make a show of considering, and then tell $him that if $he's extra obedient, you might let her earn a break for her throat - for now. <<if canDoVaginal($activeSlave) && $activeSlave.vagina > 0>> - You tell $him to lie back and spread $his legs, because you're going to give $him a good old fashioned missionary-position pounding. $He does so with unusual obedience<<if $activeSlave.belly >= 5000>>, $his legs hanging off the couch to give you a better angle with her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> in the way<</if>>, and as you're giving $him a thorough pounding, whether out of relief, gratitude, or a desire to put on a good performance, $he certainly seems to be enjoying it more than usual. + You tell $him to lie back and spread $his legs, because you're going to give $him a good old fashioned missionary-position pounding. $He does so with unusual obedience<<if $activeSlave.belly >= 5000>>, $his legs hanging off the couch to give you a better angle with $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> in the way<</if>>, and as you're giving $him a thorough pounding, whether out of relief, gratitude, or a desire to put on a good performance, $he certainly seems to be enjoying it more than usual. <<= VaginalVCheck()>> <<elseif canDoAnal($activeSlave) && $activeSlave.anus > 0>> You tell $him to bend over and spread $his ass for you, because if $he doesn't want you going in one end you're going to go in the other. $He does so with unusual obedience, and as you @@ -14847,7 +14875,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Teach $him to see cum as a reward">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You bring $activeSlave.slaveName into your office and stand her in front of your leather couch. $He <<if canSee($activeSlave)>>eyes you <<else>>listens <</if>><<if $activeSlave.devotion < -20>>suspiciously<<else>>worriedly<</if>> as you ready a bullet vibrator. + You bring $activeSlave.slaveName into your office and stand $him in front of your leather couch. $He <<if canSee($activeSlave)>>eyes you <<else>>listens <</if>><<if $activeSlave.devotion < -20>>suspiciously<<else>>worriedly<</if>> as you ready a bullet vibrator. <<if $activeSlave.dick > 0>> You secure the bullet to $activeSlave.slaveName's frenulum. <<elseif $activeSlave.vagina == -1>> @@ -14867,7 +14895,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> $He climaxes in turn, and virtually melts into a quivering mess on your floor. <<if $activeSlave.dick > 0>> - $activeSlave.slaveName's cock oozes cum from her intense orgasm, and you command $him to clean it off the floor before $he gets back to her duties. + $activeSlave.slaveName's cock oozes cum from her intense orgasm, and you command $him to clean it off the floor before $he gets back to $his duties. <</if>> <<if random(1,4) == 4>> @@.lightcoral;You've successfully linked cum and pleasure in her mind@@, guaranteeing $him a confusing few days as $he tries to reconcile this with $his hatred of oral sex. @@ -15135,7 +15163,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Attend a milonga">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You inform $activeSlave.slaveName of your plans and tell $him to get dressed appropriately. $He meets you at the door wearing classy heels and a gorgeous long dress cunningly designed to adhere to her while $he dances despite the fact that it displays all of one leg, her entire back<<if $activeSlave.belly >= 5000>>, her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>>, cleavage, and the sides of both breasts. $He has $his hair up in a perfect bun accented with a spray of the latest jewelry, and is wearing severe makeup that makes her look aristocratic and elegant by turns. The host of the milonga, an old-world tango enthusiast, knows well the social graces and invites you, as the most prominent attendee, to perform the traditional demonstration tango that begins the dance. It goes wonderfully, and the entire party sighs in appreciation as you perform the classic tango. You lower $activeSlave.slaveName<<if $activeSlave.belly >= 10000 || $activeSlave.weight > 130>>'s heavy body<</if>> gracefully and pull her back up into a close embrace, and breath catches in more than one throat. As tradition dictates $he dances with many partners throughout the night. One concession to Free Cities sensibilities is that the male and female roles in the tango may be filled by anyone, and $activeSlave.slaveName switches flawlessly between playing the female role to the elderly host one dance and the male role to his teenage granddaughter the next. The poor girl spends the rest of the evening staring at $activeSlave.slaveName with her tongue tied. Whoever $activeSlave.slaveName dances with, $he always subtly shows by glance and gesture that it's you $he truly wants. Everyone is quite envious of you; @@.green;your reputation has increased.@@ + You inform $activeSlave.slaveName of your plans and tell $him to get dressed appropriately. $He meets you at the door wearing classy heels and a gorgeous long dress cunningly designed to adhere to her while $he dances despite the fact that it displays all of one leg, $his entire back<<if $activeSlave.belly >= 5000>>, $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly<</if>>, cleavage, and the sides of both breasts. $He has $his hair up in a perfect bun accented with a spray of the latest jewelry, and is wearing severe makeup that makes her look aristocratic and elegant by turns. The host of the milonga, an old-world tango enthusiast, knows well the social graces and invites you, as the most prominent attendee, to perform the traditional demonstration tango that begins the dance. It goes wonderfully, and the entire party sighs in appreciation as you perform the classic tango. You lower $activeSlave.slaveName<<if $activeSlave.belly >= 10000 || $activeSlave.weight > 130>>'s heavy body<</if>> gracefully and pull her back up into a close embrace, and breath catches in more than one throat. As tradition dictates $he dances with many partners throughout the night. One concession to Free Cities sensibilities is that the male and female roles in the tango may be filled by anyone, and $activeSlave.slaveName switches flawlessly between playing the female role to the elderly host one dance and the male role to his teenage granddaughter the next. The poor girl spends the rest of the evening staring at $activeSlave.slaveName with her tongue tied. Whoever $activeSlave.slaveName dances with, $he always subtly shows by glance and gesture that it's you $he truly wants. Everyone is quite envious of you; @@.green;your reputation has increased.@@ <<set $rep += 100>> <</replace>> <</link>> @@ -15143,14 +15171,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Never mind Friday night, the moon's out and it's romantic on the balcony">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You inform $activeSlave.slaveName of your plans and tell $him to get dressed appropriately. $He meets you at the door absolutely naked<<if $activeSlave.bellyPreg >= 1500>>, her motherly body on full display<</if>>. $He has half a question on her face, wondering whether this is going too far, but it vanishes when you <<if canSee($activeSlave)>>smile reassuringly at<<else>>compliment<</if>> $him. You take $him by the hand and lead her out onto the private balcony outside your office. It's a cloudless night, and the moon is full. You order the arcology to play a classic dance medley, and $activeSlave.slaveName becomes all innocence and grace, the perfect dance partner<<if $activeSlave.bellyPreg >= 10000>>, despite her heavy pregnancy<<elseif $activeSlave.belly >= 10000 || $activeSlave.weight > 130>>, despite her weight<</if>>. The only real consequence of her nudity is + You inform $activeSlave.slaveName of your plans and tell $him to get dressed appropriately. $He meets you at the door absolutely naked<<if $activeSlave.bellyPreg >= 1500>>, $his motherly body on full display<</if>>. $He has half a question on $his face, wondering whether this is going too far, but it vanishes when you <<if canSee($activeSlave)>>smile reassuringly at<<else>>compliment<</if>> $him. You take $him by the hand and lead her out onto the private balcony outside your office. It's a cloudless night, and the moon is full. You order the arcology to play a classic dance medley, and $activeSlave.slaveName becomes all innocence and grace, the perfect dance partner<<if $activeSlave.bellyPreg >= 10000>>, despite $his heavy pregnancy<<elseif $activeSlave.belly >= 10000 || $activeSlave.weight > 130>>, despite $his weight<</if>>. The only real consequence of $his nudity is <<if $activeSlave.boobs >= 300>> the extra sway of $his breasts, <</if>> <<if canPenetrate($activeSlave)>> - her visible erection, and + $his visible erection, and <<elseif ($activeSlave.clit > 0)>> - her visibly engorged clit and + $his visibly engorged clit and <<elseif $activeSlave.boobs >= 300>> and <</if>> @@ -15183,17 +15211,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $cash += random(150,200)*10>> <</replace>> <</link>> -<br><<link "Require double repayment and spend it on her">> +<br><<link "Require double repayment and spend it on $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Your tenant knows that abject surrender is his only hope once you make it clear to him that his scheme is known to you. He complies all too eagerly with your demand that he repay double what he owes. Slaves are not permitted to keep possessions, especially money, so you spend it on $activeSlave.slaveName directly. $He spends the day <<if $activeSlave.preg > 20>>having her pregnant belly moisturized, her tired feet rubbed, her cravings fulfilled, being<<else>>being<</if>> massaged, beautified, and pampered. You then take her out for a lovely meal, allowing $him to wear clothing that's almost conservative by Free Cities standards, and take a nice walk around $arcologies[0].name's club, talking on light subjects. $He's @@.hotpink;deeply touched@@ by an evening of affection without sex. + Your tenant knows that abject surrender is his only hope once you make it clear to him that his scheme is known to you. He complies all too eagerly with your demand that he repay double what he owes. Slaves are not permitted to keep possessions, especially money, so you spend it on $activeSlave.slaveName directly. $He spends the day <<if $activeSlave.preg > 20>>having $his pregnant belly moisturized, $his tired feet rubbed, $his cravings fulfilled, being<<else>>being<</if>> massaged, beautified, and pampered. You then take $him out for a lovely meal, allowing $him to wear clothing that's almost conservative by Free Cities standards, and take a nice walk around $arcologies[0].name's club, talking on light subjects. $He's @@.hotpink;deeply touched@@ by an evening of affection without sex. <<set $activeSlave.devotion += 10>> <</replace>> <</link>> -<br><<link "Leverage the situation and reward her">> +<br><<link "Leverage the situation and reward $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Archimedes might have his lever, but give you a place to set such information as this, and you can move a mountain of money. Before he knows what has beset him, your tenant is bustled out of $arcologies[0].name and replaced by a favored and hopefully more honest competitor, who @@.green;is well aware of the score here.@@ $activeSlave.slaveName, who made this possible, spends the day <<if $activeSlave.preg > 20>>having her pregnant belly moisturized, her tired feet rubbed, her cravings fulfilled, being<<else>>being<</if>> massaged, beautified, and pampered. You then take her out for a lovely meal, allowing $him to wear clothing that's almost conservative by Free Cities standards, and take a nice walk around $arcologies[0].name's club, talking on light subjects. $He's @@.hotpink;deeply touched@@ by an evening of affection without sex, and $he @@.mediumaquamarine;trusts you@@ with all sorts of amusing whorehouse rumors. + Archimedes might have his lever, but give you a place to set such information as this, and you can move a mountain of money. Before he knows what has beset him, your tenant is bustled out of $arcologies[0].name and replaced by a favored and hopefully more honest competitor, who @@.green;is well aware of the score here.@@ $activeSlave.slaveName, who made this possible, spends the day <<if $activeSlave.preg > 20>>having $his pregnant belly moisturized, $his tired feet rubbed, $his cravings fulfilled, being<<else>>being<</if>> massaged, beautified, and pampered. You then take her out for a lovely meal, allowing $him to wear clothing that's almost conservative by Free Cities standards, and take a nice walk around $arcologies[0].name's club, talking on light subjects. $He's @@.hotpink;deeply touched@@ by an evening of affection without sex, and $he @@.mediumaquamarine;trusts you@@ with all sorts of amusing whorehouse rumors. <<set $activeSlave.devotion += 3, $activeSlave.trust += 3>> <<set $cash -= 2000>> <<set $arcologies[0].prosperity += 1>> @@ -15202,20 +15230,20 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "sleeping ambivalent">> -<<link "Grope her boob">> +<<link "Grope $his boob">> <<EventNameDelink $activeSlave>> <<replace "#result">> $His eyes fly open as $he feels someone groping $him. <<if Math.floor($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>> - You're mauling her fake boob, squeezing it and making the skin of $his breast, which is already stretched rather taut by the implant, stretch a bit farther. + You're mauling $his fake boob, squeezing it and making the skin of $his breast, which is already stretched rather taut by the implant, stretch a bit farther. <<elseif $activeSlave.boobs > 3000>> - You're hefting and massaging her mass of breastflesh, playing with her <<if Math.floor($activeSlave.boobsImplant/$activeSlave.boobs) < .60>>mostly <</if>>natural boob, making her huge soft udder bounce and jiggle. + You're hefting and massaging $his mass of breastflesh, playing with $his <<if Math.floor($activeSlave.boobsImplant/$activeSlave.boobs) < .60>>mostly <</if>>natural boob, making $his huge soft udder bounce and jiggle. <<elseif $activeSlave.lactation > 0>> - You're kneading and massaging her udder, and the milk begins to <<if $activeSlave.nipples != "fuckable">>bead at<<else>>leak from<</if>> the cow's nipple. + You're kneading and massaging $his udder, and the milk begins to <<if $activeSlave.nipples != "fuckable">>bead at<<else>>leak from<</if>> the cow's nipple. <<elseif $activeSlave.boobs > 300>> - You've got her whole tit in your hands, jiggling and squeezing the entire thing. + You've got $his whole tit in your hands, jiggling and squeezing the entire thing. <<else>> - You're massaging and squeezing her flat chest. + You're massaging and squeezing $his flat chest. <</if>> $His face contorts with surprise and then outrage, but then $he <<if !canSee($activeSlave)>>recognizes your familiar smell and <</if>>realizes whose hand it is that's taking liberties with $him. <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>> @@ -15225,14 +15253,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $He's an idiot, and <</if>> - in her drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test her compliance by + in $his drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test $his compliance by <<switch $activeSlave.nipples>> <<case "inverted">> - painfully protruding her fully inverted nipple. $He puts up with even that, though $he cries a little as it pops out. + painfully protruding $his fully inverted nipple. $He puts up with even that, though $he cries a little as it pops out. <<case "partially inverted">> - painfully protruding her partially inverted nipple. $He puts up with that, too, though $he winces as it pops out. + painfully protruding $his partially inverted nipple. $He puts up with that, too, though $he winces as it pops out. <<case "huge">> - rolling her huge nipple between a thumb and forefinger, hard enough to hurt. $He accepts the mammary abuse. + rolling $his huge nipple between a thumb and forefinger, hard enough to hurt. $He accepts the mammary abuse. <<case "fuckable">> forcing your entire fist into $his nipple. $He accepts the stimulation as best $he can. <<default>> @@ -15243,17 +15271,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</replace>> <</link>> <<if $activeSlave.belly >= 5000 || $activeSlave.weight > 30>> -<br><<link "Rub her Belly">> +<br><<link "Rub $his Belly">> <<EventNameDelink $activeSlave>> <<replace "#result">> <<if $activeSlave.bellyPreg >= 5000>> - $His eyes fly open as soon as $he feels someone touching her _belly, life-rounded, stomach. + $His eyes fly open as soon as $he feels someone touching $his _belly, life-rounded, stomach. <<if $activeSlave.weight > 10>> - You're massaging and teasing her huge, soft belly. + You're massaging and teasing $his huge, soft belly. <<elseif $activeSlave.muscles > 5>> - You're massaging and teasing her taut belly and ruined abs. + You're massaging and teasing $his taut belly and ruined abs. <<else>> - You're massaging and teasing her taut belly. + You're massaging and teasing $his taut belly. <</if>> $His face contorts with surprise and then outrage, but then $he <<if !canSee($activeSlave)>>recognizes your familiar smell and <</if>>realizes whose hand it is that's taking liberties with $him. <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>> @@ -15263,28 +15291,28 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $He's an idiot, and <</if>> - in her drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test her compliance by + in $his drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test $his compliance by <<if $activeSlave.weight > 10>> - sinking your hands into her fat to get a good feel of the life growing within. + sinking your hands into $his fat to get a good feel of the life growing within. <<else>> feeling for the life growing within $him. <</if>> <<if $activeSlave.weight > 30>> - Though it takes some groping before you are met with a kick from her unborn child. + Though it takes some groping before you are met with a kick from $his unborn child. <<elseif $activeSlave.pregType < 3>> - It doesn't take long before you are met with a kick from her unborn child. + It doesn't take long before you are met with a kick from $his unborn child. <<else>> $He is so full of children that your ministrations are met with a hail of motion. <</if>> <<if $activeSlave.pregSource == -1>>Smiling at how active your children are<<else>>Satisfied<</if>>, <<elseif $activeSlave.bellyImplant >= 5000>> - $His eyes fly open as soon as $he feels someone touching her _belly stomach. + $His eyes fly open as soon as $he feels someone touching $his _belly stomach. <<if $activeSlave.weight > 10>> - You're massaging and teasing her huge, soft belly. + You're massaging and teasing $his huge, soft belly. <<elseif $activeSlave.muscles > 5>> - You're massaging and teasing her taut belly and ruined abs. + You're massaging and teasing $his taut belly and ruined abs. <<else>> - You're massaging and teasing her taut belly. + You're massaging and teasing $his taut belly. <</if>> $His face contorts with surprise and then outrage, but then $he <<if !canSee($activeSlave)>>recognizes your familiar smell and <</if>>realizes whose hand it is that's taking liberties with $him. <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>> @@ -15294,9 +15322,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $He's an idiot, and <</if>> - in her drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test her compliance by + in $his drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test $his compliance by <<if $activeSlave.weight > 10>> - sinking your hands into her fat to get a good feel of the implant hidden within. + sinking your hands into $his fat to get a good feel of the implant hidden within. <<else>> feeling up the implant within $him. <</if>> @@ -15309,13 +15337,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> Satisfied, <<elseif $activeSlave.bellyFluid >= 5000>> - $His eyes fly open as soon as $he feels someone touching her _belly, <<print $activeSlave.inflationType>>-filled stomach. + $His eyes fly open as soon as $he feels someone touching $his _belly, <<print $activeSlave.inflationType>>-filled stomach. <<if $activeSlave.weight > 10>> - You're massaging and jiggling her huge, soft belly, enjoying the sounds it makes as you move it. + You're massaging and jiggling $his huge, soft belly, enjoying the sounds it makes as you move it. <<elseif $activeSlave.muscles > 5>> - You're massaging and jiggling her taut belly and stretched abs, enjoying the sounds it makes as you move it. + You're massaging and jiggling $his taut belly and stretched abs, enjoying the sounds it makes as you move it. <<else>> - You're massaging and jiggling her taut belly, enjoying the sounds it makes as you move it. + You're massaging and jiggling $his taut belly, enjoying the sounds it makes as you move it. <</if>> $His face contorts with surprise and then outrage, but then $he <<if !canSee($activeSlave)>>recognizes your familiar smell and <</if>>realizes whose hand it is that's taking liberties with $him. <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>> @@ -15325,25 +15353,25 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $He's an idiot, and <</if>> - in her drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test her compliance by + in $his drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test $his compliance by <<if $activeSlave.weight > 10>> - sinking your hands into her fat to get a good grip + sinking your hands into $his fat to get a good grip <<else>> wrapping your hands around the sloshing globe <</if>> - and vigorously shaking. As her gut's groaning from the sudden shift of its contents dies down, you gently apply pressure to the bloated organ, careful to only cause her discomfort and not to disgorge her contents. Satisfied, + and vigorously shaking. As $his gut's groaning from the sudden shift of its contents dies down, you gently apply pressure to the bloated organ, careful to only cause $his discomfort and not to disgorge $his contents. Satisfied, <<else>> - $His eyes fly open as soon as $he feels someone touching her + $His eyes fly open as soon as $he feels someone touching $his <<if $activeSlave.weight > 190>> - expansive belly. You're massaging and jiggling her obscene gut while teasing her many folds and struggling to find $his belly button. + expansive belly. You're massaging and jiggling $his obscene gut while teasing $his many folds and struggling to find $his belly button. <<elseif $activeSlave.weight > 160>> - massive, soft belly. You're massaging and jiggling her obscene gut while teasing her many folds and hidden belly button. + massive, soft belly. You're massaging and jiggling $his obscene gut while teasing $his many folds and hidden belly button. <<elseif $activeSlave.weight > 130>> - huge, soft belly. You're massaging and jiggling her thick gut while teasing her folds and hidden belly button. + huge, soft belly. You're massaging and jiggling $his thick gut while teasing $his folds and hidden belly button. <<elseif $activeSlave.weight > 95>> - big soft belly. You're massaging and jiggling her gut while teasing her folds and hidden belly button. + big soft belly. You're massaging and jiggling $his gut while teasing $his folds and hidden belly button. <<else>> - chubby middle. You're massaging and jiggling her tiny gut. + chubby middle. You're massaging and jiggling $his tiny gut. <</if>> $His face contorts with surprise and then outrage, but then $he <<if !canSee($activeSlave)>>recognizes your familiar smell and <</if>>realizes whose hand it is that's taking liberties with $him. <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>> @@ -15353,7 +15381,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $He's an idiot, and <</if>> - in her drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test her compliance by roughly kneading her pliant flesh, testing how well it can be molded into pleasurable valleys and ravines. Satisfied, + in $his drowsy state $he can't figure out what to do. $He settles for @@.hotpink;freezing submissively@@ and letting you do what you like. You test $his compliance by roughly kneading $his pliant flesh, testing how well it can be molded into pleasurable valleys and ravines. Satisfied, <</if>> you leave $him to get back to sleep as best $he can. <<set $activeSlave.devotion += 4>> @@ -15361,10 +15389,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</link>> <</if>> <<if $PC.dick == 1>> -<br><<link "Cum on her face">> +<br><<link "Cum on $his face">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You stand over $him, quietly masturbating while watching her sleep. Several of her fellow slaves come and go as you do so, but if they're surprised by the sight, they have the presence of mind not to show it. You fancy yourself a bit of a marks<<if $PC.title == 1>>man<<else>>woman<</if>>, and you don't feel the need to bend over $him to score good hits. Your load comes in three main jets: the first hits her on the nipple, the second tracks up her sternum and throat, and the third splashes full across her face as $his eyes fly open<<if $PC.vagina == 1>>, each of these accompanied by some less directionally perfect girlcum<</if>>. $He sputters with surprise and then outrage, but <<if !canSee($activeSlave)>>once $he recognizes your taste and<<else>>then $he<</if>> realizes who it is standing over her <<if canSee($activeSlave)>>and<<else>>does $he<</if>> @@.gold;freezes in terror.@@ + You stand over $him, quietly masturbating while watching her sleep. Several of $his fellow slaves come and go as you do so, but if they're surprised by the sight, they have the presence of mind not to show it. You fancy yourself a bit of a marks<<if $PC.title == 1>>man<<else>>woman<</if>>, and you don't feel the need to bend over $him to score good hits. Your load comes in three main jets: the first hits her on the nipple, the second tracks up $his sternum and throat, and the third splashes full across $his face as $his eyes fly open<<if $PC.vagina == 1>>, each of these accompanied by some less directionally perfect girlcum<</if>>. $He sputters with surprise and then outrage, but <<if !canSee($activeSlave)>>once $he recognizes your taste and<<else>>then $he<</if>> realizes who it is standing over her <<if canSee($activeSlave)>>and<<else>>does $he<</if>> @@.gold;freezes in terror.@@ <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>> $He's quick, and $he immediately realizes <<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>> @@ -15372,15 +15400,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $He gradually manages to calculate <</if>> - that doing anything other than thanking you would be phenomenally stupid. "Thank you, <<Master>>," $he <<if SlaveStatsChecker.checkForLisp($activeSlave)>>lisps<<else>>mumbles<</if>> blearily. You leave $him to @@.hotpink;puzzle over her own submissiveness,@@ covered in your cum. + that doing anything other than thanking you would be phenomenally stupid. "Thank you, <<Master>>," $he <<if SlaveStatsChecker.checkForLisp($activeSlave)>>lisps<<else>>mumbles<</if>> blearily. You leave $him to @@.hotpink;puzzle over $his own submissiveness,@@ covered in your cum. <<set $activeSlave.devotion += 4, $activeSlave.trust -= 2>> <</replace>> <</link>> <<else>> -<br><<link "Squirt on her face">> +<br><<link "Squirt on $his face">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You stand over $him, quietly masturbating while watching her sleep. Several of her fellow slaves come and go as you do so, but if they're surprised by the sight, they have the presence of mind not to show it. You're on excellent terms with your cunt, and you know just what it takes to make yourself squirt. When you feel the heat building just right, you quickly straddle her face without touching $him, angling yourself carefully and increasing the pace of your schlicking. In no time at all, a jet of femcum splashes onto her face and down across $his chest. $He sputters with surprise and then outrage, but then $he <<if canSee($activeSlave)>>realizes whose pussy $he's staring straight into<<else>>recognizes your flavor<</if>> and @@.gold;freezes in terror.@@ + You stand over $him, quietly masturbating while watching her sleep. Several of $his fellow slaves come and go as you do so, but if they're surprised by the sight, they have the presence of mind not to show it. You're on excellent terms with your cunt, and you know just what it takes to make yourself squirt. When you feel the heat building just right, you quickly straddle $his face without touching $him, angling yourself carefully and increasing the pace of your schlicking. In no time at all, a jet of femcum splashes onto $his face and down across $his chest. $He sputters with surprise and then outrage, but then $he <<if canSee($activeSlave)>>realizes whose pussy $he's staring straight into<<else>>recognizes your flavor<</if>> and @@.gold;freezes in terror.@@ <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 50>> $He's quick, and $he immediately realizes <<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant >= -15>> @@ -15388,7 +15416,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $He gradually manages to calculate <</if>> - that doing anything other than thanking you would be phenomenally stupid. "Thank you, <<Master>>," $he <<if SlaveStatsChecker.checkForLisp($activeSlave)>>lisps<<else>>mumbles<</if>> blearily. You leave $him to @@.hotpink;puzzle over her own submissiveness,@@ covered in your pussyjuice. + that doing anything other than thanking you would be phenomenally stupid. "Thank you, <<Master>>," $he <<if SlaveStatsChecker.checkForLisp($activeSlave)>>lisps<<else>>mumbles<</if>> blearily. You leave $him to @@.hotpink;puzzle over $his own submissiveness,@@ covered in your pussyjuice. <<set $activeSlave.devotion += 4, $activeSlave.trust -= 2>> <</replace>> <</link>> @@ -15396,9 +15424,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Just watch her for a little while">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You stand there for a while, watching the exhausted slave sleep. It's an oddly restful sight, and the aesthetics of her slumbering little movements hold your attention for a time.<<if $activeSlave.preg > 20>> You watch the subtle movements going on within her womb as well.<</if>> After a while, you head to your own bed. Several of her fellow slaves came and went as you watched $him, but if they're surprised by the sight, they have the presence of mind not to show it. + You stand there for a while, watching the exhausted slave sleep. It's an oddly restful sight, and the aesthetics of $his slumbering little movements hold your attention for a time.<<if $activeSlave.preg > 20>> You watch the subtle movements going on within $his womb as well.<</if>> After a while, you head to your own bed. Several of $his fellow slaves came and went as you watched $him, but if they're surprised by the sight, they have the presence of mind not to show it. <br><br> - One of them quietly lets $him know about the incident the next day, though, and the overall impact on her mental state is surprisingly positive. In a more normal human setting, the news that someone watched her sleep last night without her consent or even knowledge at the time would disturb her greatly. However, it's not uncommon for slaves in the dormitory to wake up to the sounds of the occupant of the bedroll next to theirs getting fucked, and without her consent, either. Perhaps you're odd, $he's obviously thinking, but @@.mediumaquamarine;perhaps you won't rape her while $he sleeps.@@ + One of them quietly lets $him know about the incident the next day, though, and the overall impact on $his mental state is surprisingly positive. In a more normal human setting, the news that someone watched her sleep last night without $his consent or even knowledge at the time would disturb her greatly. However, it's not uncommon for slaves in the dormitory to wake up to the sounds of the occupant of the bedroll next to theirs getting fucked, and without $his consent, either. Perhaps you're odd, $he's obviously thinking, but @@.mediumaquamarine;perhaps you won't rape her while $he sleeps.@@ <<set $activeSlave.trust += 4>> <</replace>> <</link>> @@ -15410,19 +15438,19 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> You tell her $he's a good little succubus, and you're going to let her feed. $He knows exactly what you mean, and <<if $activeSlave.belly >= 300000>> - leans onto her _belly stomach + leans onto $his _belly stomach <<else>> <<if $activeSlave.belly >= 5000>>gently lowers $himself<<else>>gets<</if>> to $his knees <</if>> - quickly, pressing her $activeSlave.nipples nipples against your thighs and grasping your hips to give $himself leverage for some very aggressive oral. After + quickly, pressing $his $activeSlave.nipples nipples against your thighs and grasping your hips to give $himself leverage for some very aggressive oral. After <<if $PC.dick == 1>> - a couple of lush sucks at each of your balls<<if $PC.vagina == 1>> and some eager nuzzling of your pussylips<</if>>, $he moves straight to a hard blowjob, deepthroating your cock and almost ramming her head against you.<<if $PC.vagina == 1>> $He keeps $his tongue stuck out, and whenever $he gets you fully hilted, $he manages to reach your pussylips with it.<</if>> $He <<if $activeSlave.fetish == "cumslut">>doesn't have to pretend to be starving for your cum.<<else>>does a good job of acting like $he's authentically starving for your cum.<</if>> $He groans with satisfaction when you blow your load down her gullet, + a couple of lush sucks at each of your balls<<if $PC.vagina == 1>> and some eager nuzzling of your pussylips<</if>>, $he moves straight to a hard blowjob, deepthroating your cock and almost ramming $his head against you.<<if $PC.vagina == 1>> $He keeps $his tongue stuck out, and whenever $he gets you fully hilted, $he manages to reach your pussylips with it.<</if>> $He <<if $activeSlave.fetish == "cumslut">>doesn't have to pretend to be starving for your cum.<<else>>does a good job of acting like $he's authentically starving for your cum.<</if>> $He groans with satisfaction when you blow your load down her gullet, <<else>> - nuzzling her nose against your moist cunt, $he starts to eat you out like $he's starving, sparing no time for subtlety, lapping up your female juices with evident relish. You run your fingers through her $activeSlave.slaveName hair, telling her $he'll have to survive on pussyjuice. $He replies, but you hold her head hard against you as $he does, turning whatever $he says into an unintelligible, delectable mumbling into your womanhood. $He groans with satisfaction when you stiffen with orgasm, giving $him a final gush of girlcum, + nuzzling $his nose against your moist cunt, $he starts to eat you out like $he's starving, sparing no time for subtlety, lapping up your female juices with evident relish. You run your fingers through $his $activeSlave.slaveName hair, telling her $he'll have to survive on pussyjuice. $He replies, but you hold $his head hard against you as $he does, turning whatever $he says into an unintelligible, delectable mumbling into your womanhood. $He groans with satisfaction when you stiffen with orgasm, giving $him a final gush of girlcum, <</if>> - and <<if $activeSlave.belly >= 5000>>hefts her <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>bloated<</if>> bulk up<<else>>gets to her feet<</if>> licking $his lips and patting her _belly stomach. + and <<if $activeSlave.belly >= 5000>>hefts $his <<if $activeSlave.bellyPreg >= 3000>>gravid<<else>>bloated<</if>> bulk up<<else>>gets to $his feet<</if>> licking $his lips and patting $his _belly stomach. <<if $activeSlave.belly >= 1500>> - "That wa<<s>> <<s>>uch a big meal <<Master>>, look how full it made me!" $He teases, pretending her + "That wa<<s>> <<s>>uch a big meal <<Master>>, look how full it made me!" $He teases, pretending $his <<if $activeSlave.bellyPreg >= 1500>> gravid belly is filled with your fluids. <<elseif $activeSlave.bellyImplant >= 1500>> @@ -15431,7 +15459,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t wobbling, <<print $activeSlave.inflationType>>-filled belly is filled with your fluids. <</if>> <<if $PC.balls >= 3>> - Seeing as $he took the entirety of your inhuman load, there is some truth to her words. + Seeing as $he took the entirety of your inhuman load, there is some truth to $his words. <</if>> <</if>> $He's obviously @@.mediumaquamarine;becoming more comfortable@@ playing the part of a vampiric sex @@ -15439,10 +15467,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t demon, and it's a role the incorrigible cumslut @@.hotpink;loves.@@ <<set $activeSlave.devotion += 2>> <<elseif ($activeSlave.fetish == "cumslut")>> - demon, and it's a role that @@.lightcoral;reinforces her oral fixation.@@ + demon, and it's a role that @@.lightcoral;reinforces $his oral fixation.@@ <<set $activeSlave.fetishStrength += 4>> <<elseif (($activeSlave.fetishStrength <= 95) || ($activeSlave.fetishKnown == 0)) && (random(0,1) == 0)>> - demon, and the role @@.lightcoral;focuses her attention on $his mouth.@@ + demon, and the role @@.lightcoral;focuses $his attention on $his mouth.@@ <<set $activeSlave.fetishStrength = 10, $activeSlave.fetishKnown = 1, $activeSlave.fetish = "cumslut">> <<else>> demon. @@ -15451,7 +15479,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</replace>> <</link>> <<if canDoVaginal($activeSlave) && ($PC.dick == 1)>> -<br><<link "Feed her">> +<br><<link "Feed $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> You tell her $he's a good little succubus, and you're going to feed $him. @@ -15466,7 +15494,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> a convenient tabletop nearby. $He <</if>> - spreads $his legs for you, smiling with anticipation, her + spreads $his legs for you, smiling with anticipation, $his <<if $activeSlave.vaginaLube > 0>> cunt already soaking wet. <<elseif $activeSlave.labia > 0>> @@ -15488,11 +15516,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> channel. <<= VaginalVCheck()>> - You're here to rut, not make love, and you give it to her hard, forcing <<if $activeSlave.voice >= 3>>high squeals<<else>>animal grunts<</if>> out of $him. $He climaxes strongly, and the glorious feeling finishes you as well, bringing rope after rope of your cum jetting into $him. $He groans at the feeling, and as $he <<if $activeSlave.belly >= 5000 || $activeSlave.weight > 190>>slowly <</if>>gets to her feet $he uses a hand to transfer a taste of the mixture of your seed and <<if $PC.vagina == 1>>both of your<<else>>her<</if>> pussyjuice to $his mouth. + You're here to rut, not make love, and you give it to her hard, forcing <<if $activeSlave.voice >= 3>>high squeals<<else>>animal grunts<</if>> out of $him. $He climaxes strongly, and the glorious feeling finishes you as well, bringing rope after rope of your cum jetting into $him. $He groans at the feeling, and as $he <<if $activeSlave.belly >= 5000 || $activeSlave.weight > 190>>slowly <</if>>gets to $his feet $he uses a hand to transfer a taste of the mixture of your seed and <<if $PC.vagina == 1>>both of your<<else>>$his<</if>> pussyjuice to $his mouth. <<if $activeSlave.belly >= 750000>> - "Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you! There'<<s>> <<s>>o many in me... Oh god, it feel<<s>> like I'm going to bur<<s>>t! <<S>>o many... <<Master>> <<s>>ure i<<s>> potent! I hope <<if $PC.title == 1>>he<<else>><<sh>>e<</if>> can handle them all!" $He groans, cradling her _belly belly and pretending to be forced to the ground by $his pregnancy growing ever larger. "<<Master>>! They won't <<s>>top! Oh... <<S>>o full... I can't <<s>>top con<<c>>eiving!" $He roles onto her back and clutches her absurd stomach. "<<S>>o tight! <<S>>o full! <<S>>o Good! I need more! Oh, <<Master>>..." $He may be getting a little too into the fantasy. + "Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you! There'<<s>> <<s>>o many in me... Oh god, it feel<<s>> like I'm going to bur<<s>>t! <<S>>o many... <<Master>> <<s>>ure i<<s>> potent! I hope <<if $PC.title == 1>>he<<else>><<sh>>e<</if>> can handle them all!" $He groans, cradling $his _belly belly and pretending to be forced to the ground by $his pregnancy growing ever larger. "<<Master>>! They won't <<s>>top! Oh... <<S>>o full... I can't <<s>>top con<<c>>eiving!" $He roles onto $his back and clutches $his absurd stomach. "<<S>>o tight! <<S>>o full! <<S>>o Good! I need more! Oh, <<Master>>..." $He may be getting a little too into the fantasy. <<if $activeSlave.broodmother == 2 && $activeSlave.preg > 37>> - A gush of fluid flows from $his pussy, snapping her out of $his roleplay. "<<Master>>! I need... One'<<s>> coming now!" You rub $his contracting stomach, enjoying the feeling of the life within shifting to take advantage of the free space. You sigh and lean down, the vessel of your spawn needs help after pinning $himself in such a compromising position. Holding $his belly clear of $his crotch, you watch $him steadily push out $his child before spasming with orgasm and freeing it effortlessly into the world. After collecting it for a servant to handle, you help the exhausted $girl back to $his feet. $He thanks you sincerely for the assist before going to clean $himself up. You barely have time to turn away before another splash catches your attention. "<<Master>>... Another'<<s>>, mmmmh, coming...". + A gush of fluid flows from $his pussy, snapping $him out of $his roleplay. "<<Master>>! I need... One'<<s>> coming now!" You rub $his contracting stomach, enjoying the feeling of the life within shifting to take advantage of the free space. You sigh and lean down, the vessel of your spawn needs help after pinning $himself in such a compromising position. Holding $his belly clear of $his crotch, you watch $him steadily push out $his child before spasming with orgasm and freeing it effortlessly into the world. After collecting it for a servant to handle, you help the exhausted $girl back to $his feet. $He thanks you sincerely for the assist before going to clean $himself up. You barely have time to turn away before another splash catches your attention. "<<Master>>... Another'<<s>>, mmmmh, coming...". <</if>> <<elseif $activeSlave.belly >= 600000>> "Oh <<Master>>! I'm <<s>>welling <<s>>o fast with imp<<s>> for you! There'<<s>> <<s>>o many in me... Oh god, it feel<<s>> like I'm going to bur<<s>>t! <<S>>o many... <<Master>> <<s>>ure i<<s>> potent! I hope <<if $PC.title == 1>>he<<else>><<sh>>e<</if>> can handle them all!" $He teases, cradling $his _belly belly and pretending to be forced to the ground by $his pregnancy growing ever larger. @@ -15532,7 +15560,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>> turns and hugs the nearest wall, <<if $activeSlave.belly >= 300000>> - sliding her _belly belly down it until it parts $his legs. $He shuffles onto it to offer you her needy cunt. + sliding $his _belly belly down it until it parts $his legs. $He shuffles onto it to offer you her needy cunt. <<else>> going up on tiptoe and cocking $his hips to offer you her needy cunt. <</if>> @@ -15544,7 +15572,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> slides slowly inside $his tight cunt. <</if>> - As you fuck $him, you ask $his how succubi feed. "W-well," $he gasps, struggling to gather $his wits, + As you fuck $him, you ask $him how succubi feed. "W-well," $he gasps, struggling to gather $his wits, <<else>> <<if $activeSlave.belly >= 300000>> leans onto $his _belly belly @@ -15998,10 +16026,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "dick wringing">> -<<link "Address her problem together">> +<<link "Address $his problem together">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You step in and give $him a quick kiss on the lips, telling her you'd be happy to. $He was confident you would, but the tenderness makes $his breath catch a little. You take $him by her + You step in and give $him a quick kiss on the lips, telling $him you'd be happy to. $He was confident you would, but the tenderness makes $his breath catch a little. You take $him by $his <<if $activeSlave.weight > 130>> fat <<elseif $activeSlave.weight > 95>> @@ -16015,9 +16043,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> feminine <</if>> - shoulders and keep kissing $him, steering her backwards into your office. $He gets the idea and cooperates as best $he can, giggling <<if $activeSlave.voice == 0>>mutely<<else>>cutely<</if>> into your mouth as her hot and increasingly horny body bumps against your own. + shoulders and keep kissing $him, steering $him backwards into your office. $He gets the idea and cooperates as best $he can, giggling <<if $activeSlave.voice == 0>>mutely<<else>>cutely<</if>> into your mouth as $his hot and increasingly horny body bumps against your own. <br><br> - When her + When $his <<if $activeSlave.butt > 12>> monumental ass <<elseif $activeSlave.butt > 7>> @@ -16035,25 +16063,25 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> short $desc hops up <</if>> - to lie across it, using a hand to lay her inhumanly big dick + to lie across it, using a hand to lay $his inhumanly big dick <<if $activeSlave.belly > 10000>> - onto her _belly <<if $activeSlave.bellyPreg > 0>>pregnant <</if>>belly. + onto $his _belly <<if $activeSlave.bellyPreg > 0>>pregnant <</if>>belly. <<elseif $activeSlave.weight > 160>> - across her gut. + across $his gut. <<elseif $activeSlave.boobs > 5000>> - in the warm canyon formed by her inhumanly big boobs. + in the warm canyon formed by $his inhumanly big boobs. <<elseif $activeSlave.weight > 95>> - across her soft belly. + across $his soft belly. <<elseif $activeSlave.belly > 1500>> - over her _belly <<if $activeSlave.bellyPreg > 0>>pregnant <</if>>belly. + over $his _belly <<if $activeSlave.bellyPreg > 0>>pregnant <</if>>belly. <<elseif $activeSlave.muscles > 30>> - across her ripped abs. + across $his ripped abs. <<elseif $activeSlave.weight > 10>> - across her plush stomach. + across $his plush stomach. <<else>> up $his stomach. <</if>> - $He spreads $his legs as wide as they'll go, and reaches down to spread her buttocks even wider, offering you her + $He spreads $his legs as wide as they'll go, and reaches down to spread $his buttocks even wider, offering you <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> $his holes. <<elseif canDoVaginal($activeSlave)>> @@ -16061,18 +16089,18 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $his asshole. <</if>> - $He <<if $activeSlave.voice == 0>>tries to groan<<else>>groans<</if>> with anticipation of the coming relief as you slide <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> past her + $He <<if $activeSlave.voice == 0>>tries to groan<<else>>groans<</if>> with anticipation of the coming relief as you slide <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> past $his <<if canDoVaginal($activeSlave)>> - pussylips and inside her womanhood. + pussylips and inside $his womanhood. <<= VaginalVCheck()>> <<else>> - sphincter and inside her asspussy. + sphincter and inside $his asspussy. <<= AnalVCheck()>> <</if>> <br><br> - It doesn't take long. $His <<if $activeSlave.scrotum == 0>>invisible but overfull balls<<else>>balls tighten and<</if>> shoot cum into her soft python of a dick, but not a drop appears at its tip. Gasping at the mixed relief and discomfort, $he lets $his butt go and wriggles around to grab her dick around its base with both hands. $He squeezes it from base to tip to bring out its contents. $He's so huge that $he's able to reach down with $his lips and get her cockhead into $his mouth, the meat filling it entirely. $He sucks industriously, swallowing her own load. $He was just trying to relieve the pressure, but the added stimulation brings $him to climax again. Silenced by her own dickhead, $he shudders deliciously and starts over, wringing more cum into her own mouth. You change angles, bringing the hard head of <<if $PC.dick == 1>>your own penis<<else>>your phallus<</if>> against her prostate and forcing an agonizing third climax. + It doesn't take long. $His <<if $activeSlave.scrotum == 0>>invisible but overfull balls<<else>>balls tighten and<</if>> shoot cum into $his soft python of a dick, but not a drop appears at its tip. Gasping at the mixed relief and discomfort, $he lets $his butt go and wriggles around to grab $his dick around its base with both hands. $He squeezes it from base to tip to bring out its contents. $He's so huge that $he's able to reach down with $his lips and get $his cockhead into $his mouth, the meat filling it entirely. $He sucks industriously, swallowing $his own load. $He was just trying to relieve the pressure, but the added stimulation brings $him to climax again. Silenced by $his own dickhead, $he shudders deliciously and starts over, wringing more cum into $his own mouth. You change angles, bringing the hard head of <<if $PC.dick == 1>>your own penis<<else>>your phallus<</if>> against $his prostate and forcing an agonizing third climax. <br><br> - $He's so discombobulated by this that $he goes limp, offering no resistance as you extract yourself, <<if $PC.dick == 1>>straddle $his torso, and press your dick inside $his mouth to climax there, adding your own ejaculate<<else>>slip out of the harness with the ease of long practice, and straddle her face so that your climax adds a good quantity of your pussyjuice<</if>> to everything $he's already gotten down<<if $PC.vagina == 1>><<if $PC.dick == 1>> and leaving quite a lot of your pussyjuice on her chin<</if>><</if>>. When you finally release $him, $he slithers down to the floor, utterly spent. + $He's so discombobulated by this that $he goes limp, offering no resistance as you extract yourself, <<if $PC.dick == 1>>straddle $his torso, and press your dick inside $his mouth to climax there, adding your own ejaculate<<else>>slip out of the harness with the ease of long practice, and straddle $his face so that your climax adds a good quantity of your pussyjuice<</if>> to everything $he's already gotten down<<if $PC.vagina == 1>><<if $PC.dick == 1>> and leaving quite a lot of your pussyjuice on $his chin<</if>><</if>>. When you finally release $him, $he slithers down to the floor, utterly spent. <<if !canTalk($activeSlave)>> $He raises a shaky hand to @@.mediumaquamarine;gesture thanks.@@ <<elseif SlaveStatsChecker.checkForLisp($activeSlave)>> @@ -16083,20 +16111,20 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.trust += 4>> <</replace>> <</link>> -<br><<link "Use her trouble to dominate her">> +<br><<link "Use $his trouble to dominate $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> You step in and trace a <<if $PC.title == 1>>strong<<else>>feminine<</if>> hand across $his lips before inserting two fingers into $his mouth. $He looks puzzled, but obediently begins to suck on your fingers. You use your other hand to explore $his body, titillating the heavily aroused $desc until $he's on the verge of orgasm. Without warning, you place an elastic band around the slave's dickhead. $He writhes with discomfort, but knows better than to protest. It's tight, but not agonizingly so. $He'll be able to cum, but not a drop will get out. Grabbing $him by a nipple<<if $activeSlave.nipples == "fuckable">>cunt<</if>>, you pull her down to $his knees, enjoying the motion of $his body as $he wriggles with the discomfort of being tugged this way, the uncomfortable thing squeezing the tip of $his cock, and the suspicion that this is going to be tough. <br><br> Once $he's in position, you <<if $activeSlave.butt > 12>> - struggle to wrap you arms around her bountiful buttcheeks, + struggle to wrap you arms around $his bountiful buttcheeks, <<elseif $activeSlave.butt > 7>> - heft her ridiculous buttcheeks possessively, + heft $his ridiculous buttcheeks possessively, <<elseif $activeSlave.butt > 4>> - give her huge ass a possessive squeeze, + give $his huge ass a possessive squeeze, <<else>> - run your hands across her bottom, + run your hands across $his bottom, <</if>> and then shove <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> <<if canDoVaginal($activeSlave)>> @@ -16108,26 +16136,26 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> $His cock is so long that it drags along the floor as you pound <<if $activeSlave.belly >= 300000>> - her against her _belly dome of a stomach. + her against $his _belly dome of a stomach. <<elseif $activeSlave.boobs > 12000>> - $him, her enormous tits serving as a cushion for $his torso to rest against. + $him, $his enormous tits serving as a cushion for $his torso to rest against. <<elseif $activeSlave.boobs > 7000>> - $him, accompanied by the nipples that cap her absurd boobs. + $him, accompanied by the nipples that cap $his absurd boobs. <<else>> $him. <</if>> <br><br> - $He's so pent up that $he reaches her first climax quickly, filling her capped dick with cum. $He <<if $activeSlave.voice == 0>>tries to moan<<else>>moans<</if>> at the combination of relief and pressure inside her dick, and then slumps a little when $he feels the <<if $PC.dick == 1>>penis<<else>>hard phallus<</if>> inside her fuck her even harder, forcing her towards a second orgasm. And after that one, a third. And a fourth. + $He's so pent up that $he reaches $his first climax quickly, filling $his capped dick with cum. $He <<if $activeSlave.voice == 0>>tries to moan<<else>>moans<</if>> at the combination of relief and pressure inside $his dick, and then slumps a little when $he feels the <<if $PC.dick == 1>>penis<<else>>hard phallus<</if>> inside her fuck her even harder, forcing her towards a second orgasm. And after that one, a third. And a fourth. <br><br> - When you finally climax yourself, you stand, leaving her writhing at your feet with her huge soft cock positively pressurized. Considering the situation, you kneel down at her side, deciding what to do. Stroking her in a mockery of reassurance, you grab her agonized member, producing a <<if $activeSlave.voice == 0>>gaping, silent scream<<else>>little shriek<</if>>. + When you finally climax yourself, you stand, leaving her writhing at your feet with $his huge soft cock positively pressurized. Considering the situation, you kneel down at $his side, deciding what to do. Stroking $him in a mockery of reassurance, you grab $his agonized member, producing a <<if $activeSlave.voice == 0>>gaping, silent scream<<else>>little shriek<</if>>. <<if $activeSlave.toyHole == "dick" && ($PC.preg == 0 || $PC.vagina == 0)>> - You maneuver the massive thing into your own <<if $PC.preg == 0 && $PC.vagina == 1>>pussy<<else>>asshole<</if>>, slide a finger in alongside the monstrous thing as $he <<if $activeSlave.voice == 0>>moans with expectation<<else>>begs abjectly to unleash her<</if>>, and pop the elastic off. You get to watch her face as $he floods your <<if $PC.preg == 0 && $PC.vagina == 1>>womanhood<<else>>bowels<</if>> with cum, your stomach taking on a distinctive swell as her pentup load empties into you. + You maneuver the massive thing into your own <<if $PC.preg == 0 && $PC.vagina == 1>>pussy<<else>>asshole<</if>>, slide a finger in alongside the monstrous thing as $he <<if $activeSlave.voice == 0>>moans with expectation<<else>>begs abjectly to unleash her<</if>>, and pop the elastic off. You get to watch $his face as $he floods your <<if $PC.preg == 0 && $PC.vagina == 1>>womanhood<<else>>bowels<</if>> with cum, your stomach taking on a distinctive swell as $his pentup load empties into you. <<set $activeSlave.penetrativeCount++, $penetrativeTotal++>> <<if canImpreg($PC, $activeSlave)>> <<= knockMeUp($PC, 50, 0, $activeSlave.ID)>> <</if>> <<else>> - You maneuver the massive thing inside the slave's own well-fucked <<if $activeSlave.vagina > -1>>pussy<<else>>asshole<</if>>, and then slide fingers in alongside the monstrous thing as $he <<if $activeSlave.voice == 0>>cries desperately<<else>>begs abjectly for mercy<</if>>. Popping the elastic off, you get to watch her face as $he floods her own <<if $activeSlave.vagina > -1>>womanhood<<else>>bowels<</if>> with cum. + You maneuver the massive thing inside the slave's own well-fucked <<if $activeSlave.vagina > -1>>pussy<<else>>asshole<</if>>, and then slide fingers in alongside the monstrous thing as $he <<if $activeSlave.voice == 0>>cries desperately<<else>>begs abjectly for mercy<</if>>. Popping the elastic off, you get to watch $his face as $he floods $his own <<if $activeSlave.vagina > -1>>womanhood<<else>>bowels<</if>> with cum. <<if canDoVaginal($activeSlave)>> <<set $activeSlave.vaginalCount++, $vaginalTotal++>> <<if canGetPregnant($activeSlave) && canBreed($activeSlave, $activeSlave) && $activeSlave.vasectomy != 1>> /* can't miss the opportunity to knock $himself up */ @@ -16137,68 +16165,68 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.analCount++, $analTotal++>> <</if>> <</if>> - The cum pressurization brought her almost to half-hardness, and as this effect diminishes, her dick slides out again, releasing a lewd torrent of cum. $He cries with overstimulation, relief, pain, and humiliation, @@.hotpink;groveling below you@@ in utter subjugation. + The cum pressurization brought her almost to half-hardness, and as this effect diminishes, $his dick slides out again, releasing a lewd torrent of cum. $He cries with overstimulation, relief, pain, and humiliation, @@.hotpink;groveling below you@@ in utter subjugation. <<set $activeSlave.devotion += 4>> <</replace>> <</link>> <<case "fucktoy tribbing">> -<<link "Make love to her">> +<<link "Make love to $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You crane your neck down and kiss her on the lips. $He awakens slowly, gently, her $activeSlave.eyeColor eyes fluttering open, looking black in the nighttime gloom. $He smiles into your mouth, and you feel her pulse quicken through the extensive contact down your bodies. You interlace your fingers between $hers and turn, pressing her back down into the soft sheets. $He opens $himself for you, spreading $his legs wide and embracing you with them, making sure to run her heels up the backs of your calves in a way that sends a shiver up your spine. Feeling this through your kissing mouths, $he smiles into you, a pleased expression $he maintains as you + You crane your neck down and kiss her on the lips. $He awakens slowly, gently, $his $activeSlave.eyeColor eyes fluttering open, looking black in the nighttime gloom. $He smiles into your mouth, and you feel $his pulse quicken through the extensive contact down your bodies. You interlace your fingers between $hers and turn, pressing her back down into the soft sheets. $He opens $himself for you, spreading $his legs wide and embracing you with them, making sure to run $his heels up the backs of your calves in a way that sends a shiver up your spine. Feeling this through your kissing mouths, $he smiles into you, a pleased expression $he maintains as you <<if $activeSlave.belly >= 300000 && $PC.belly >= 5000>> - struggle to find a position to handle both your pregnancy and her <<if $activeSlave.bellyPreg >= 3000>>_belly gravid middle<<else>>_belly belly<</if>> and + struggle to find a position to handle both your pregnancy and $his <<if $activeSlave.bellyPreg >= 3000>>_belly gravid middle<<else>>_belly belly<</if>> and <<elseif $activeSlave.belly >= 300000>> - struggle to find a position to handle her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>> and + struggle to find a position to handle $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>> and <<elseif $activeSlave.belly >= 5000 && $PC.belly >= 5000>> - shift into a position to better accommodate both your pregnancy and her <<if $activeSlave.bellyPreg >= 3000>>_belly gravid middle<<else>>_belly belly<</if>> and + shift into a position to better accommodate both your pregnancy and $his <<if $activeSlave.bellyPreg >= 3000>>_belly gravid middle<<else>>_belly belly<</if>> and <<elseif $PC.belly >= 5000>> shift into a position to better accommodate your pregnancy and <<elseif $activeSlave.belly >= 5000>> - shift into a position to better accommodate her <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>> and + shift into a position to better accommodate $his <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>_belly belly<</if>> and <</if>> begin to gently press your womanhood against $hers. <br><br> <<if ($activeSlave.fetishKnown == 0)>> - Knowing little about her sexual peccadilloes, but confident that $he'll do her best to enjoy your lovemaking, you continue this shockingly intimate intercourse until $he climaxes. + Knowing little about $his sexual peccadilloes, but confident that $he'll do $his best to enjoy your lovemaking, you continue this shockingly intimate intercourse until $he climaxes. <<elseif ($activeSlave.fetish == "none")>> Knowing $him to be quite endearingly vanilla, you continue this shockingly intimate intercourse until $he climaxes, kissing her all the way through your soft missionary lovemaking. <<elseif $activeSlave.fetish == "buttslut">> - Knowing her tastes and wanting the intimacy of mutual pleasure, you slide a hand around behind and under her so you can tease $his ass. $He gives $his butt a little wiggle of thanks, and orgasms promptly. + Knowing $his tastes and wanting the intimacy of mutual pleasure, you slide a hand around behind and under her so you can tease $his ass. $He gives $his butt a little wiggle of thanks, and orgasms promptly. <<set $activeSlave.analCount++, $analTotal++>> <<elseif $activeSlave.fetish == "cumslut">> - Knowing her tastes and wanting the intimacy of mutual pleasure, you slide your tongue into $his mouth, making your kisses so frankly sexual and penetrative that you're practically making oral love at the same time as you do it missionary style. + Knowing $his tastes and wanting the intimacy of mutual pleasure, you slide your tongue into $his mouth, making your kisses so frankly sexual and penetrative that you're practically making oral love at the same time as you do it missionary style. <<elseif $activeSlave.fetish == "sadist">> - You know her tastes, but by the act of this intimate missionary lovemaking, you wordlessly command $him to join you for more conventional pleasures, if only for the moment. $He complies with pleasure, climaxing with surprising speed; perhaps $he appreciates the change. + You know $his tastes, but by the act of this intimate missionary lovemaking, you wordlessly command $him to join you for more conventional pleasures, if only for the moment. $He complies with pleasure, climaxing with surprising speed; perhaps $he appreciates the change. <<elseif $activeSlave.fetish == "masochist">> - Knowing her tastes and wanting the intimacy of mutual pleasure, you nip her lower lip in your teeth with each kiss, and rake your nails across $his flanks just hard enough to hurt a little. $He climaxes quickly to the mixed pain and missionary intimacy. + Knowing $his tastes and wanting the intimacy of mutual pleasure, you nip $his lower lip in your teeth with each kiss, and rake your nails across $his flanks just hard enough to hurt a little. $He climaxes quickly to the mixed pain and missionary intimacy. <<elseif $activeSlave.fetish == "dom">> - You know her tastes, but by the act of this intimate missionary lovemaking, you wordlessly command $him to join you for more equal pleasures, if only for the moment. $He complies with something like relief, climaxing with surprising speed; perhaps $he appreciates a turn on the bottom. + You know $his tastes, but by the act of this intimate missionary lovemaking, you wordlessly command $him to join you for more equal pleasures, if only for the moment. $He complies with something like relief, climaxing with surprising speed; perhaps $he appreciates a turn on the bottom. <<elseif $activeSlave.fetish == "submissive">> - Being on the bottom for some missionary lovemaking is very much to her tastes, and $he rises to the point of climax with almost indecent speed. You slow your pace to nothing more than a gentle pressure now and then, and keep her on the edge of orgasm for a long time. + Being on the bottom for some missionary lovemaking is very much to $his tastes, and $he rises to the point of climax with almost indecent speed. You slow your pace to nothing more than a gentle pressure now and then, and keep her on the edge of orgasm for a long time. <<elseif $activeSlave.fetish == "boobs">> Knowing $his tastes and wanting the intimacy of mutual pleasure, you make sure your nipples line up <<if $activeSlave.nipples == "fuckable">>and interlock <</if>>with $hers as best you can. You note the buck of pleasure this produces each time you get it perfectly right as you make love to $him. <<elseif $activeSlave.fetish == "pregnancy" && $activeSlave.pregKnown == 1>> Being on the bottom for some missionary lovemaking is very much to her tastes, even though $he is already pregnant. $He builds to orgasm slowly, reveling in the feeling of being your woman. <<elseif $activeSlave.fetish == "pregnancy">> - Being on the bottom for some missionary lovemaking is very much to her tastes, even though the encounter isn't particularly likely to get her pregnant. $He builds to orgasm slowly, reveling in the feeling of being your woman. + Being on the bottom for some missionary lovemaking is very much to $his tastes, even though the encounter isn't particularly likely to get her pregnant. $He builds to orgasm slowly, reveling in the feeling of being your woman. <</if>> As you made love to $him, the gentle motions, feminine sighs, and delicate aroma of pleasure woke the other girls in bed with you, and they began their own intimacy with each other. As you go back to sleep, you're surrounded with something very like Sapphic paradise. $activeSlave.slaveName nestles up to you once more, embracing you with @@.mediumaquamarine;trust born of love.@@ <<set $activeSlave.trust += 4, $activeSlave.vaginalCount++, $vaginalTotal++>> <</replace>> <</link>> -<br><<link "Fuck her">> +<br><<link "Fuck $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You feel your libido building, building, building within you, an endless cycle that mounts rapidly to an inevitable explosion. It comes, and you perform a catlike glide around until your head is at her feet. As you did, you infiltrated one of your legs between $hers from its convenient starting point. $He wakes suddenly to the feeling of being manhandled, and then comes fully awake to the shockingly intimate sensation of your pussies pressed together as closely as physically possible. + You feel your libido building, building, building within you, an endless cycle that mounts rapidly to an inevitable explosion. It comes, and you perform a catlike glide around until your head is at $his feet. As you did, you infiltrated one of your legs between $hers from its convenient starting point. $He wakes suddenly to the feeling of being manhandled, and then comes fully awake to the shockingly intimate sensation of your pussies pressed together as closely as physically possible. <br><br> - Holding her upper thighs with your hands to pull her against you, you grind into $him, fucking her about as comprehensively as it's possible for someone without a cock to fuck a woman. $He's most definitely up for it, and you see $his eyes fly wide in the gloom as the full weight of the pleasure crashes into $him. It's not exactly a position for lovemaking, since your faces are about as far apart as they can possibly be during sex, but kissing be damned, you're here to fuck. Naturally, this evolution wakes everyone else up too, and before long, there's a regular lesbian orgy going on. When it's over, $activeSlave.slaveName finds $himself returning exhaustedly to sleep, one of your arms curled + Holding $his upper thighs with your hands to pull her against you, you grind into $him, fucking her about as comprehensively as it's possible for someone without a cock to fuck a woman. $He's most definitely up for it, and you see $his eyes fly wide in the gloom as the full weight of the pleasure crashes into $him. It's not exactly a position for lovemaking, since your faces are about as far apart as they can possibly be during sex, but kissing be damned, you're here to fuck. Naturally, this evolution wakes everyone else up too, and before long, there's a regular lesbian orgy going on. When it's over, $activeSlave.slaveName finds $himself returning exhaustedly to sleep, one of your arms curled <<if $activeSlave.belly >= 5000>> - under her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> + under $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> <<else>> - around her middle + around $his middle <</if>> to cup $his pussy possessively. $He finds that @@.hotpink;$he doesn't mind.@@ $He's your girl. <<set $activeSlave.devotion += 4, $activeSlave.vaginalCount++, $vaginalTotal++>> @@ -16212,17 +16240,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> You give $him a reassuring swat across the rump and tell her you'd be happy to. You head toward the utility area with the milkers, and $he follows eagerly behind you, <<if $activeSlave.fetish == "boobs">> - very ready to have you touch her favorite part of $his body. + very ready to have you touch $his favorite part of $his body. <<else>> pleased you'd do this for $him and very ready to relieve the pressure in $his tits. <</if>> - To her surprise, you seat yourself on a stool and draw her onto your lap rather than sitting her at a milking machine. Reaching behind yourself, you give the $desc cow on your lap a broad bucket, and tell $him to hold it + To $his surprise, you seat yourself on a stool and draw her onto your lap rather than sitting her at a milking machine. Reaching behind yourself, you give the $desc cow on your lap a broad bucket, and tell $him to hold it <<if $activeSlave.belly >= 5000>> - under $his breasts as best $he can, given her <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> belly. + under $his breasts as best $he can, given $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>_belly<</if>> belly. <<else>> - on her lap. + on $his lap. <</if>> - Then you reach around $him and take her + Then you reach around $him and take $his <<if $activeSlave.boobs > 6000>> gargantuan <<elseif $activeSlave.boobs > 2000>> @@ -16232,11 +16260,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> udders in your hands. $He gasps as $he realizes exactly how you plan to do this, and adjusts the bucket so it's below both of $his nipples at once. <br><br> - $He instinctually expects the rhythmic tugging that the milkers usually produce, but what $he gets is a methodical massage of $his breasts, both at once. They're large enough to be more than a single handful, so you go bit by bit, ensuring that no part of her udders goes untouched. $His nipples start to gush milk without help after a few moments of this, and $he groans with relief and satisfaction as $he feels $his breasts begin to empty and enjoys the sensation of the massage. + $He instinctually expects the rhythmic tugging that the milkers usually produce, but what $he gets is a methodical massage of $his breasts, both at once. They're large enough to be more than a single handful, so you go bit by bit, ensuring that no part of $his udders goes untouched. $His nipples start to gush milk without help after a few moments of this, and $he groans with relief and satisfaction as $he feels $his breasts begin to empty and enjoys the sensation of the massage. <<if $activeSlave.fetish == "boobs">> $He orgasms strongly soon after the first jet of milk, producing an especially thick squirt. <</if>> - After you're satisfied, you move your hands to $his nipples and milk her like a cow, getting the last drops of milk out of her + After you're satisfied, you move your hands to $his nipples and milk her like a cow, getting the last drops of milk out of $him <<if $activeSlave.fetish == "boobs">> and producing a shuddering series of aftershocks. <<else>> @@ -16251,24 +16279,24 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> You ask her if $he really wants to be treated like a cow. $He nods, a bit hesitantly, sensing a certain danger but not really knowing what else to do. You lead $him to the utility area of the penthouse, where the milkers are, but stop her when $he starts for one. Instead, you <<if $activeSlave.belly >= 300000>> - pull her over her _belly belly with her udders hanging beneath her<<if $activeSlave.boobs > 5000>>, the twin masses of female flesh almost reaching the floor<</if>>. + pull her over $his _belly belly with $his udders hanging beneath her<<if $activeSlave.boobs > 5000>>, the twin masses of female flesh almost reaching the floor<</if>>. <<else>> - fetch a pair of low stools, make her kneel on one, and put $his hands on the other, so $he's on all fours with her udders hanging beneath her<<if $activeSlave.boobs > 5000>>, the twin masses of female flesh almost reaching the floor<</if>>. + fetch a pair of low stools, make her kneel on one, and put $his hands on the other, so $he's on all fours with $his udders hanging beneath her<<if $activeSlave.boobs > 5000>>, the twin masses of female flesh almost reaching the floor<</if>>. <</if>> <br><br> You swing a bucket under $his nipples and milk $him by hand, as though $he were a cow. This isn't exactly what $he had in mind, but the feeling of your hands on $his nipples, tugging the streams of milk out of $him and into the bucket beneath <<if $activeSlave.fetish == "boobs">>brings her very close to orgasm<<else>>eventually relaxes her<</if>>. Seeing this, you muse aloud, as though to yourself, that a little farmyard bestiality wouldn't hurt, since there's no one here but you and a dairy cow. Pawing the cow's behind possessively, you finger her aggressively before deciding on <<if canDoVaginal($activeSlave) && $PC.dick == 1>> - a little cow pussy. You walk around behind $him and fuck her hard enough to shake the drops of milk still clinging to her sore nipples down and into the bucket below. + a little cow pussy. You walk around behind $him and fuck her hard enough to shake the drops of milk still clinging to $his sore nipples down and into the bucket below. <<= VaginalVCheck()>> - When you're finished, you step away, leaving your cum to run out of $his cunt and down her thighs, + When you're finished, you step away, leaving your cum to run out of $his cunt and down $his thighs, <<elseif canDoAnal($activeSlave) && $PC.dick == 1>> - some cow ass. You walk around behind $him and buttfuck her hard enough to shake the drops of milk still clinging to her sore nipples down and into the bucket below. + some cow ass. You walk around behind $him and buttfuck her hard enough to shake the drops of milk still clinging to $his sore nipples down and into the bucket below. <<= AnalVCheck()>> - When you're finished, you step away, leaving your cum to drip out of her gaped asshole, + When you're finished, you step away, leaving your cum to drip out of $his gaped asshole, <<else>> a little cow tongue action. <<if $PC.vagina == 1>> - You stand up and grind your pussy against the cow's upturned mouth, humping her face hard enough to shake the drops of milk still clinging to her sore nipples down and into the bucket below.<<if $PC.dick == 1>> You pull away when you're about halfway there, only to shove your cock down her throat instead.<</if>> When you're finished, you step away, leaving her face thoroughly coated in girlcum<<if $PC.dick == 1>> and $his mouth full of your load<</if>>, + You stand up and grind your pussy against the cow's upturned mouth, humping $his face hard enough to shake the drops of milk still clinging to $his sore nipples down and into the bucket below.<<if $PC.dick == 1>> You pull away when you're about halfway there, only to shove your cock down $his throat instead.<</if>> When you're finished, you step away, leaving $his face thoroughly coated in girlcum<<if $PC.dick == 1>> and $his mouth full of your load<</if>>, <<else>> <</if>> <<set $activeSlave.oralCount++, $oralTotal++>> @@ -16318,28 +16346,28 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> relieve the slave of the tray, and <<if !canSee($activeSlave)>>audibly <</if>>widen your legs slightly<<if $PC.belly >= 5000>> as you slide forward<</if>> in your chair. $He <<if $activeSlave.belly >= 300000>> - gently leans onto her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly + gently leans onto $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly <<elseif $activeSlave.belly >= 5000>> - gently lowers her <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>swollen<</if>> body to its knees + gently lowers $his <<if $activeSlave.bellyPreg >= 3000>>pregnant<<else>>swollen<</if>> body to its knees <<else>> immediately drops to $his knees <</if>> and gets to work, <<if $activeSlave.oralSkill >= 100>> - using all of her mastery at giving oral pleasure. + using all of $his mastery at giving oral pleasure. <<elseif $activeSlave.oralSkill > 60>> - using all of her skills at in oral pleasure. + using all of $his skills at in oral pleasure. <<else>> - doing her best despite her mediocre oral skills. + doing $his best despite $his mediocre oral skills. <</if>> <<if $activeSlave.teeth == "pointy">> - You can feel the extreme care $he has to take to keep her sharklike teeth clear of you. + You can feel the extreme care $he has to take to keep $his sharklike teeth clear of you. <<elseif $activeSlave.lips > 40>> $His huge lips are soft and pillowy against you. <<elseif $activeSlave.teeth == "gapped">> You can feel the slight hesitations as $he takes care to not pinch you between $his front teeth. <<elseif ($activeSlave.teeth == "straightening braces") || ($activeSlave.teeth == "cosmetic braces")>> - You can feel the slight hesitations as $he takes care to keep her braces off you. + You can feel the slight hesitations as $he takes care to keep $his braces off you. <</if>> You take your time, <<if $PC.refreshmentType == 0>> @@ -16372,7 +16400,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<EventNameDelink $activeSlave>> <<replace "#result">> <<if $PC.refreshmentType != 2>> - You tell $him to hop up on the desk. $He obeys promptly, <<if $activeSlave.energy > 95>>already starting to pant<<else>><<if canSee($activeSlave)>>watching you closely<<elseif canHear($activeSlave)>>listening closely<<else>>waiting<</if>> for further instructions<</if>>. To $his complete lack of surprise, you tell $him to pull $his legs back and spread her hole<<if canDoVaginal($activeSlave)>>s<</if>>. As $he opens $himself for you, $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>senses<</if>> that you're doing something with + You tell $him to hop up on the desk. $He obeys promptly, <<if $activeSlave.energy > 95>>already starting to pant<<else>><<if canSee($activeSlave)>>watching you closely<<elseif canHear($activeSlave)>>listening closely<<else>>waiting<</if>> for further instructions<</if>>. To $his complete lack of surprise, you tell $him to pull $his legs back and spread $his hole<<if canDoVaginal($activeSlave)>>s<</if>>. As $he opens $himself for you, $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>senses<</if>> that you're doing something with <<if $PC.refreshmentType == 0>> the $PC.refreshment, <<elseif $PC.refreshmentType == 1>> @@ -16388,23 +16416,23 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $PC.refreshmentType == 6>> the tabs of $PC.refreshment, <</if>> - and <<if $activeSlave.trust > 50>>relaxes, trusting you completely<<else>>does her best to relax<</if>>. $He gasps when $he feels + and <<if $activeSlave.trust > 50>>relaxes, trusting you completely<<else>>does $his best to relax<</if>>. $He gasps when $he feels <<if $PC.refreshmentType == 0>> - the head of the lit $PC.refreshment, warm from your mouth, being gently inserted into her <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. You give her precise muscular instructions, which $he does her best to obey, and before long, $he's slowly smoking it using her fuckhole. $His body is very permeable there, and the effects of the it hit her very quickly. + the head of the lit $PC.refreshment, warm from your mouth, being gently inserted into $his <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. You give her precise muscular instructions, which $he does $his best to obey, and before long, $he's slowly smoking it using $his fuckhole. $His body is very permeable there, and the effects of the it hit her very quickly. <<elseif $PC.refreshmentType == 1>> the cool tip of a small enema bulb being gently inserted into $his ass. You press the $PC.refreshment into her slowly. You didn't give her much, but $his body is very permeable there, and the effects hit her very quickly. <<elseif $PC.refreshmentType == 3>> $PC.refreshment being gently inserted into $his ass. You didn't give her much, but $his body is very permeable there, and the effects hit her very quickly. <<elseif $PC.refreshmentType == 4>> - the tip of the syringe penetrate her <<if $activeSlave.dick > 0>>cock head<<elseif $activeSlave.vagina == -1>>tiny front hole<<else>>clit<</if>> and the sting of the contents being forced into her sex organ. You didn't give her much, but $his body is very sensitive there, and the effects hit her very quickly. + the tip of the syringe penetrate $his <<if $activeSlave.dick > 0>>cock head<<elseif $activeSlave.vagina == -1>>tiny front hole<<else>>clit<</if>> and the sting of the contents being forced into $his sex organ. You didn't give her much, but $his body is very sensitive there, and the effects hit her very quickly. <<elseif $PC.refreshmentType == 5>> your finger pushing a pill deep into her <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. You didn't give her much, but $his body is very sensitive there, and the effects hit her very quickly. <<elseif $PC.refreshmentType == 6>> - finger pushing a tab into her <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. You didn't give her much, but it quickly dissolves and $his body is very sensitive there, so the effects hit her very quickly. + finger pushing a tab into $his <<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. You didn't give her much, but it quickly dissolves and $his body is very sensitive there, so the effects hit her very quickly. <</if>> You go back to work, letting the slave loll around on your desk, enjoying the effects. You reflect that it's probably some kind of milestone in wealth that you're willing to throw the good stuff around like this. When $he's had time to reflect on the strange incident, $he @@.mediumaquamarine;resolves to trust you more in the future,@@ since it can be fun. <<else>> - You tell $him to hop up on the desk and face you. $He obeys promptly, <<if $activeSlave.energy > 95>>already starting to pant<<else>><<if canSee($activeSlave)>>watching you closely<<elseif canHear($activeSlave)>>listening closely<<else>>waiting<</if>> for further instructions<</if>>. To her surprise, you <<if $PC.boobs == 1>>unfasten your top, freeing your breasts, and <</if>>uncover your <<if $PC.dick == 1>>stiffening cock<<if $PC.vagina == 1>> and moistening pussy<</if>><<else>>moistening pussy<</if>>. Taking some $PC.refreshment in your fingers, you massage it onto your erect + You tell $him to hop up on the desk and face you. $He obeys promptly, <<if $activeSlave.energy > 95>>already starting to pant<<else>><<if canSee($activeSlave)>>watching you closely<<elseif canHear($activeSlave)>>listening closely<<else>>waiting<</if>> for further instructions<</if>>. To $his surprise, you <<if $PC.boobs == 1>>unfasten your top, freeing your breasts, and <</if>>uncover your <<if $PC.dick == 1>>stiffening cock<<if $PC.vagina == 1>> and moistening pussy<</if>><<else>>moistening pussy<</if>>. Taking some $PC.refreshment in your fingers, you massage it onto your erect <<if $PC.dick == 1 && $PC.boobs == 1>> nipples and dick <<elseif $PC.vagina == 1 && $PC.boobs == 1>> @@ -16416,13 +16444,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> making sure to cover yourself completely. You recline in your seat, beckoning to $activeSlave.slaveName to lick you clean. $He eagerly complies, eager to get a taste of $PC.refreshment after nothing but slave food for so long. <<if $activeSlave.oralSkill > 60>> - $He is extremely skilled with $his tongue; before long, not only are you completely cleaned, but you can barely feel your crotch from her masterful sucking. + $He is extremely skilled with $his tongue; before long, not only are you completely cleaned, but you can barely feel your crotch from $his masterful sucking. <<elseif $activeSlave.oralSkill > 30>> $He is quite skilled with $his tongue; before long, you are both cleaned off and enjoying some $PC.refreshment after the powerful orgasm $he coaxed out of you. <<elseif $activeSlave.oralSkill > 10>> $He has basic skill with $his tongue; before long, you are nearly cleaned of all the $PC.refreshment. With one final lick, $he takes the last taste of it and brings you to climax at the same time. <<else>> - $He has no idea how to make this pleasurable; $he is merely greedily lapping up the $PC.refreshment off your body. As $he nears finishing your crotch, you grab her head and hold $him to yourself until you are satisfied with her licking. + $He has no idea how to make this pleasurable; $he is merely greedily lapping up the $PC.refreshment off your body. As $he nears finishing your crotch, you grab $his head and hold $him to yourself until you are satisfied with $his licking. <</if>> You go back to work, letting the slave sits back on your desk, licking $his lips of the combined taste of you and $PC.refreshment. You reflect that it's probably some kind of milestone in wealth that you're willing to throw the good stuff around like this. When $he's had time to reflect on the strange incident, $he @@.mediumaquamarine;resolves to trust you more in the future,@@ since it can be fun and tasty. <<set $activeSlave.oralCount++, $oralTotal++>> @@ -16432,7 +16460,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</link>> <</if>> <<if $PC.refreshmentType == 0>> -<br><<link "Put your $PC.refreshment out on her">> +<br><<link "Put your $PC.refreshment out on $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> You select a $PC.refreshment and start smoking, ordering $him to stick around and get $his tits out. $He sees nothing too unusual about this, and obeys complaisantly, standing beside you with $his breasts bare. You reach over and play with her as you smoke, teasing her @@ -16447,9 +16475,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.lactation > 0>> motherly nipples. <<else>> - nipples and playing with her boobs. + nipples and playing with $his boobs. <</if>> - Deciding that you're done with the $PC.refreshment, you pull a long draw of smoke into your mouth, bringing the coal at its foot to a fine glow. Then you pull it out of your mouth and press it against the slave's defenseless $activeSlave.skin <<if $activeSlave.preg > 20>>pregnant belly<<else>>breast<</if>>. $He <<if $activeSlave.voice == 0>>makes the horrible rasping noise that her mute throat substitutes for screams of agony<<else>>shrieks with agony<</if>>, flinching away instinctively, and collapses to the ground<<if $activeSlave.fetish == "masochist">>, orgasming from the sudden rush of stimulation<</if>>. Writhing in pain, $he cherishes the burn on her <<if $activeSlave.preg > 20>>stomach<<else>>breast<</if>> with both hands, her sobbing only interrupted by ragged gasps for breath. You order $him to go get her burn looked at, and go back to your work. $He scrabbles toward the door, weeping,<<if $activeSlave.fetish == "masochist">> horrified at $himself for getting off to that, @@.hotpink;more convinced than ever that $he's a pain slut,@@ and yet<</if>> @@.gold;eager to get away.@@ + Deciding that you're done with the $PC.refreshment, you pull a long draw of smoke into your mouth, bringing the coal at its foot to a fine glow. Then you pull it out of your mouth and press it against the slave's defenseless $activeSlave.skin <<if $activeSlave.preg > 20>>pregnant belly<<else>>breast<</if>>. $He <<if $activeSlave.voice == 0>>makes the horrible rasping noise that $his mute throat substitutes for screams of agony<<else>>shrieks with agony<</if>>, flinching away instinctively, and collapses to the ground<<if $activeSlave.fetish == "masochist">>, orgasming from the sudden rush of stimulation<</if>>. Writhing in pain, $he cherishes the burn on $his <<if $activeSlave.preg > 20>>stomach<<else>>breast<</if>> with both hands, $his sobbing only interrupted by ragged gasps for breath. You order $him to go get $his burn looked at, and go back to your work. $He scrabbles toward the door, weeping,<<if $activeSlave.fetish == "masochist">> horrified at $himself for getting off to that, @@.hotpink;more convinced than ever that $he's a pain slut,@@ and yet<</if>> @@.gold;eager to get away.@@ <<set $activeSlave.trust -= 5>> <<if $activeSlave.fetish == "masochist">><<set $activeSlave.devotion += 4>><</if>> <</replace>> @@ -16461,19 +16489,19 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Use her as a cushion">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell her $he's looking very nice today. Surprised, $he manages <<if $activeSlave.devotion > 20>>to thank you prettily, wondering<<else>>to thank you hesitantly, worrying about<</if>> what comes next. You pick up a tablet, come around your desk, and fold yourself into a lotus position, just in front of $him and with your back to $him. Struck by this strange and trusting maneuver, $he keeps still, letting you get yourself situated. You slide backward until you are pressed against the mound of breasts behind you, and then relax into their soft, fleshy mass. Your back nestles naturally into $his cleavage, and the give of her huge mammaries conforms to you, allowing you to rest your elbows comfortably on each breast as though they were armrests. Feeling the weight of you against $his chest, $activeSlave.slaveName throws $his arms back, bracing $himself against the floor.<<if $activeSlave.belly >= 15000>> You can feel her full, taut, <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> just barely once you have sunk deep into $his cleavage.<</if>> You begin to tap away at the tablet, and $he realizes <<if $activeSlave.devotion > 20>>with pleased surprise<<else>>with mixed resentment and relief<</if>> that you intend to use her as a sort of human cushion for a while. From where $he's sitting, $he <<if canSee($activeSlave)>>can easily read over your shoulder, and you make no attempt to stop her<<else>>could read over your shoulder, if $he could see<</if>>; keeping secrets from your slaves is generally impractical, and <<if $activeSlave.devotion > 20>>this $desc is trustworthy<<else>>there's nothing $he could do with your secrets, even if $he were to try<</if>>. After an hour or so, you inspect $him and dismiss $him, and $he leaves @@.mediumaquamarine;trusting her bizarre place@@ in your world. + You tell her $he's looking very nice today. Surprised, $he manages <<if $activeSlave.devotion > 20>>to thank you prettily, wondering<<else>>to thank you hesitantly, worrying about<</if>> what comes next. You pick up a tablet, come around your desk, and fold yourself into a lotus position, just in front of $him and with your back to $him. Struck by this strange and trusting maneuver, $he keeps still, letting you get yourself situated. You slide backward until you are pressed against the mound of breasts behind you, and then relax into their soft, fleshy mass. Your back nestles naturally into $his cleavage, and the give of $his huge mammaries conforms to you, allowing you to rest your elbows comfortably on each breast as though they were armrests. Feeling the weight of you against $his chest, $activeSlave.slaveName throws $his arms back, bracing $himself against the floor.<<if $activeSlave.belly >= 15000>> You can feel $his full, taut, <<if $activeSlave.bellyPreg >= 3000>>pregnancy<<else>>belly<</if>> just barely once you have sunk deep into $his cleavage.<</if>> You begin to tap away at the tablet, and $he realizes <<if $activeSlave.devotion > 20>>with pleased surprise<<else>>with mixed resentment and relief<</if>> that you intend to use her as a sort of human cushion for a while. From where $he's sitting, $he <<if canSee($activeSlave)>>can easily read over your shoulder, and you make no attempt to stop her<<else>>could read over your shoulder, if $he could see<</if>>; keeping secrets from your slaves is generally impractical, and <<if $activeSlave.devotion > 20>>this $desc is trustworthy<<else>>there's nothing $he could do with your secrets, even if $he were to try<</if>>. After an hour or so, you inspect $him and dismiss $him, and $he leaves @@.mediumaquamarine;trusting $his bizarre place@@ in your world. <<set $activeSlave.trust += 4>> <</replace>> <</link>> <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>> -<br><<link "Enjoy her helplessness">> +<br><<link "Enjoy $his helplessness">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You give her no orders at all, since her helplessness makes her <<if $activeSlave.devotion > 20>>cooperation<<else>>consent<</if>> completely unnecessary for what you're planning. $He makes to turn as you come around behind $him, but $he can manage only a partial crane of her shoulders and neck to <<if canSee($activeSlave)>>see<<else>>figure out<</if>> what you're doing. Seizing her ankles, you haul $his legs out from under her boobs and body, and then push her forward, balancing $his body atop $his tits as though they were an exercise ball. <<if $activeSlave.devotion > 20>>$He giggles at this<<else>>$He struggles a little at the sudden discomfort<</if>>, and tries to steady $himself with $his hands, so you pull them around behind $him and pin $his arms to her $activeSlave.skin back with one of your hands. You <<if $PC.dick == 1>>shove your dick up<<else>>pull on a strap-on with your other hand and insert it into<</if>> her defenseless + You give her no orders at all, since $his helplessness makes $his <<if $activeSlave.devotion > 20>>cooperation<<else>>consent<</if>> completely unnecessary for what you're planning. $He makes to turn as you come around behind $him, but $he can manage only a partial crane of $his shoulders and neck to <<if canSee($activeSlave)>>see<<else>>figure out<</if>> what you're doing. Seizing $his ankles, you haul $his legs out from under $his boobs and body, and then push her forward, balancing $his body atop $his tits as though they were an exercise ball. <<if $activeSlave.devotion > 20>>$He giggles at this<<else>>$He struggles a little at the sudden discomfort<</if>>, and tries to steady $himself with $his hands, so you pull them around behind $him and pin $his arms to $his $activeSlave.skin back with one of your hands. You <<if $PC.dick == 1>>shove your dick up<<else>>pull on a strap-on with your other hand and insert it into<</if>> $his defenseless <<if canDoVaginal($activeSlave)>>pussy<<else>>asshole<</if>>. Then you fuck $him. <<= SimpleVCheck()>> <br><br> - You're physically fit to begin with, and between that and all the practice you get, you pride yourself on your <<if $PC.dick == 1>><<if $PC.vagina == 1>>master level futa skills<<else>>cocksmanship<</if>><<else>>power with a strap-on<</if>>. You can fuck hard, and $activeSlave.slaveName gets fucked hard. Having all of her weight on $his tits, and being sawed back and forth on top of those tits, is not comfortable. + You're physically fit to begin with, and between that and all the practice you get, you pride yourself on your <<if $PC.dick == 1>><<if $PC.vagina == 1>>master level futa skills<<else>>cocksmanship<</if>><<else>>power with a strap-on<</if>>. You can fuck hard, and $activeSlave.slaveName gets fucked hard. Having all of $his weight on $his tits, and being sawed back and forth on top of those tits, is not comfortable. <<if canDoVaginal($activeSlave)>> <<if $activeSlave.vagina < 3>> Worse, only the most veteran cunt could accept this kind of treatment without some pain, and $hers is far tighter than you're treating it. @@ -16483,13 +16511,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t Worse, only the most veteran asspussy could accept this kind of treatment without some pain, and $hers is far tighter than you're treating it. <</if>> <</if>> - <<if $activeSlave.voice == 0>>Since $he cannot groan, $he begins to gasp raggedly<<else>>$He begins to grunt and groan<</if>> with each forward thrust as you penetrate $him, pressing her forward across her cushion of boobs. $He tries to take some of the weight off with her feet, but after some vain scrabbling $he's obliged to @@.hotpink;give up and take it.@@ + <<if $activeSlave.voice == 0>>Since $he cannot groan, $he begins to gasp raggedly<<else>>$He begins to grunt and groan<</if>> with each forward thrust as you penetrate $him, pressing her forward across $his cushion of boobs. $He tries to take some of the weight off with $his feet, but after some vain scrabbling $he's obliged to @@.hotpink;give up and take it.@@ <br><br> - When you're finished, you withdraw and drop $him, letting her slump against her sore breasts. $He's too tired and overstimulated to do anything but stay limp, and her relaxed <<if canDoVaginal($activeSlave)>>pussy<<else>>butthole<</if>> <<if $PC.dick == 1>>releases drips of your cum to go sliding down her thighs<<else>>glistens attractively with lube<</if>>. You direct + When you're finished, you withdraw and drop $him, letting her slump against $his sore breasts. $He's too tired and overstimulated to do anything but stay limp, and $his relaxed <<if canDoVaginal($activeSlave)>>pussy<<else>>butthole<</if>> <<if $PC.dick == 1>>releases drips of your cum to go sliding down $his thighs<<else>>glistens attractively with lube<</if>>. You direct <<if $boobAccessibility == 1 || $pregAccessibility == 1>> the accessibility assistance functions of your office to <<else>> - the slaves who helped her in to return and + the slaves who helped $him in to return and <</if>> help her get cleaned up, and turn to your desk to get some work done as they struggle with the mountain of exhausted, fucked-out tits discarded in the middle of your office. <<set $activeSlave.devotion += 4>> @@ -16502,49 +16530,49 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Tell her $he's a good slave">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Without turning your head, you tell her $he's a very good slave. $He laughs happily<<if canTalk($activeSlave)>>, though of course this is silent<<else>> throatily<</if>>, her warm breath gusting against your ear. It took confidence for $him to come in here and tell her $he loved you, and $he @@.mediumaquamarine;trusts you more@@ for responding this way. $He plants a light kiss on your cheek and walks quickly out of your office, hurrying to go about her day's business, but careful to strut her stuff for you on her way out. + Without turning your head, you tell her $he's a very good slave. $He laughs happily<<if canTalk($activeSlave)>>, though of course this is silent<<else>> throatily<</if>>, $his warm breath gusting against your ear. It took confidence for $him to come in here and tell her $he loved you, and $he @@.mediumaquamarine;trusts you more@@ for responding this way. $He plants a light kiss on your cheek and walks quickly out of your office, hurrying to go about $his day's business, but careful to strut $his stuff for you on $his way out. <<if $activeSlave.butt < 3>> $His nice little butt moves cutely as $he goes. $His small buttocks leave <<if !canDoAnal($activeSlave)>> - her anal chastity visible from the rear as $he walks. + $his anal chastity visible from the rear as $he walks. <<elseif $activeSlave.analArea > 3>> - the huge area of puckered skin around her asspussy clearly visible from the rear, and $his asshole works lewdly with the motion. + the huge area of puckered skin around $his asspussy clearly visible from the rear, and $his asshole works lewdly with the motion. <<elseif $activeSlave.anus > 1>> $his asshole visible, the pucker of $his backdoor lewdly available. <<else>> - her tight anus visible from the rear as $he walks. + $his tight anus visible from the rear as $he walks. <</if>> <<elseif $activeSlave.butt < 6>> $His healthy butt bounces as $he goes. $His big buttocks mostly conceal <<if !canDoAnal($activeSlave)>> - her anal chastity, but there's the occasional tempting glimpse. + $his anal chastity, but there's the occasional tempting glimpse. <<elseif $activeSlave.analArea > 3>> - the huge area of puckered skin around her asspussy, but her butthole is so well used that it's obvious from the rear that $he takes it up the ass. A lot. + the huge area of puckered skin around $his asspussy, but $his butthole is so well used that it's obvious from the rear that $he takes it up the ass. A lot. <<elseif $activeSlave.anus > 1>> - $his backdoor, but there's the occasional cute glimpse of her experienced anus. + $his backdoor, but there's the occasional cute glimpse of $his experienced anus. <<else>> - what's between them, but there's the occasional cute glimpse of her tight rosebud. + what's between them, but there's the occasional cute glimpse of $his tight rosebud. <</if>> <<else>> $His gigantic ass jiggles as $he goes. $His enormous buttocks mostly stay together as $he moves, <<if !canDoAnal($activeSlave)>> - completely swallowing her anal chastity. + completely swallowing $his anal chastity. <<elseif $activeSlave.analArea > 3>> - almost concealing the huge area of puckered skin around her lewd asspussy. + almost concealing the huge area of puckered skin around $his lewd asspussy. <<elseif $activeSlave.anus > 1>> - completely concealing her welcoming backdoor. + completely concealing $his welcoming backdoor. <<else>> - completely concealing her tight asshole. + completely concealing $his tight asshole. <</if>> <</if>> - $He pauses for an instant in the doorway, turns over her shoulder to give you a sexy wink, and is gone. + $He pauses for an instant in the doorway, turns over $his shoulder to give you a sexy wink, and is gone. <<set $activeSlave.trust += 4>> <</replace>> <</link>> <br><<link "Tell her you love her too">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You turn towards $him and direct the full weight of your gaze into $his eyes. <<if canSee($activeSlave)>>$His eyelids flicker with the shock of the shared look<<else>>$His eyes may not be capable of sight, but $he can feel your gaze<</if>>, so close, but $he bears it, biting her lower lip. Then you kiss $him. The released tension is too much for $him, and $he moans, slumping against you a little as you kiss her like a lover. $He's so lost in it that when you break the kiss, $his mouth stays slightly open and pursues yours slightly, hungry for more. You place a finger against her moist lips, making her wait a moment, and tell $him that you love her too. $He makes <<if $activeSlave.voice == 0>>a quiet moaning sound, deep in her useless throat,<<else>>an almost animal sound, somewhere between a sob and a moan,<</if>> and as you withdraw your finger, $he kisses you back. $He knows $he has a job to do today, and it's waiting for $him, so when you give her no indication that you'd like $him to stay, $he withdraws, keeping her <<if canSee($activeSlave)>>eyes<<else>>face<</if>> on yours, doing her best to @@.hotpink;make love to you@@ with her gaze. + You turn towards $him and direct the full weight of your gaze into $his eyes. <<if canSee($activeSlave)>>$His eyelids flicker with the shock of the shared look<<else>>$His eyes may not be capable of sight, but $he can feel your gaze<</if>>, so close, but $he bears it, biting $his lower lip. Then you kiss $him. The released tension is too much for $him, and $he moans, slumping against you a little as you kiss her like a lover. $He's so lost in it that when you break the kiss, $his mouth stays slightly open and pursues yours slightly, hungry for more. You place a finger against $his moist lips, making her wait a moment, and tell $him that you love her too. $He makes <<if $activeSlave.voice == 0>>a quiet moaning sound, deep in $his useless throat,<<else>>an almost animal sound, somewhere between a sob and a moan,<</if>> and as you withdraw your finger, $he kisses you back. $He knows $he has a job to do today, and it's waiting for $him, so when you give her no indication that you'd like $him to stay, $he withdraws, keeping $his <<if canSee($activeSlave)>>eyes<<else>>face<</if>> on yours, doing $his best to @@.hotpink;make love to you@@ with $his gaze. <<set $activeSlave.devotion += 4>> <</replace>> <</link>> @@ -16554,7 +16582,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Hug $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You reach out to hug $him, but as soon as your hand touches her shoulder, $he writhes instinctively away. <<if canSee($activeSlave)>>$His eyes fly open, searching frantically for her assailant. Seeing that it's you, $he screams and scrabbles away even harder. After making it a few feet, $he collects her wits enough to bring $himself to a stop and stop screaming, though $he continues to sob, staring at you in terror<<else>>$He gropes frantically for her assailant, before making contact with you. $He screams and scrabbles away, only stopping when $he collides with the nearest solid object. <<if canHear($activeSlave)>>Only after several call outs that it is you does $he stop screaming, though $he continues to sob, listening to your every breath in terror<<else>>After screaming $himself horase, $he realizes that $his assault has abruptly ended, and gently feels around $his surroundings with a shaking hand to disover $himself back in $his room<</if>><</if>>. $He remains frozen in place as you slowly advance on $him and give $him a light embrace. $His tears gradually stop, but $he does not relax, <<if canSee($activeSlave)>>remaining dumbly stiff<<else>>continuing to quake in fear<</if>> within your arms. Eventually you let $him go, and $he crawls pathetically back under $his sheet, still weeping softly. It seems $he is @@.gold;more afraid of you@@ than ever, and if you thought that a simple hug could win $him over, you were wrong. + You reach out to hug $him, but as soon as your hand touches $his shoulder, $he writhes instinctively away. <<if canSee($activeSlave)>>$His eyes fly open, searching frantically for $his assailant. Seeing that it's you, $he screams and scrabbles away even harder. After making it a few feet, $he collects $his wits enough to bring $himself to a stop and stop screaming, though $he continues to sob, staring at you in terror<<else>>$He gropes frantically for $his assailant, before making contact with you. $He screams and scrabbles away, only stopping when $he collides with the nearest solid object. <<if canHear($activeSlave)>>Only after several call outs that it is you does $he stop screaming, though $he continues to sob, listening to your every breath in terror<<else>>After screaming $himself horase, $he realizes that $his assault has abruptly ended, and gently feels around $his surroundings with a shaking hand to disover $himself back in $his room<</if>><</if>>. $He remains frozen in place as you slowly advance on $him and give $him a light embrace. $His tears gradually stop, but $he does not relax, <<if canSee($activeSlave)>>remaining dumbly stiff<<else>>continuing to quake in fear<</if>> within your arms. Eventually you let $him go, and $he crawls pathetically back under $his sheet, still weeping softly. It seems $he is @@.gold;more afraid of you@@ than ever, and if you thought that a simple hug could win $him over, you were wrong. <<if canSee($activeSlave)>> <<set $activeSlave.trust -= 4>> <<elseif canHear($activeSlave)>> @@ -16568,7 +16596,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Rape $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You snatch the sheet off $him, shove her uppermost shoulder down so her face is smashed into the pillow, and bring your knees down between $his legs, spreading them to force $hers apart. You use the hand that isn't controlling $his torso to locate her + You snatch the sheet off $him, shove $his uppermost shoulder down so $his face is smashed into the pillow, and bring your knees down between $his legs, spreading them to force $hers apart. You use the hand that isn't controlling $his torso to locate $his <<if canDoVaginal($activeSlave)>> <<if $activeSlave.vagina > 2>> amusingly loose cunt @@ -16590,8 +16618,8 @@ You tell her kindly that you understand, and that $he'll be trained to address t poor virgin anus <</if>> <</if>> - in the dark as $he begins to @@.gold;struggle and scream.@@ $He comes fully awake when $he feels your rough fingers searching for and then finding her - <<if ($activeSlave.vagina >= 0) && canDoVaginal($activeSlave)>>vagina<<else>>crinkled hole<</if>>, and her noise increases to the point where it becomes annoying. You stuff her face into the pillow and take her mercilessly, using the pillow to cut off $his breath whenever $he struggles too much, until oncoming suffocation forces $him to go still and take it like a good little bitch. + in the dark as $he begins to @@.gold;struggle and scream.@@ $He comes fully awake when $he feels your rough fingers searching for and then finding $his + <<if ($activeSlave.vagina >= 0) && canDoVaginal($activeSlave)>>vagina<<else>>crinkled hole<</if>>, and $his noise increases to the point where it becomes annoying. You stuff $his face into the pillow and take her mercilessly, using the pillow to cut off $his breath whenever $he struggles too much, until oncoming suffocation forces $him to go still and take it like a good little bitch. <br><br> @@.mediumorchid;Sometimes dreams do come true.@@ <br><br> @@ -16606,7 +16634,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Talk her through it">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You put as much quiet authority into your voice as you can, and explain to $him that $he must eat her breakfast this way. You do not explain any of the actual reasons why you require slaves to eat from cocks, but couch your quiet explanation in terms of her life as a slave. You tell $him that eating breakfast out of a dick is something you've ordered $him to do. $He needs to do it. If $he does, $he'll be treated well; if $he does not, that will oblige you to punish $him. You tell $him that you would like $him to be a good slave, and that it would be disappointing if you had to punish $him. You put just a hint of steel into the last sentence, and $he stiffens a little at it. Hesitantly, $he scoots forward and bends down to take the tip of the big feeder dick in $his mouth. Sensing that it's being sucked, it gently presses into $his mouth, fucking her <<if $activeSlave.lips > 95>>big-lipped facepussy<<else>>face<</if>>. Its strokes get longer and faster, until $he's gulping down her breakfast as it's shot down her throat like a huge load. + You put as much quiet authority into your voice as you can, and explain to $him that $he must eat $his breakfast this way. You do not explain any of the actual reasons why you require slaves to eat from cocks, but couch your quiet explanation in terms of $his life as a slave. You tell $him that eating breakfast out of a dick is something you've ordered $him to do. $He needs to do it. If $he does, $he'll be treated well; if $he does not, that will oblige you to punish $him. You tell $him that you would like $him to be a good slave, and that it would be disappointing if you had to punish $him. You put just a hint of steel into the last sentence, and $he stiffens a little at it. Hesitantly, $he scoots forward and bends down to take the tip of the big feeder dick in $his mouth. Sensing that it's being sucked, it gently presses into $his mouth, fucking $his <<if $activeSlave.lips > 95>>big-lipped facepussy<<else>>face<</if>>. Its strokes get longer and faster, until $he's gulping down $his breakfast as it's shot down $his throat like a huge load. <<if ($suppository != 0) && ($activeSlave.drugs != "none")>>By this time, the kitchen is also dosing her with drugs by fucking $his butt with a phallus that ejaculates them for absorption. $He's being spitroasted by the kitchen.<</if>> Once $he's fully awake, $he's mostly @@.mediumaquamarine;relieved@@ that you let her get away with hesitation about obedience and took the time to talk her through it. <<set $activeSlave.trust += 4>> @@ -16615,7 +16643,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Punish her with a bigger feeder">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You give the kitchen an order by voice command. It's technical, so $he doesn't understand it, but the meaning becomes clear soon enough. The phallus dangling in her face is withdrawn, and $he's halfway through a shocked thank you when it's replaced by another, noticeably larger<<if !canSee($activeSlave)>>. $He doesn't notice its larger size until it bumps into $his cheek, causing $him to scoot back<</if>>. You tell her in deceptively mild tones that you'll keep increasing the size of her feeder until $he decides to suck it off like a good little $desc, or you run out of size options and are forced to strap her down and push them down her throat. At that point, $he might be able to breathe; then again, $he might not. $He begins to cry, her <<if $activeSlave.face > 95>>heartbreakingly beautiful<<elseif $activeSlave.face > 10>>pretty<<else>>homely<</if>> face clouding with anguish, but is so @@.gold;frightened@@ by the threat that $he doesn't let her tears distract her from scooting forward to suck off a huge dildo for her breakfast. + You give the kitchen an order by voice command. It's technical, so $he doesn't understand it, but the meaning becomes clear soon enough. The phallus dangling in $his face is withdrawn, and $he's halfway through a shocked thank you when it's replaced by another, noticeably larger<<if !canSee($activeSlave)>>. $He doesn't notice its larger size until it bumps into $his cheek, causing $him to scoot back<</if>>. You tell $him in deceptively mild tones that you'll keep increasing the size of $his feeder until $he decides to suck it off like a good little $desc, or you run out of size options and are forced to strap her down and push them down $his throat. At that point, $he might be able to breathe; then again, $he might not. $He begins to cry, $his <<if $activeSlave.face > 95>>heartbreakingly beautiful<<elseif $activeSlave.face > 10>>pretty<<else>>homely<</if>> face clouding with anguish, but is so @@.gold;frightened@@ by the threat that $he doesn't let $his tears distract her from scooting forward to suck off a huge dildo for $his breakfast. <<if ($suppository != 0) && ($activeSlave.drugs != "none")>>Once it senses $he's complying, the kitchen starts dosing her with drugs by fucking $his butt with a phallus that ejaculates them for absorption. Mercifully, $he doesn't try to refuse the anal fuckmachine, and avoids having $his asshole filled by a bigger phallus too.<</if>> $He keeps the threat in mind, and has a slightly sore throat to @@.hotpink;help her remember to obey without question.@@ <<set $activeSlave.trust -= 2, $activeSlave.devotion += 2>> @@ -16624,8 +16652,8 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Double penetrate $his mouth for insolence">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You step forward and caress the slave's throat, telling $him to suck like a good little $desc. You make no threat, but give $him the order in a voice of brass. $He knows what you can do to $him, and scrabbles forward to obey, @@.gold;terribly frightened.@@ $His fear is justified. You announce that $he's avoided serious punishment, but $he still needs correction for her hesitation and insolence. $He can't beg or even moan, since $he's being facefucked by the feeder dildo by now, but her $activeSlave.eyeColor eyes widen in terror. $He <<if canSee($activeSlave)>>can't watch you, since $he can't turn her head,<<else>>can't see what you are doing,<</if>> so $he has almost no time to prepare when you haul her head most of the way off the feeder and shove <<if $PC.dick == 1>>your own phallus<<else>>a strap-on<</if>> into $his mouth, too. $He gags instantly, almost vomiting, but forces $himself to relax as you begin to thrust into her throat, alternately with the feeder. The liquid food provides plenty of lubrication, and a lot of liquid for $him to gag on, and before long $he's a degraded, humiliating mess. $He often clamps $his eyes shut as $he desperately concentrates on breathing, squeezing the tears out to run down her $activeSlave.skin cheeks. - <<if ($suppository != 0) && ($activeSlave.drugs != "none")>>You leave the poor slave to take her drugs up the ass, since the kitchen administers those by phallus, too. Fortunately for $him, $he doesn't object to that.<</if>> + You step forward and caress the slave's throat, telling $him to suck like a good little $desc. You make no threat, but give $him the order in a voice of brass. $He knows what you can do to $him, and scrabbles forward to obey, @@.gold;terribly frightened.@@ $His fear is justified. You announce that $he's avoided serious punishment, but $he still needs correction for $his hesitation and insolence. $He can't beg or even moan, since $he's being facefucked by the feeder dildo by now, but $his $activeSlave.eyeColor eyes widen in terror. $He <<if canSee($activeSlave)>>can't watch you, since $he can't turn $his head,<<else>>can't see what you are doing,<</if>> so $he has almost no time to prepare when you haul $his head most of the way off the feeder and shove <<if $PC.dick == 1>>your own phallus<<else>>a strap-on<</if>> into $his mouth, too. $He gags instantly, almost vomiting, but forces $himself to relax as you begin to thrust into $his throat, alternately with the feeder. The liquid food provides plenty of lubrication, and a lot of liquid for $him to gag on, and before long $he's a degraded, humiliating mess. $He often clamps $his eyes shut as $he desperately concentrates on breathing, squeezing the tears out to run down $his $activeSlave.skin cheeks. + <<if ($suppository != 0) && ($activeSlave.drugs != "none")>>You leave the poor slave to take $his drugs up the ass, since the kitchen administers those by phallus, too. Fortunately for $him, $he doesn't object to that.<</if>> <<set $activeSlave.trust -= 4, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>> @@ -16633,8 +16661,8 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Forcefeed her with your own cock">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You step forward and pull her away from the feeder, telling $him that since $he doesn't like the cockfeeder $he can suck yours like a good little $desc. You make no threat, but order her in a steely voice to suck you off until $he's earned a meal of your cum. $He knows what you can do to $him, and hurries forward to obey. $He rushes to open your clothes and get to work, but pauses when <<if canSee($activeSlave)>>her $activeSlave.eyeColor eyes take in your massive testicles.<<else>>her groping hand feels your massive testicles.<</if>> Realizing just how big her meal will be, $he's obviously @@.gold;frightened.@@ You grab her head, breaking her out of her shocked stillness, and explain that you can't let her starve. If $he won't eat out of the feeder, you'll just have to feed her some other way. With that, you ram your cock forward and start fucking her <<if $activeSlave.face > 95>>heartbreakingly beautiful<<elseif $activeSlave.face > 10>>pretty<<else>>homely<</if>> face. After a few minutes of gagging oral, you start to approach your climax. Your thorough facefucking leaves her unable to beg or even moan, but $his eyes widen in terror when $he realizes you're about to cum. You don't give her any time to prepare, instead hilting yourself immediately, and letting her throat's desperate attempts to swallow bring you over the edge. You begin your long release of pent-up jizz, spraying deciliter after deciliter of cum down her throat and into $his stomach. By the time you've finished, you can tell $he's struggling for air and in pain from the massive quantity of thick fluid in $his stomach. You give $him a helpful hint before releasing $him, "if you take it all the way in your throat, you don't even have to taste what it's feeding you." You pull out of $his mouth and let her go. $He gasps for air and almost immediately vomits some of your cum all over $himself, turning her into a degraded, humiliating mess. $He lays on the floor and desperately concentrates on breathing, squeezing the tears out of $his eyes to run down her $activeSlave.skin cheeks. - <<if ($suppository != 0) && ($activeSlave.drugs != "none")>>You leave the poor slave to take her drugs up the ass, since the kitchen administers those by phallus, too. Fortunately for $him, $he doesn't object to that.<</if>> + You step forward and pull her away from the feeder, telling $him that since $he doesn't like the cockfeeder $he can suck yours like a good little $desc. You make no threat, but order $him in a steely voice to suck you off until $he's earned a meal of your cum. $He knows what you can do to $him, and hurries forward to obey. $He rushes to open your clothes and get to work, but pauses when <<if canSee($activeSlave)>>$his $activeSlave.eyeColor eyes take in your massive testicles.<<else>>$his groping hand feels your massive testicles.<</if>> Realizing just how big $his meal will be, $he's obviously @@.gold;frightened.@@ You grab $his head, breaking her out of $his shocked stillness, and explain that you can't let her starve. If $he won't eat out of the feeder, you'll just have to feed her some other way. With that, you ram your cock forward and start fucking $his <<if $activeSlave.face > 95>>heartbreakingly beautiful<<elseif $activeSlave.face > 10>>pretty<<else>>homely<</if>> face. After a few minutes of gagging oral, you start to approach your climax. Your thorough facefucking leaves her unable to beg or even moan, but $his eyes widen in terror when $he realizes you're about to cum. You don't give her any time to prepare, instead hilting yourself immediately, and letting $his throat's desperate attempts to swallow bring you over the edge. You begin your long release of pent-up jizz, spraying deciliter after deciliter of cum down $his throat and into $his stomach. By the time you've finished, you can tell $he's struggling for air and in pain from the massive quantity of thick fluid in $his stomach. You give $him a helpful hint before releasing $him, "if you take it all the way in your throat, you don't even have to taste what it's feeding you." You pull out of $his mouth and let her go. $He gasps for air and almost immediately vomits some of your cum all over $himself, turning her into a degraded, humiliating mess. $He lays on the floor and desperately concentrates on breathing, squeezing the tears out of $his eyes to run down $his $activeSlave.skin cheeks. + <<if ($suppository != 0) && ($activeSlave.drugs != "none")>>You leave the poor slave to take $his drugs up the ass, since the kitchen administers those by phallus, too. Fortunately for $him, $he doesn't object to that.<</if>> <<set $activeSlave.trust -= 2, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>> @@ -16645,13 +16673,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Talk her through it">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You put as much quiet authority into your voice as you can, and explain to $him that $he is required to take her drugs up $his ass. You do not explain any of the actual reasons why you require slaves to submit to daily machine anal, but couch your quiet explanation in terms of her life as a slave. You tell $him that taking a solid buttfuck from a machine first thing in the morning is something you've ordered $him to do. $He needs to do it. If $he does, $he'll be treated well; if $he does not, that will oblige you to punish $him. You tell $him that you would like $him to be a good slave, and that it would be disappointing if you had to punish $him. You put just a hint of steel into the last sentence, and $he stiffens a little at it. Hesitantly, $he + You put as much quiet authority into your voice as you can, and explain to $him that $he is required to take $his drugs up $his ass. You do not explain any of the actual reasons why you require slaves to submit to daily machine anal, but couch your quiet explanation in terms of $his life as a slave. You tell $him that taking a solid buttfuck from a machine first thing in the morning is something you've ordered $him to do. $He needs to do it. If $he does, $he'll be treated well; if $he does not, that will oblige you to punish $him. You tell $him that you would like $him to be a good slave, and that it would be disappointing if you had to punish $him. You put just a hint of steel into the last sentence, and $he stiffens a little at it. Hesitantly, $he <<if $activeSlave.belly >= 300000>> - shifts onto her _belly belly, uses $his hands to brace $himself against the impending pounding, and scoots towards the phallus. + shifts onto $his _belly belly, uses $his hands to brace $himself against the impending pounding, and scoots towards the phallus. <<else>> gets to $his knees, using $his hands to spread $his cheeks for the phallus. <</if>> - Sensing that it's being offered an anus, it gently pushes inside $his rectum. Its strokes get longer and faster, <<if $activeSlave.anus > 2>>until $he's groaning under the sodomy despite her loose ass<<elseif $activeSlave.anus > 1>>quickly gaping her big butthole and making her groan<<else>>making her gasp as it stretches her poor little asshole<</if>>. + Sensing that it's being offered an anus, it gently pushes inside $his rectum. Its strokes get longer and faster, <<if $activeSlave.anus > 2>>until $he's groaning under the sodomy despite $his loose ass<<elseif $activeSlave.anus > 1>>quickly gaping $his big butthole and making her groan<<else>>making her gasp as it stretches $his poor little asshole<</if>>. <<if ($suppository != 0) && ($activeSlave.drugs != "none")>>$He doesn't manage to groan for long, though, since the kitchen extends another phallus to feed $him $his breakfast. Before long, $he's being spitroasted by machines.<</if>> Once $he's fully awake, $he's mostly @@.mediumaquamarine;relieved@@ that you let her get away with hesitation about obedience and took the time to talk her through it. <<set $activeSlave.trust += 4>> @@ -16660,23 +16688,23 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Punish her with a bigger phallus">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You give the kitchen an order by voice command. It's technical, so $he doesn't understand it, but the meaning becomes clear soon enough. The phallus aiming meaningfully at the place where $he's supposed to kneel and offer up her butthole is withdrawn, and $he's halfway through a shocked thank you when it's replaced by another, noticeably larger. You tell her in deceptively mild tones that you'll keep increasing the size of her phallus until $he decides to get down and take it like a good little $desc, or you run out of size options and are forced to strap her down and apply two at once. At that point, $his ass might be able to take it; then again, it might not. $He begins to cry, but is so @@.gold;frightened@@ by the threat that $he doesn't let her tears distract her from a delectable scramble to + You give the kitchen an order by voice command. It's technical, so $he doesn't understand it, but the meaning becomes clear soon enough. The phallus aiming meaningfully at the place where $he's supposed to kneel and offer up $his butthole is withdrawn, and $he's halfway through a shocked thank you when it's replaced by another, noticeably larger. You tell $him in deceptively mild tones that you'll keep increasing the size of $his phallus until $he decides to get down and take it like a good little $desc, or you run out of size options and are forced to strap $him down and apply two at once. At that point, $his ass might be able to take it; then again, it might not. $He begins to cry, but is so @@.gold;frightened@@ by the threat that $he doesn't let $his tears distract $his from a delectable scramble to <<if $activeSlave.belly >= 300000>> - throw $himself onto her _belly belly + throw $himself onto $his _belly belly <<else>> get down on $his knees <</if>> - and <<if $activeSlave.butt > 6>>heave her huge buttocks apart<<elseif $activeSlave.butt > 3>>spread her broad buttocks<<else>>spread her cute ass wide<</if>>. - <<if ($suppository != 0) && ($activeSlave.drugs != "none")>>Once it's got its phallus sliding in and out of $his asshole, the kitchen gives her another, to suck off for her breakfast. Fortunately for $him, $he doesn't object, and only gets facefucked by the normal dildo.<</if>> - $He keeps the threat in mind, and has a slightly sore ass to @@.hotpink;help her remember to obey without question.@@ + and <<if $activeSlave.butt > 6>>heave $his huge buttocks apart<<elseif $activeSlave.butt > 3>>spread $his broad buttocks<<else>>spread $his cute ass wide<</if>>. + <<if ($suppository != 0) && ($activeSlave.drugs != "none")>>Once it's got its phallus sliding in and out of $his asshole, the kitchen gives $him another, to suck off for $his breakfast. Fortunately for $him, $he doesn't object, and only gets facefucked by the normal dildo.<</if>> + $He keeps the threat in mind, and has a slightly sore ass to @@.hotpink;help $him remember to obey without question.@@ <<set $activeSlave.trust -= 2, $activeSlave.devotion += 2>> <</replace>> <</link>> <br><<link "Double penetrate $his ass for insolence">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You step forward and take gentle hold of the slave's throat, telling $him to get down on $his knees like a good little $desc. You make no threat, but give $him the order in a voice of brass. $He knows what you can do to $him, and hurries to obey, @@.gold;terribly frightened.@@ $His fear is justified. You announce that $he's avoided serious punishment, but $he still needs correction for her hesitation and insolence. $He's concerned when $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>feels<</if>> you <<if $PC.dick == 1>>get your dick<<if $PC.vagina == 1>>and pussy<</if>> out<<else>>don a strap-on<</if>>, though $he's distracted by the rapidly accelerating buttfuck $he's getting from the machine. $He tries to offer you her throat, but her hopes are dashed when you walk around behind $him, swing a leg over the machine pistoning in and out of $his asshole, and command it to stop for a moment. Then you work <<if $PC.dick == 1>>yourself<<else>>your own dildo<</if>> up $his ass alongside the phallus that already fills it. The drugs are delivered with lubricant, and you do fit, but only after a nice long session of sobbing, spasming, and finally crying resignation. Then you order the machine to go back to what it was doing, and the resignation vanishes, replaced with anal pain as $activeSlave.slaveName takes double penetration up her <<if $activeSlave.anus > 2>>gaping anus<<elseif $activeSlave.anus == 2>>big butthole<<else>>poor, abused little butt<</if>>. - <<if ($suppository != 0) && ($activeSlave.drugs != "none")>>When you grow tired of the whining, you order the kitchen to give the bitch breakfast. It extends a feeding phallus and fills her throat, muffling the noise somewhat.<</if>> + You step forward and take gentle hold of the slave's throat, telling $him to get down on $his knees like a good little $desc. You make no threat, but give $him the order in a voice of brass. $He knows what you can do to $him, and hurries to obey, @@.gold;terribly frightened.@@ $His fear is justified. You announce that $he's avoided serious punishment, but $he still needs correction for $his hesitation and insolence. $He's concerned when $he <<if canSee($activeSlave)>>sees<<elseif canHear($activeSlave)>>hears<<else>>feels<</if>> you <<if $PC.dick == 1>>get your dick<<if $PC.vagina == 1>>and pussy<</if>> out<<else>>don a strap-on<</if>>, though $he's distracted by the rapidly accelerating buttfuck $he's getting from the machine. $He tries to offer you $his throat, but $his hopes are dashed when you walk around behind $him, swing a leg over the machine pistoning in and out of $his asshole, and command it to stop for a moment. Then you work <<if $PC.dick == 1>>yourself<<else>>your own dildo<</if>> up $his ass alongside the phallus that already fills it. The drugs are delivered with lubricant, and you do fit, but only after a nice long session of sobbing, spasming, and finally crying resignation. Then you order the machine to go back to what it was doing, and the resignation vanishes, replaced with anal pain as $activeSlave.slaveName takes double penetration up $his <<if $activeSlave.anus > 2>>gaping anus<<elseif $activeSlave.anus == 2>>big butthole<<else>>poor, abused little butt<</if>>. + <<if ($suppository != 0) && ($activeSlave.drugs != "none")>>When you grow tired of the whining, you order the kitchen to give the bitch breakfast. It extends a feeding phallus and fills $his throat, muffling the noise somewhat.<</if>> <<set $activeSlave.trust -= 4>> <<= AnalVCheck()>> <</replace>> @@ -16687,7 +16715,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Carry $him to where $he needs to go">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You scoop her up into a bridal carry. $He <<if $activeSlave.voice == 0>>gasps, since $he can't squeal<<else>>squeals cutely<</if>>, holding on for dear life, and keeps her face nestled against her <<= WrittenMaster()>>. + You scoop $him up into a bridal carry. $He <<if $activeSlave.voice == 0>>gasps, since $he can't squeal<<else>>squeals cutely<</if>>, holding on for dear life, and keeps $his face nestled against $his <<= WrittenMaster()>>. <<set _carried = 1>> <<if $activeSlave.belly >= 300000>> <<if $activeSlave.bellyPreg > 3000>> @@ -16695,35 +16723,35 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $His _belly belly <</if>> - makes holding her extremely difficult, not including just how much it weighs, so you're forced to quickly return $him to her feet. + makes holding $him extremely difficult, not including just how much it weighs, so you're forced to quickly return $him to $his feet. <<set _carried = 0>> <<elseif $activeSlave.boobs > 40000>> - $His expansive tits not only weigh her down, but also keep you from holding her up for long. + $His expansive tits not only weigh $him down, but also keep you from holding $him up for long. <<set _carried = 0>> <<elseif $activeSlave.weight > 160>> $He's certainly an armful and a little too fat for you to hold for long. <<set _carried = 0>> <<elseif $activeSlave.balls > 200>> - $His tremendous balls serve as an imposing anchor, quickly forcing you to lower her back to the ground. + $His tremendous balls serve as an imposing anchor, quickly forcing you to lower $him back to the ground. <<set _carried = 0>> <<elseif $activeSlave.dick > 30>> <<if $arcologies[0].FSPhysicalIdealist != "unset">> - $His hanging dick adds tremendously to her weight and touches the floor, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry her some distance. + $His hanging dick adds tremendously to $his weight and touches the floor, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance. <<else>> - $His hanging dick adds tremendously to her weight and touches the floor, preventing you from really carrying her very far. + $His hanging dick adds tremendously to $his weight and touches the floor, preventing you from really carrying $him very far. <<set _carried = 0>> <</if>> <<elseif $activeSlave.belly >= 100000>> <<if $activeSlave.bellyPreg > 3000>> <<if $arcologies[0].FSPhysicalIdealist != "unset">> - $His pregnancy is truly gigantic, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry her some distance. + $His pregnancy is truly gigantic, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance. <<else>> $His pregnancy is truly gigantic and a little too big for you to safely carry without the risk of dropping, quickly forcing you to lower $him. <<set _carried = 0>> <</if>> <<else>> <<if $arcologies[0].FSPhysicalIdealist != "unset">> - $His _belly belly is truly gigantic, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry her some distance. + $His _belly belly is truly gigantic, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance. <<else>> $His _belly belly is truly an armful and a little to heavy for you to carry, quickly forcing you to lower $him. <<set _carried = 0>> @@ -16732,15 +16760,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.boobs > 25000>> $His enormous boobs <<if $arcologies[0].FSPhysicalIdealist != "unset">> - add tremendously to her weight and are awkward to manage, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry her some distance. + add tremendously to $his weight and are awkward to manage, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance. <<else>> - add tremendously to her weight and are awkward to manage, quickly forcing you to lower $him. + add tremendously to $his weight and are awkward to manage, quickly forcing you to lower $him. <<set _carried = 0>> <</if>> <<elseif $activeSlave.weight > 130>> $He's a <<if $arcologies[0].FSPhysicalIdealist != "unset">> - fatty, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry her some distance. + fatty, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance. <<else>> fatty and a little too big and heavy for you to hold for long. <<set _carried = 0>> @@ -16748,35 +16776,35 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.balls > 100>> $His enormous balls <<if $arcologies[0].FSPhysicalIdealist != "unset">> - add tremendously to her weight and dangle ponderously, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry her some distance, even though you have to step awkwardly to avoid kneeing her sensitive sack. + add tremendously to $his weight and dangle ponderously, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance, even though you have to step awkwardly to avoid kneeing $his sensitive sack. <<else>> - add tremendously to her weight and dangle ponderously, quickly forcing you to lower her or risk accidentally kneeing the sensitive sack. + add tremendously to $his weight and dangle ponderously, quickly forcing you to lower $him or risk accidentally kneeing the sensitive sack. <<set _carried = 0>> <</if>> <<elseif $activeSlave.dick > 20>> - $His dangling cock adds tremendously to her weight and is awkward to walk with, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry her some distance. + $His dangling cock adds tremendously to $his weight and is awkward to walk with, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance. <<elseif $activeSlave.butt > 18>> $His expansive ass <<if $arcologies[0].FSPhysicalIdealist != "unset">> - adds tremendously to her weight and is awkward to handle, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry her some distance. + adds tremendously to $his weight and is awkward to handle, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance. <<else>> - adds tremendously to her weight and is awkward to handle, quickly forcing you to lower $him. + adds tremendously to $his weight and is awkward to handle, quickly forcing you to lower $him. <<set _carried = 0>> <</if>> <<elseif $activeSlave.boobs > 8000>> - $His boobs add tremendously to her weight, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry her some distance. + $His boobs add tremendously to $his weight, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance. <<elseif $activeSlave.weight > 95>> - $He's got some extra weight on $him, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry her some distance. + $He's got some extra weight on $him, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance. <<elseif $activeSlave.height > 180>> - $He's a big $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry her some distance. + $He's a big $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance. <<elseif $activeSlave.weight > 30>> - $He's a chubby $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry her some distance. + $He's a chubby $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance. <<elseif $activeSlave.bellyPreg >= 10000>> - $He's heavily pregnant, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry her some distance. + $He's heavily pregnant, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance. <<elseif $activeSlave.bellyImplant >= 10000>> - $His belly is greatly laden with inert filler, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry her some distance. + $His belly is greatly laden with inert filler, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance. <<elseif $activeSlave.bellyFluid >= 10000>> - $His belly is greatly laden with <<print $activeSlave.inflationType>>, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry her some distance. + $His belly is greatly laden with <<print $activeSlave.inflationType>>, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him some distance. <<elseif $activeSlave.height > 160>> $He's no little $girl, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to carry $him. <<elseif $activeSlave.weight > 10>> @@ -16785,19 +16813,19 @@ You tell her kindly that you understand, and that $he'll be trained to address t You could carry the little slave like this as long as you like. <</if>> <<if _carried == 1>> - Knowing that $he'll need to get dressed before the next part of her day, you carry $him to <<if $activeSlave.livingRules == "luxurious">>her room<<else>>the part of the common area with where clothes are kept<</if>>. $He remains perfectly limp, letting $himself be carried without a word. When you set her on her feet, + Knowing that $he'll need to get dressed before the next part of $his day, you carry $him to <<if $activeSlave.livingRules == "luxurious">>$his room<<else>>the part of the common area with where clothes are kept<</if>>. $He remains perfectly limp, letting $himself be carried without a word. When you set $him on $his feet, <<else>> - Knowing that $he'll need to get dressed before the next part of her day, you help $him to <<if $activeSlave.livingRules == "luxurious">>her room<<else>>the part of the common area with where clothes are kept<</if>>. $He lets you do most of the work, letting $himself be guided without a word. When you set her on her bed, + Knowing that $he'll need to get dressed before the next part of $his day, you help $him to <<if $activeSlave.livingRules == "luxurious">>$his room<<else>>the part of the common area with where clothes are kept<</if>>. $He lets you do most of the work, letting $himself be guided without a word. When you set $him on $his bed, <</if>> - there's a little unaccountable moisture in her $activeSlave.eyeColor eyes @@.mediumaquamarine;for some reason.@@ $He gives you a kiss and thanks you prettily. + there's a little unaccountable moisture in $his $activeSlave.eyeColor eyes @@.mediumaquamarine;for some reason.@@ $He gives you a kiss and thanks you prettily. <<set $activeSlave.trust += 4>> <</replace>> <</link>> <<if (canDoAnal($activeSlave) || canDoVaginal($activeSlave)) && $activeSlave.belly < 15000>> -<br><<link "Scoop her up and fuck her">> +<br><<link "Scoop $him up and fuck $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You squat down, and $he plants her feet, expecting to be given a swat on the bottom and sent on her way. Instead, you run your hands down her + You squat down, and $he plants $his feet, expecting to be given a swat on the bottom and sent on $his way. Instead, you run your hands down $his <<if $activeSlave.weight > 130>> well-padded <<elseif $activeSlave.weight > 95>> @@ -16813,51 +16841,51 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> soft <</if>> - thighs, producing a shiver from the $desc, and lift her up against your chest, pinning her there with your hands supporting the backs of $his knees. Giggling<<if $activeSlave.voice == 0>> mutely<</if>>, $he finds $himself held in a fetal position with her back pressed against your <<if $PC.boobs == 1>>tits<<else>>chest<</if>>. + thighs, producing a shiver from the $desc, and lift $him up against your chest, pinning $him there with your hands supporting the backs of $his knees. Giggling<<if $activeSlave.voice == 0>> mutely<</if>>, $he finds $himself held in a fetal position with $his back pressed against your <<if $PC.boobs == 1>>tits<<else>>chest<</if>>. <<if $activeSlave.boobs > 40000>> - $His expansive tits not only weigh her down, but also force you to push her against the shower wall for added support. + $His expansive tits not only weigh $him down, but also force you to push $him against the shower wall for added support. <<elseif $activeSlave.weight > 160>> - $He's certainly an armful and a little too fat, forcing you to push her against the shower wall for added support. + $He's certainly an armful and a little too fat, forcing you to push $him against the shower wall for added support. <<elseif $activeSlave.balls > 200>> - $His tremendous balls serve as an imposing anchor, quickly forcing you to push her against the shower wall for added support. + $His tremendous balls serve as an imposing anchor, quickly forcing you to push $him against the shower wall for added support. <<elseif $activeSlave.dick > 30>> <<if $arcologies[0].FSPhysicalIdealist != "unset">> - $His hanging dick adds tremendously to her weight and touches the floor, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him. + $His hanging dick adds tremendously to $his weight and touches the floor, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him. <<else>> - $His hanging dick adds tremendously to her weight and touches the floor, quickly forcing you to push her against the shower wall for added support. + $His hanging dick adds tremendously to $his weight and touches the floor, quickly forcing you to push $him against the shower wall for added support. <</if>> <<elseif $activeSlave.boobs > 25000>> $His enormous boobs <<if $arcologies[0].FSPhysicalIdealist != "unset">> - add tremendously to her weight and are awkward to manage, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him. + add tremendously to $his weight and are awkward to manage, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him. <<else>> - add tremendously to her weight and are awkward to manage, quickly forcing you to push her against the shower wall for added support. + add tremendously to $his weight and are awkward to manage, quickly forcing you to push $him against the shower wall for added support. <</if>> <<elseif $activeSlave.weight > 130>> $He's a <<if $arcologies[0].FSPhysicalIdealist != "unset">> fatty, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him. <<else>> - fatty and a little too big and heavy, quickly forcing you to push her against the shower wall with a wet slap. + fatty and a little too big and heavy, quickly forcing you to push $him against the shower wall with a wet slap. <</if>> <<elseif $activeSlave.balls > 100>> $His enormous balls <<if $arcologies[0].FSPhysicalIdealist != "unset">> - add tremendously to her weight and dangle ponderously, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him. + add tremendously to $his weight and dangle ponderously, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him. <<else>> - add tremendously to her weight and dangle ponderously, quickly forcing you to push her against the shower wall for added support. + add tremendously to $his weight and dangle ponderously, quickly forcing you to push $him against the shower wall for added support. <</if>> <<elseif $activeSlave.dick > 20>> - $His dangling cock adds tremendously to her weight and dangles heavily, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him. + $His dangling cock adds tremendously to $his weight and dangles heavily, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him. <<elseif $activeSlave.butt > 18>> $His expansive ass <<if $arcologies[0].FSPhysicalIdealist != "unset">> - adds tremendously to her weight and is awkward to handle, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him. + adds tremendously to $his weight and is awkward to handle, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him. <<else>> - adds tremendously to her weight and is awkward to handle, quickly forcing you to push her against the shower wall for added support. + adds tremendously to $his weight and is awkward to handle, quickly forcing you to push $him against the shower wall for added support. <</if>> <<elseif $activeSlave.boobs > 8000>> - $His boobs add tremendously to her weight, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him. + $His boobs add tremendously to $his weight, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him. <<elseif $activeSlave.weight > 95>> $He's got some extra weight on $him, but you're <<if $PC.title == 1>>strong<<else>>fit<</if>> enough to lift $him. <<elseif $activeSlave.height > 180>> @@ -16945,7 +16973,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.trust += 4, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>> -<br><<link "Dance along with her">> +<br><<link "Dance along with $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> $He doesn't <<if canSee($activeSlave)>>see<<else>>notice<</if>> you advance on $him; $he's facing away from you, and in any case, $he's lost in her own little world. At the same moment, however, $he begins to hear the track $he's humming, in perfect synchrony with the way $he's humming it, and senses a presence at her side. You timed it perfectly, directing the sound system here to play the right track, match it to $him, and fade it in as you approached and began to dance beside $him. @@ -16962,7 +16990,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <</if>> <br><br> - There's a momentary flaw in her rhythm, a catch in $his breath as $he realizes what you're doing, but $he gets right back into it, displaying her pleasure with nothing more than a ghost of a smile and a <<if canSee($activeSlave)>>widening of $his eyes as $he looks you up and down<<else>>slight perk of $his ears as $he tracks your motion<</if>>. $He doesn't shove $himself against you; that would be coarse. Instead $he dances alluringly, just out of your grasp. Taking the dominant role, you encircle her in your arms and draw her in close, her heat perceptible against your skin before the very first graze of her $activeSlave.skin body against yours. $He continues to dance gorgeously as $he helps you out of your clothes. + There's a momentary flaw in her rhythm, a catch in $his breath as $he realizes what you're doing, but $he gets right back into it, displaying her pleasure with nothing more than a ghost of a smile and a <<if canSee($activeSlave)>>widening of $his eyes as $he looks you up and down<<else>>slight perk of $his ears as $he tracks your motion<</if>>. $He doesn't shove $himself against you; that would be coarse. Instead $he dances alluringly, just out of your grasp. Taking the dominant role, you encircle $him in your arms and draw $him in close, her heat perceptible against your skin before the very first graze of $his $activeSlave.skin body against yours. $He continues to dance gorgeously as $he helps you out of your clothes. <br><br> When you're nude, $he turns her back to you and starts to grind, letting you feel her <<if $activeSlave.weight > 160>> @@ -16984,7 +17012,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> soft <</if>> - body all up and down your front. Feeling your <<if $PC.dick == 0>>building heat, $he begins to incorporate gentle caresses of your womanhood<<else>>erection brushing against $him, $he begins to corral it between her buttocks and thighs<</if>>, and you return the favor by teasing $his nipples<<if canDoVaginal($activeSlave)>>, pussylips, clit,<</if>> and even $his ass. You orgasm one after the other, and as the music fades, $he @@.hotpink;throws $his arms around you.@@ + body all up and down your front. Feeling your <<if $PC.dick == 0>>building heat, $he begins to incorporate gentle caresses of your womanhood<<else>>erection brushing against $him, $he begins to corral it between $his buttocks and thighs<</if>>, and you return the favor by teasing $his nipples<<if canDoVaginal($activeSlave)>>, pussylips, clit,<</if>> and even $his ass. You orgasm one after the other, and as the music fades, $he @@.hotpink;throws $his arms around you.@@ <<set $activeSlave.devotion += 4, $activeSlave.oralCount++, $oralTotal++>> <</replace>> <</link>> @@ -17032,7 +17060,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</replace>> <</link>> <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>> -<br><<link "Fuck her before you help her">> +<br><<link "Fuck her before you help $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> You decide to have some fun with the temporarily helpless slave. You @@ -17158,11 +17186,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> You inform your personal assistant that you aren't planning to take any action. If you took notice every time a citizen offered a slave on public duty any insult, you'd never be doing anything else. The only interesting part of the interaction was the possible value of the pretty girls, but enslaving them would likely have been difficult and expensive, given their families' probable wealth and influence. As for $activeSlave.slaveName, $he's not deeply affected. <<if $activeSlave.energy > 95>> - $He's so horny that petty insults can't compete for her attention with her constant, oppressive need to get off. + $He's so horny that petty insults can't compete for $his attention with $his constant, oppressive need to get off. <<elseif $activeSlave.trust > 95 && $activeSlave.devotion >= -20>> $He's confident that $he's a good slave, no matter what some visitors from outside the arcology say. <<elseif $activeSlave.trust > 95>> - It just gives her more of a reason to work against you. + It just gives $him more of a reason to work against you. <<elseif $activeSlave.devotion > 20>> $He tells $himself that they were wrong, and carries on. <<else>> @@ -17173,12 +17201,12 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Enslave them all">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You seize a tablet and hurry out of your office, working furiously and using every feature of $assistantName to the utmost. These bitches have offended you, and you quickly frame the structure of an appropriate revenge. By the time you get to where $activeSlave.slaveName is still being heckled by spoiled, drunken harpies, everyone else present in that arcology hall has mysteriously received urgent messages and gone elsewhere. $activeSlave.slaveName <<if canSee($activeSlave)>>sees you approach, and stares at you<<else>>recognizes your dominant footsteps approaching, and turns to face you<</if>>, her sudden intense look alerting your vile little guests to your presence. One of them attempts to frame an insult for the interloper, but one of her friends pokes her in the side and whispers something in your ear and $he goes silent, staring at you with wide eyes. - <<if $PC.title != 1>>$He then winces, visibly realizing that you're likely aware that $he called $activeSlave.slaveName's owner her Master. Somehow, the mistake seems important to her now that you're standing here, effortlessly dominating the space for all your femininity.<</if>> + You seize a tablet and hurry out of your office, working furiously and using every feature of $assistantName to the utmost. These bitches have offended you, and you quickly frame the structure of an appropriate revenge. By the time you get to where $activeSlave.slaveName is still being heckled by spoiled, drunken harpies, everyone else present in that arcology hall has mysteriously received urgent messages and gone elsewhere. $activeSlave.slaveName <<if canSee($activeSlave)>>sees you approach, and stares at you<<else>>recognizes your dominant footsteps approaching, and turns to face you<</if>>, $his sudden intense look alerting your vile little guests to your presence. One of them attempts to frame an insult for the interloper, but one of her friends pokes her in the side and whispers something in her ear, and she goes silent, staring at you with wide eyes. + <<if $PC.title != 1>>She then winces, visibly realizing that you're likely aware that she called $activeSlave.slaveName's owner $his Master. Somehow, the mistake seems important to her now that you're standing here, effortlessly dominating the space for all your femininity.<</if>> <br><br> You hold the tablet out to them wordlessly. It's displaying security footage of the three of them, boarding a public VTOL transport for another arcology nearby. The prominent timestamp is thirty minutes in the future. The scene changes, showing them partying in one of that arcology's nightclubs. You clear your throat, dragging their attention away from the counterfeited footage, and describe in detail the other evidence - tickets, identification checks, biometrics - that will prove they left your arcology and visited two others before regrettably disappearing. One of them tries, with utter predictability, to threaten you with her father, but you tell her bluntly that if he does make the effort, he'll be looking in the wrong place. <br><br> - "We shouldn't have come here," one of them says dully. $He's wrong in that they would have had no trouble at all if they hadn't offended you, but right in that here, they put themselves entirely under your power. Tourists would never visit if this were widely known, but fortunately, you've been successful at concealing this. They begin to cry, and then to beg, and then the drones bag them and take them away. + "We shouldn't have come here," one of them says dully. She's wrong in that they would have had no trouble at all if they hadn't offended you, but right in that here, they put themselves entirely under your power. Tourists would never visit if this were widely known, but fortunately, you've been successful at concealing this. They begin to cry, and then to beg, and then the drones bag them and take them away. <<set $cash -= 25000>> <<for _ress = 0; _ress < 3; _ress++>> <<set $oneTimeDisableDisability = 1>> @@ -17191,7 +17219,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> <<set $fixedNationality = "American">> <<include "Generate New Slave">> - <<set _origin = "You enslaved her for abusing " + $eventSlave.slaveName + " while $he was serving the public.">> + <<set _origin = "You enslaved her for abusing " + $eventSlave.slaveName + " while she was serving the public.">> <<set $activeSlave.origin = _origin>> <<set $activeSlave.career = "a student">> <<set $activeSlave.markings = "none", $activeSlave.weight = -20>> @@ -17213,42 +17241,42 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.health = random(30,50)>> <<set $activeSlave.attrXY = random(60,90)>> <<set $activeSlave.attrXX = random(10,20)>> - <<set $activeSlave.behavioralFlaw = either("bitchy", "arrogant")>> + <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy")>> <<run newSlave($activeSlave)>> /* skip New Slave Intro */ <</for>> <br><br><span id="result2"> <<link "Let your public servant take revenge on them">> <<replace "#result2">> - Although they don't know it, your trio of new captures escape the usual choice of introductions to life among your sex slaves. In order to ensure that their fate has been properly obscured, you keep them in confinement for a while. After that, the usual beautification your slaves undergo will eliminate any possibility of their being recognized, even on public duty. That doesn't mean they have it easy, though. You delegate $eventSlave.slaveName to break them in, letting her visit each of them whenever $he wants and treat them however $he wants. + Although they don't know it, your trio of new captures escape the usual choice of introductions to life among your sex slaves. In order to ensure that their fate has been properly obscured, you keep them in confinement for a while. After that, the usual beautification your slaves undergo will eliminate any possibility of their being recognized, even on public duty. That doesn't mean they have it easy, though. You delegate $eventSlave.slaveName to break them in, letting $him visit each of them whenever $he wants and treat them however $he wants. <<if ($eventSlave.energy > 95) || ($eventSlave.devotion > 50)>> $He approaches the task <<if $eventSlave.energy > 95>> - eagerly, seeing it as an opportunity to sate her urges + eagerly, seeing it as an opportunity to sate $his urges <<else>> - dutifully, seeing it as her responsibility to break them well for you + dutifully, seeing it as $his responsibility to break them well for you <</if>> as well as to get some petty revenge. <<switch $eventSlave.fetish>> <<case "submissive">> - $He's a sub, but this actually means that $he can do a reasonable dom impression when $he works at it. $He certainly has experience with what works, even if it's from the other side. The erstwhile rich girls are required to kiss her feet, literally. + $He's a sub, but this actually means that $he can do a reasonable dom impression when $he works at it. $He certainly has experience with what works, even if it's from the other side. The erstwhile rich girls are required to kiss $his feet, literally. <<case "cumslut">> As a cumslut, $he derives considerable enjoyment from seeing others drink ejaculate, too. In this case, $he enjoys forcing the erstwhile rich girls to choke down liters of the stuff. <<case "humiliation">> - $He can't publicly humiliate them, since that would defeat the whole purpose of sequestering them until the trail goes really cold. Unfortunately for them, that doesn't stop her from humiliating them to each other, and $he forces them to perform various sex acts on her while the others watch. + $He can't publicly humiliate them, since that would defeat the whole purpose of sequestering them until the trail goes really cold. Unfortunately for them, that doesn't stop $him from humiliating them to each other, and $he forces them to perform various sex acts on $him while the others watch. <<for _ress = 0; _ress < $slaves.length; _ress++>><<if $slaves[_ress].origin == _origin>><<set $slaves[_ress].oralCount += 10>><</if>><</for>> <<set $oralTotal += 30>> <<case "buttslut">> - $He has a one track mind, and that track is anal sex. So, $he assrapes them, enjoying their sobbed apologies while $he <<if canPenetrate($eventSlave)>>fills their backdoors with her cum<<else>>uses a dildo on them<</if>>. + $He has a one track mind, and that track is anal sex. So, $he assrapes them, enjoying their sobbed apologies while $he <<if canPenetrate($eventSlave)>>fills their backdoors with $his cum<<else>>uses a dildo on them<</if>>. <<for _ress = 0; _ress < $slaves.length; _ress++>><<if $slaves[_ress].origin == _origin>><<set $slaves[_ress].analCount += 10>><</if>><</for>> <<set $slaves[$slaveIndices[$eventSlave.ID]].penetrativeCount += 10>> <<set $analTotal += 30, $penetrativeTotal += 30>> <<case "boobs">> - $He forces them to <<if $eventSlave.nipples == "fuckable">>eat out $his nipples<<elseif $eventSlave.lactation > 0>>nurse from her<<else>>suck $his nipples until $he orgasms<</if>>, mostly for how much $he enjoys the sensation, but also for the revulsion it produces. + $He forces them to <<if $eventSlave.nipples == "fuckable">>eat out $his nipples<<elseif $eventSlave.lactation > 0>>nurse from $him<<else>>suck $his nipples until $he orgasms<</if>>, mostly for how much $he enjoys the sensation, but also for the revulsion it produces. <<for _ress = 0; _ress < $slaves.length; _ress++>><<if $slaves[_ress].origin == _origin>><<set $slaves[_ress].oralCount += 10>><</if>><</for>> <<set $slaves[$slaveIndices[$eventSlave.ID]].mammaryCount += 10>> <<set $oralTotal += 30, $mammaryTotal += 30>> <<case "pregnancy">> - $He doesn't have permission to impregnate them, but they don't know that, and $he lies shamelessly. <<if canPenetrate($eventSlave)>>They beg her not to cum inside them, but $he does anyway,<<else>>$He uses a strap-on with a reservoir to fill them with cum,<</if>> and they cry themselves to sleep every night. + $He doesn't have permission to impregnate them, but they don't know that, and $he lies shamelessly. <<if canPenetrate($eventSlave)>>They beg $him not to cum inside them, but $he does anyway,<<else>>$He uses a strap-on with a reservoir to fill them with cum,<</if>> and they cry themselves to sleep every night. <<for _ress = 0; _ress < $slaves.length; _ress++>><<if $slaves[_ress].origin == _origin>><<set $slaves[_ress].vaginalCount += 10>><</if>><</for>> <<set $slaves[$slaveIndices[$eventSlave.ID]].penetrativeCount += 10>> <<set $vaginalTotal += 30, $penetrativeTotal += 30>> @@ -17262,13 +17290,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $slaves[$slaveIndices[$eventSlave.ID]].oralCount += 10>> <<set $oralTotal += 60>> <<case "masochist">> - As a masochist, $he's naturally inclined to be on the receiving end, but in this case $he makes an exception for the sake of justice. And it's to her victims' anguish that $he does, because $he knows pain like a lover, and inflicts it in excruciating crescendos without leaving a single mark. + As a masochist, $he's naturally inclined to be on the receiving end, but in this case $he makes an exception for the sake of justice. And it's to $his victims' anguish that $he does, because $he knows pain like a lover, and inflicts it in excruciating crescendos without leaving a single mark. <</switch>> - The horrible experience is certainly @@.gold;educational@@ for your new slaves, and $eventSlave.slaveName is @@.hotpink;well pleased.@@ Tolerating insults is part of being a public slave, but getting this opportunity to take her pent-up frustrations out on some deserving targets is a @@.mediumaquamarine;trust building@@ exercise for $him. It seems their insults really did upset $him. + The horrible experience is certainly @@.gold;educational@@ for your new slaves, and $eventSlave.slaveName is @@.hotpink;well pleased.@@ Tolerating insults is part of being a public slave, but getting this opportunity to take $his pent-up frustrations out on some deserving targets is a @@.mediumaquamarine;trust building@@ exercise for $him. It seems their insults really did upset $him. <<for _ress = 0; _ress < $slaves.length; _ress++>><<if $slaves[_ress].origin == _origin>><<set $slaves[_ress].trust -= 4>><</if>><</for>> <<set _ress = $slaveIndices[$eventSlave.ID]>><<set $slaves[_ress].devotion += 5, $slaves[_ress].trust += 5>> <<else>> - $He obeys, but isn't so far gone into sexual slavery that $he's willing to really throw $himself into the task. $His visits are terrifying enough, though. Simply seeing their own likely futures reflected in her is usually enough to leave your new slaves crying themselves to sleep. + $He obeys, but isn't so far gone into sexual slavery that $he's willing to really throw $himself into the task. $His visits are terrifying enough, though. Simply seeing their own likely futures reflected in $him is usually enough to leave your new slaves crying themselves to sleep. <</if>> <</replace>> <</link>> @@ -17281,7 +17309,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Give them a surprise massage">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You move stealthily up behind her in a predatory crouch, your arms forward and your fingers spread. When $he reaches up to <<if $activeSlave.makeup != 0>>do $his eyes<<else>>massage her forehead<</if>>, you take advantage of her newly vulnerable flanks and reach around $him to take her torpedo tits in hand. $He <<if $activeSlave.voice != 0>>howls<<else>>makes the raspy noise that mute slaves make when<</if>> in shock, writhing away from the grasping digits. Your hands aren't particularly cold, but $he's deliciously warm from the shower and you're holding onto her firmly. $His + You move stealthily up behind $him in a predatory crouch, your arms forward and your fingers spread. When $he reaches up to <<if $activeSlave.makeup != 0>>do $his eyes<<else>>massage her forehead<</if>>, you take advantage of her newly vulnerable flanks and reach around $him to take her torpedo tits in hand. $He <<if $activeSlave.voice != 0>>howls<<else>>makes the raspy noise that mute slaves make when<</if>> in shock, writhing away from the grasping digits. Your hands aren't particularly cold, but $he's deliciously warm from the shower and you're holding onto her firmly. $His <<if $activeSlave.butt > 12>> titanic ass <<elseif $activeSlave.butt > 5>> @@ -17421,12 +17449,12 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.health -= 20>> <<if ($arcologies[0].FSSubjugationistRace == "white")>> <<set $activeSlave.race = "white">> - <<set $activeSlave.skin = either("pale", "light", "fair")>> + <<set $activeSlave.skin = either("fair", "light", "pale")>> <<set $activeSlave.eyeColor = either("blue", "brown", "green")>> - <<set $activeSlave.hColor = either("black", "blonde", "red", "brown")>> + <<set $activeSlave.hColor = either("black", "blonde", "brown", "red")>> <<elseif ($arcologies[0].FSSubjugationistRace == "latina")>> <<set $activeSlave.race = "latina">> - <<set $activeSlave.skin = either("light olive", "brown", "dark brown", "tanned", "dark olive")>> + <<set $activeSlave.skin = either("brown", "dark brown", "dark olive", "light olive", "tanned")>> <<set $activeSlave.hColor = either("black", "black", "brown", "brown")>> <<elseif ($arcologies[0].FSSubjugationistRace == "black")>> <<set $activeSlave.race = "black">> @@ -17434,11 +17462,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.hColor = either("black", "black", "black", "brown")>> <<elseif ($arcologies[0].FSSubjugationistRace == "asian")>> <<set $activeSlave.race = "asian">> - <<set $activeSlave.skin = either("light olive", "dark olive", "light")>> + <<set $activeSlave.skin = either("dark olive", "light olive", "light")>> <<set $activeSlave.hColor = either("black")>> <<elseif ($arcologies[0].FSSubjugationistRace == "middle eastern")>> <<set $activeSlave.race = "middle eastern">> - <<set $activeSlave.skin = either("tanned", "dark olive", "light olive")>> + <<set $activeSlave.skin = either("dark olive", "light olive", "tanned")>> <<set $activeSlave.hColor = "black">> <<elseif ($arcologies[0].FSSubjugationistRace == "indo-aryan")>> <<set $activeSlave.race = "indo-aryan">> @@ -17446,7 +17474,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.hColor = "black">> <<elseif ($arcologies[0].FSSubjugationistRace == "amerindian")>> <<set $activeSlave.race = "amerindian">> - <<set $activeSlave.skin = either("tanned", "dark", "light")>> + <<set $activeSlave.skin = either("dark", "light", "tanned")>> <<set $activeSlave.hColor = either("black")>> <<elseif ($arcologies[0].FSSubjugationistRace == "pacific islander")>> <<set $activeSlave.race = "pacific islander">> @@ -17454,15 +17482,15 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.hColor = either("black")>> <<elseif ($arcologies[0].FSSubjugationistRace == "malay")>> <<set $activeSlave.race = "malay">> - <<set $activeSlave.skin = either("light", "light olive", "dark olive")>> + <<set $activeSlave.skin = either("dark olive", "light olive", "light")>> <<set $activeSlave.hColor = either("black")>> <<elseif ($arcologies[0].FSSubjugationistRace == "southern european")>> <<set $activeSlave.race = "southern european">> - <<set $activeSlave.skin = either("light", "dark olive", "light olive")>> + <<set $activeSlave.skin = either("dark olive", "light olive", "light")>> <<set $activeSlave.hColor = either("black")>> <<elseif ($arcologies[0].FSSubjugationistRace == "semitic")>> <<set $activeSlave.race = "semitic">> - <<set $activeSlave.skin = either("tanned", "dark olive", "light olive")>> + <<set $activeSlave.skin = either("dark olive", "light olive", "tanned")>> <<set $activeSlave.hColor = either("black")>> <<elseif ($arcologies[0].FSSubjugationistRace == "mixed race")>> <<set $activeSlave.race = "mixed race">> @@ -17513,7 +17541,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> You look $activeSlave.slaveName over, and something about $him makes you reconsider playing games with her racial appearance. <<if $activeSlave.race == $arcologies[0].FSSupremacistRace>>Perhaps her natural $activeSlave.race supremacy is too sacrosanct for you to go to such lengths. <</if>>You'll not make such an extreme example of $him. Still, $he is a disobedient slave, and $he cannot be allowed to openly defy your orders and inspections. You <<if $activeSlave.belly >= 300000>> - shove her onto her _belly belly, expose her bare ass + shove her onto $his _belly belly, expose her bare ass <<else>> take her over your knee, expose $his bare ass <</if>> @@ -17607,7 +17635,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "transition anxiety">> <<if canDoAnal($activeSlave)>> -<<link "Fuck her">> +<<link "Fuck $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> You announce that you're going to fuck her <<if $activeSlave.anus == 0>>virgin <</if>>asspussy. To your complete lack of surprise, $he can't hide her horror at the prospect of <<if $PC.dick == 1>>having a cock inside her<<else>>being fucked with a strap-on<</if>>, and her <<if canSee($activeSlave)>>wide, $activeSlave.eyeColor eyes track<<else>>terrified face follows<</if>> your movements closely as you stand up and <<if $PC.dick == 1>>reveal the formidable member<<else>>don the strap-on<</if>> you're about to breed her with. You order $him to kneel on the couch, which $he does, @@.gold;cringing in fear of being buttfucked, but knowing disobedience will be worse;@@ and then you order $him to reach down and spread $his butt for you, as wide as it'll go. $He complies, @@ -17697,7 +17725,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</link>> <br><<link "Rape $him">> <<replace "#result2">> - You grab $his hips, getting a good grip, and spear the poor $desc without any hint of mercy. $He <<if $activeSlave.voice > 0>>screams in pain and fear<<else>>sucks in a great sobbing gasp<</if>>, and tries to wriggle away despite her intention of submitting to your use, but you hold her in place and rape $his ass. + You grab $his hips, getting a good grip, and spear the poor $desc without any hint of mercy. $He <<if $activeSlave.voice > 0>>screams in pain and fear<<else>>sucks in a great sobbing gasp<</if>>, and tries to wriggle away despite her intention of submitting to your use, but you hold $him in place and rape $his ass. <<= AnalVCheck()>> $He tries to maintain $his position, crying openly, but eventually slides off her perch on the couch, pulling her hole off your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>>. You grab $him by <<if $activeSlave.hLength > 20>>hair<<else>>neck<</if>> and smash her face into the angle of the couch, leaving her poor butt completely vulnerable. $He can't see you line up to ream her again, but $he knows it's coming and cries, quivering. After a while, you haul her up to her feet and keep fucking $him, the uncomfortable angle of standing anal forcing new <<if $activeSlave.voice > 0>>squeals<<else>>rasps<</if>> out of $him. You pour degradation into her ear as you take your pleasure from her unhappy body, telling $him that $he's your fuckmeat. $He believes you, and when you finally orgasm and let her slide off your hateful <<if $PC.dick == 1>>penis<<else>>strap-on<</if>>, shes @@.gold;already terrified@@ of the next time you feel like fucking $him. <<set $activeSlave.trust -= 5>> @@ -17707,7 +17735,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</replace>> <</link>><<if $activeSlave.anus == 0>> //This option will take anal virginity//<</if>> <</if>> -<br><<link "Humiliate her in public">> +<br><<link "Humiliate $him in public">> <<EventNameDelink $activeSlave>> <<replace "#result">> You get up from behind your desk, drawing an apprehensive <<if canSee($activeSlave)>>stare<<else>>look<</if>>. To her bemusement, you order $him to follow you and leave your office. $He hurries to obey, her footsteps pattering along behind you, but they become much more hesitant as you make your way out of the penthouse and $he realizes that $he's about to be in public, naked. You don't bother looking back, knowing that $he's sufficiently afraid of you to obey. On the border between your private domain and the public hustle and bustle of the arcology's public life, $he stops for a long moment before scurrying to catch up with you, barely even noticing that @@.hotpink;$he just swallowed her sense of shame@@ to obey you and avoid punishment. You stroll along, greeting leading citizens and taking in the hum of your people. $activeSlave.slaveName grows increasingly embarrassed under the hot stares of passersby, cringing closer and closer to your protective side as $he notices how <<if canSee($activeSlave)>>many gazes rest with open hunger on<<else>>many lewd comments focus on<</if>> $his mouth, her crotch, and $his ass. @@ -17715,7 +17743,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><br><span id="result2"> <<link "Make her perform oral on you, right here">> <<replace "#result2">> - You reach around, place a dominating hand on her shoulder, pull her around in front of you, and push her down to $his knees. $He quickly realizes what's coming, and her $activeSlave.skin cheeks blush furiously as you reveal your <<if $PC.dick == 1>>meaty dick<<else>>flushed pussy<</if>> and offer it to $him. $He gets busy, burying her head against you with a speed that seems surprising until it occurs to you that this allows $him to hide her face. Deciding to accept this tiny compromise, you run a possessive hand <<if $activeSlave.hLength < 5>>across her smooth scalp<<elseif $activeSlave.hLength < 20>>through her short hair<<else>>through her tresses<</if>> and murmur praise for her enthusiasm. $He stiffens at the implication that $he wants to be <<if $PC.dick == 1>>polishing your penis<<else>>eating you out<</if>> in broad daylight, but after a slight pause $he decides that this isn't bad. As <<if $PC.dick == 1>>her head continues to bob back and forth as $he sucks your dick<<else>>$he continues nuzzling her nose and mouth against your wet cunt<</if>>, $he fails to notice her @@.hotpink;second major submission today.@@ + You reach around, place a dominating hand on her shoulder, pull her around in front of you, and push her down to $his knees. $He quickly realizes what's coming, and $his $activeSlave.skin cheeks blush furiously as you reveal your <<if $PC.dick == 1>>meaty dick<<else>>flushed pussy<</if>> and offer it to $him. $He gets busy, burying her head against you with a speed that seems surprising until it occurs to you that this allows $him to hide her face. Deciding to accept this tiny compromise, you run a possessive hand <<if $activeSlave.hLength < 5>>across her smooth scalp<<elseif $activeSlave.hLength < 20>>through her short hair<<else>>through her tresses<</if>> and murmur praise for her enthusiasm. $He stiffens at the implication that $he wants to be <<if $PC.dick == 1>>polishing your penis<<else>>eating you out<</if>> in broad daylight, but after a slight pause $he decides that this isn't bad. As <<if $PC.dick == 1>>her head continues to bob back and forth as $he sucks your dick<<else>>$he continues nuzzling her nose and mouth against your wet cunt<</if>>, $he fails to notice her @@.hotpink;second major submission today.@@ <<if $activeSlave.fetish == "humiliation">> <<if $activeSlave.fetishKnown == 1>> Since $he has a humiliation fetish, the embarrassment has been arousing her even as it's been torturing $him. Unsatisfied with just this, her need to be shamed obliges $him to cock $his hips and make sure onlookers can see her asspussy as $he services you with $his mouth. @@ -17764,11 +17792,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Make love to her ready cunt">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $His body is so perfectly made to be fucked that it's getting itself ready for you, without your even having to give the order. Deciding not to bother with verbal commands, you approach $him and reach for one of $his hands; $he obediently extends it towards your grasp, and follows <<if ($activeSlave.energy > 40) || ($activeSlave.aphrodisiacs > 0) || $activeSlave.inflationType == "aphrodisiac">>eagerly<<else>>willingly<</if>> as you pull her in for a hug + $His body is so perfectly made to be fucked that it's getting itself ready for you, without your even having to give the order. Deciding not to bother with verbal commands, you approach $him and reach for one of $his hands; $he obediently extends it towards your grasp, and follows <<if ($activeSlave.energy > 40) || ($activeSlave.aphrodisiacs > 0) || $activeSlave.inflationType == "aphrodisiac">>eagerly<<else>>willingly<</if>> as you pull $him in for a hug <<if $activeSlave.boobs > 5000>> hug (cushioned by her enormous udders), <<elseif $activeSlave.belly >= 10000>> - hug (quite a stretch thanks to her _belly belly), + hug (quite a stretch thanks to $his _belly belly), <<elseif $activeSlave.dick > 5>> hug (made rather lewd by her enormous penis), <<else>> @@ -17805,14 +17833,14 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $activeSlave.boobs > $activeSlave.belly>> as closely as her big breasts will permit. <<else>> - as closely as her _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly will permit. + as closely as $his _belly <<if $activeSlave.bellyPreg >= 3000>>pregnant <</if>>belly will permit. <</if>> <<elseif $PC.belly >= 5000>> as closely as your pregnant belly will permit. <<else>> closer than ever. <</if>> - You take your other hand and place a firm but loving grip under her chin, lifting her $activeSlave.eyeColor-eyed gaze to meet yours before kissing her again. All the while, you + You take your other hand and place a firm but loving grip under her chin, lifting $his $activeSlave.eyeColor-eyed gaze to meet yours before kissing her again. All the while, you <<if $PC.dick == 1>> fuck her powerfully, withdrawing your dick almost all the way and then hilting yourself in her soaked slit. <<= VaginalVCheck()>> @@ -17895,7 +17923,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> You're careful not to penetrate her virgin slit with your middle finger, but you draw it up the exterior of her channel, gathering a healthy amount of pussyjuice. <</if>> - Then you remove your hand, though the horny $desc unconsciously tries to follow the withdrawing digits. $He <<if canSee($activeSlave)>>stares at you, waiting to see what you're going to do, and a blush begins to rise on her $activeSlave.skin cheeks as $he sees<<else>>listens carefully to your movements, waiting to see what you're going to do, and a blush begins to rise on her $activeSlave.skin cheeks as $he feels<</if>> you reaching for $his mouth. $His + Then you remove your hand, though the horny $desc unconsciously tries to follow the withdrawing digits. $He <<if canSee($activeSlave)>>stares at you, waiting to see what you're going to do, and a blush begins to rise on $his $activeSlave.skin cheeks as $he sees<<else>>listens carefully to your movements, waiting to see what you're going to do, and a blush begins to rise on $his $activeSlave.skin cheeks as $he feels<</if>> you reaching for $his mouth. $His <<if $activeSlave.lips > 95>> facepussy <<elseif $activeSlave.lips > 40>> @@ -18066,13 +18094,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> <<= VaginalVCheck(10)>> <</if>> - $He <<if $activeSlave.voice > 0>>squeals<<else>>rasps<</if>> with displeasure as you roughly plow her into her distended breasts until you cum deep inside her fertile hole. You return to your desk, leaving $him to sob into her unwelcome bust as cum pools from her abused <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>>. $He knows full well what you meant now, and @@.hotpink;lets you have your way@@ with $his body every time you catch her in a vulnerable moment or complaining about $his tits. By the week's end, scans reveal that your seed has taken root; @@.lime;$he's pregnant.@@ As $his breasts grow to feed her coming child, $he will likely be too distracted by her swelling middle to complain about their added weight. + $He <<if $activeSlave.voice > 0>>squeals<<else>>rasps<</if>> with displeasure as you roughly plow her into her distended breasts until you cum deep inside her fertile hole. You return to your desk, leaving $him to sob into her unwelcome bust as cum pools from her abused <<if $activeSlave.mpreg == 1>>ass<<else>>pussy<</if>>. $He knows full well what you meant now, and @@.hotpink;lets you have your way@@ with $his body every time you catch $him in a vulnerable moment or complaining about $his tits. By the week's end, scans reveal that your seed has taken root; @@.lime;$he's pregnant.@@ As $his breasts grow to feed her coming child, $he will likely be too distracted by her swelling middle to complain about their added weight. <<set $activeSlave.trust -= 5, $activeSlave.devotion += 5>> <<= knockMeUp($activeSlave, 100, 2, -1, 1)>> <</replace>> <</link>><<if $activeSlave.vagina == 0>> //This option will take virginity//<<elseif $activeSlave.anus == 0 && $activeSlave.mpreg == 1>> //This option will take anal virginity//<</if>> <</if>> -<br><<link "Praise $his breasts and reassure her">> +<br><<link "Praise $his breasts and reassure $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> You decide to reassure $him, and sit her on your lap<<if $PC.belly >= 100000>> as best $he can<</if>>. @@ -18143,9 +18171,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $activeSlave.analSkill > 10>><<set $activeSlave.analSkill -= 10>><</if>> <br><br> <span id="result2"> - <<link "Break her in again">> + <<link "Break $him in again">> <<replace "#result2">> - $His ass is yours all over again. As soon as her newly tight rosebud has recovered enough, you visit her in the surgery, without even waiting for $him to leave it. You flip her over on the recovery bed and force <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> up $his butt while $he wriggles with eager discomfort, squealing in pretended horror. $His renewed anal virginity was very brief; $his ass is once again @@.lime;broken in for penetration.@@ For her part, $he @@.hotpink;thoroughly enjoyed losing her anal cherry,@@ again. + $His ass is yours all over again. As soon as her newly tight rosebud has recovered enough, you visit $him in the surgery, without even waiting for $him to leave it. You flip her over on the recovery bed and force <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> up $his butt while $he wriggles with eager discomfort, squealing in pretended horror. $His renewed anal virginity was very brief; $his ass is once again @@.lime;broken in for penetration.@@ For her part, $he @@.hotpink;thoroughly enjoyed losing her anal cherry,@@ again. <<set $activeSlave.devotion += 5, $activeSlave.analCount++, $analTotal++, $activeSlave.anus = 1>> <<= knockMeUp($activeSlave, 5, 1, -1, 1)>> <</replace>> @@ -18158,7 +18186,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> You announce that you can fill $him just fine, and you'll make $him feel it just as though $he were an anal virgin again. $He looks simultaneously intrigued and apprehensive<<if !canDoAnal($activeSlave)>> as you remove her anal chastity<</if>>, but starts to get to $his knees like a good anal slut. You stop her before $he can <<if $activeSlave.belly >= 300000>> - lean onto her _belly belly + lean onto $his _belly belly <<else>> face the ground <</if>> @@ -18257,7 +18285,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<set $activeSlave.devotion += 5>> <</replace>> <</link>> -<br><<link "Play with her">> +<br><<link "Play with $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> You're not a slave, so you can't understand her inner workings through direct empathy. But in your experience, a quick orgasm never fails to make a good day better. You're not slow, and of course you know where $he's going, so you catch up to her on quiet feet and @@ -18283,7 +18311,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "boobs">> $He gasps as your hot mouth finds one of $his $activeSlave.nipples nipples, and then moans openly as one of your hands mauls $his other breast. Your other hand <<case "pregnancy">> - One of your hands begins to caress $his _belly <<if $activeSlave.pregKnown == 1>> pregnant<</if>> belly, worshipping its curve. Your other hand + One of your hands begins to caress $his _belly <<if $activeSlave.pregKnown == 1>> pregnant<</if>> belly, worshiping its curve. Your other hand <<case "dom" "sadist">> You press yourself aggressively against $him, and $he presses back; you grind harder still, letting $him know that $he can let $himself be a little aggressive, too. Groaning with pleasure and satisfaction, $he kisses you furiously. One of your hands <<case "masochist">> @@ -18406,7 +18434,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> and pull $him back into your arms. The other slave watches silently, awaiting some cue as to whether _heU's to join in or return to breakfast; you give _himU a flick of your chin, and _heU turns away, leaving you with $activeSlave.slaveName, embracing among the eating slaves. <br><br> - You whisper into her ear that you think $he's attractive, <<if $PC.dick == 1>>and point out that $he can feel the proof between her buttocks. You're hard, and your stiff prick is poking her in the rear. $He gasps and shifts a little, and you nestle your dick even closer into the warm place between $his legs and ass.<<else>>and tell $him that you can prove it. You grab one of $his hands and pull it around behind $him, between you, making $him feel your pussy. $He gasps at how wet it is.<</if>> "An old <<s>>lave like me, <<Master>>?" $he echoes in a small voice. An old slave like $him, you confirm, and tell $him that right now, + You whisper into her ear that you think $he's attractive, <<if $PC.dick == 1>>and point out that $he can feel the proof between $his buttocks. You're hard, and your stiff prick is poking $him in the rear. $He gasps and shifts a little, and you nestle your dick even closer into the warm place between $his legs and ass.<<else>>and tell $him that you can prove it. You grab one of $his hands and pull it around behind $him, between you, making $him feel your pussy. $He gasps at how wet it is.<</if>> "An old <<s>>lave like me, <<Master>>?" $he echoes in a small voice. An old slave like $him, you confirm, and tell $him that right now, <<if $PC.dick == 1 && (canDoVaginal($activeSlave) || canDoAnal($activeSlave))>> <<if canDoVaginal($activeSlave)>> you've decided to fuck $his pussy. $He starts at the sudden vulgarity, even with your cock resting against the soft skin between the bottom of $his vulva and $his anus, and shudders with sudden pleasure as you use a hand to guide yourself inside her welcoming channel. @@ -18447,7 +18475,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> $he screams as you open the box for $him. $He knows that if $he doesn't climb in, it'll be longer before $he's let out, so $he does, scrabbling inside and sobbing desperately as you close the lid. <<case "whipping">> - whipped. @@.gold;$He breaks down,@@ falling to $his knees, begging abjectly for mercy. "It'll h-hu-hurt," $he blubbers weakly as you attach $his hands to shackles high on the office wall. The first stroke across her buttocks draws a long shriek out of $him. + whipped. @@.gold;$He breaks down,@@ falling to $his knees, begging abjectly for mercy. "It'll h-hu-hurt," $he blubbers weakly as you attach $his hands to shackles high on the office wall. The first stroke across $his buttocks draws a long shriek out of $him. <<case "chastity">> locked up in chastity. @@.gold;$He breaks down,@@ falling to $his knees, begging abjectly for mercy. "I c-can't," $he moans. "I can't take it. I can't <<s>>tand it." As you lock the chastity onto $him, $he sobs inconsolably, knowing that any arousal will be torturous until $he's released. <<default>> @@ -18550,10 +18578,10 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</replace>> <</link>> <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>> -<br><<link "Rape her">> +<br><<link "Rape $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Sometimes there's really no need to overthink things. You reach down, grab her under the armpits, and haul her up, throwing her across your desk. $He lands on her back, and the impact drives the wind out of $him, so $he lies there, @@.gold;all possibility of resistance driven out of her.@@ + Sometimes there's really no need to overthink things. You reach down, grab her under the armpits, and haul her up, throwing her across your desk. $He lands on her back, and the impact drives the wind out of $him, so $he lies there, @@.gold;all possibility of resistance driven out of $him.@@ <<if $activeSlave.clothes == "no clothing">> $He's already naked, so there's no need to <<else>> @@ -18569,7 +18597,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.dick > 0>> limp bitchclit. <<else>> - her buttocks. + $his buttocks. <</if>> You tell her not to worry, because you're still pretty wet from the last slave you fucked, so this shouldn't hurt too much. Then you ram your cock <<if $activeSlave.vagina > 0>> @@ -19073,7 +19101,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Gently acclimate $him to the age difference with some lovemaking">> <<EventNameDelink $activeSlave>> <<replace "#result">> +<<<<<<< HEAD As you cross the breadth of your office to reach $activeSlave.slaveName, $he presents $himself for your sexual usage out of habit. However, you take $him by surprise by drawing her into you arms, running the tips of your fingers through her $activeSlave.hColor hair, and looking into her $activeSlave.eyeColor eyes. <<if canSee($activeSlave)>>$He meets your gaze for a brief moment before blushing girlishly, as if forgetting how many years her senior you are<<else>>$He seems to feel the intensity of your gaze despite her sightless eyes and blushes girlishly, as if forgetting how many years her senior you are<</if>> . In lieu of words, you lift her chin with a single beckoning finger and steal $his breath from $his lips with a firm kiss. Once $he's recovered her wits $he clings to you with almost animalistic attachment. After a few moments $he moves to get down on $his knees, clearly defaulting to her role as a sex slave in response to your unexpected intimacy. +======= + As you cross the breadth of your office to reach $activeSlave.slaveName, $he presents $himself for your sexual usage out of habit. However, you take $him by surprise by drawing her into you arms, running the tips of your fingers through her $activeSlave.hColor hair, and looking into $his $activeSlave.eyeColor eyes. <<if canSee($activeSlave)>>$He meets your gaze for a brief moment before blushing girlishly, as if forgetting how many years $his senior you are<<else>>$He seems to feel the intensity of your gaze despite $his sightless eyes and blushes girlishly, as if forgetting how many years $his senior you are<</if>> . In lieu of words, you lift her chin with a single beckoning finger and steal $his breath from $his lips with a firm kiss. Once $he's recovered her wits $he clings to you with almost animalistic attachment. After a few moments $he moves to get down on $his knees, clearly defaulting to her role as a sex slave in response to your unexpected intimacy. +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 Instead, you <<if $activeSlave.belly >= 300000>> help $him to her feet and guide $him to bed, aiding the @@ -19126,7 +19158,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<elseif $activeSlave.preg > 20>> stroke her pregnant belly, <<elseif $activeSlave.belly >= 5000>> - caress the curve of her _belly belly, + caress the curve of $his _belly belly, <</if>> and bring $him to climax again and again. After a final frantic orgasm together in her <<if canDoVaginal($activeSlave)>> @@ -19222,12 +19254,12 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "devoted educated slave">> -<<link "Have a conversation with her">> +<<link "Have a conversation with $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> You linger in the hallway a while with $activeSlave.slaveName and enjoy a brief but verbose discussion. It's clear $he hasn't had the chance to engage in any meaningful conversations in a while, so $he relishes the opportunity energetically. <br><br> - Though the two of you only touch upon a handful of sophisticated topics, by the time you leave $him to tend to other matters, $activeSlave.slaveName is beaming happily as $he continues on to her duties for the day. $He @@.mediumaquamarine;trusts you more@@ for taking the time to engage with her intellectually. + Though the two of you only touch upon a handful of sophisticated topics, by the time you leave $him to tend to other matters, $activeSlave.slaveName is beaming happily as $he continues on to $his duties for the day. $He @@.mediumaquamarine;trusts you more@@ for taking the time to engage with her intellectually. <<set $activeSlave.trust += 4>> <</replace>> <</link>> @@ -19275,7 +19307,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "A public blowbang will show her what a Degradationist arcology thinks about 'educated' slaves">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You tell her $he'll get fucked in the mouth until $he either gets over the idea of being special for her education or until all her learning is fucked out of her head. You drag the protesting $activeSlave.slaveName out into a public plaza, restrain her in stocks so that $his mouth is available, and inform the gathering crowd of citizens that this particular slave thinks $himself more than a fuckhole because of some fancy 'education'. + You tell her $he'll get fucked in the mouth until $he either gets over the idea of being special for her education or until all her learning is fucked out of her head. You drag the protesting $activeSlave.slaveName out into a public plaza, restrain $him in stocks so that $his mouth is available, and inform the gathering crowd of citizens that this particular slave thinks $himself more than a fuckhole because of some fancy 'education'. <br><br> When you return later in the evening, it becomes abundantly clear that your citizenry taught $activeSlave.slaveName a harsh lesson about a slave's place in $arcologies[0].name. $activeSlave.slaveName has certainly @@.green;learned to keep any pretentious thoughts about her education in her head@@. $He did, however, @@.red;have quite a rough time@@ sucking all those dicks<<if $activeSlave.oralSkill <= 30>>, though $he did learn about sucking dick, so $he can't claim enslavement isn't educational.<<set $skillIncrease = 10>><<OralSkillIncrease $activeSlave>><<else>>.<</if>> And last of all, you and $activeSlave.slaveName did make @@.green;quite a good impression@@ today, though for widely differing reasons. <<set $activeSlave.health -= 10>> @@ -19310,7 +19342,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> You instruct $assistantName to have $activeSlave.slaveName give the tourists a real Free Cities welcome, as befitting one of your public servants. <br><br> - Some time later, you return to the video feed to see $activeSlave.slaveName giving each of the boys a hug goodbye. The boys reciprocate her affection warmly, even as they try to ignore the fact that her $activeSlave.skin face and chest are spattered with their cum. $activeSlave.slaveName has certainly given the tourists a crash course in Free Cities culture and @@.green;improved your reputation@@ at the same time. + Some time later, you return to the video feed to see $activeSlave.slaveName giving each of the boys a hug goodbye. The boys reciprocate her affection warmly, even as they try to ignore the fact that $his $activeSlave.skin face and chest are spattered with their cum. $activeSlave.slaveName has certainly given the tourists a crash course in Free Cities culture and @@.green;improved your reputation@@ at the same time. <<set $activeSlave.oralCount += 6, $oralTotal += 6, $rep += 250>> <</replace>> <</link>> @@ -19324,11 +19356,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $activeSlave.bellyPreg >= 750000>> the lucky winner carefully taking $activeSlave.slaveName from behind as he gingerly caresses her straining, squirming pregnancy. <<elseif $activeSlave.belly >= 750000>> - the lucky winner taking $activeSlave.slaveName from behind with his arms wrapped as far around her _belly middle as possible. + the lucky winner taking $activeSlave.slaveName from behind with his arms wrapped as far around $his _belly middle as possible. <<elseif $activeSlave.boobs > 25000>> the lucky winner's head poking out from beneath pair of humongous breasts as $activeSlave.slaveName rides him. <<elseif $activeSlave.bellyPreg >= 450000>> - the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his arms wrapped around her _belly pregnant belly. + the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his arms wrapped around $his _belly pregnant belly. <<elseif $activeSlave.belly >= 450000>> the lucky winner taking $activeSlave.slaveName roughly in missionary, his arms wrapped around her massively distended belly. <<elseif $activeSlave.weight > 190>> @@ -19343,9 +19375,9 @@ You tell her kindly that you understand, and that $he'll be trained to address t the lucky winner's head enveloped by a pair of massive breasts as $activeSlave.slaveName rides him. <<elseif $activeSlave.belly >= 150000>> <<if $activeSlave.bellyPreg > 0>> - the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his hands gently cradling her _belly pregnant belly. + the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his hands gently cradling $his _belly pregnant belly. <<else>> - the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his hands massaging her _belly swollen belly. + the lucky winner taking $activeSlave.slaveName almost tenderly in missionary, his hands massaging $his _belly swollen belly. <</if>> <<elseif $activeSlave.dick > 6>> the lucky winner gazing down at the lengthy cock slapping against his stomach as $activeSlave.slaveName rides him. @@ -19411,12 +19443,12 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> There are some things that never change, even after ascension to the high position of an arcology owner. One of these fixtures of life is the ability to enjoy a relaxing evening of wallscreen television and <<if $PC.dick == 1>>a blowjob<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>some cunnilingus<</if>>. With $activeSlave.slaveName sequestered between your legs, you tune into your favorite Free Cities serial drama and <<if !canSee($activeSlave)>>audibly <</if>>widen your legs slightly as you sink back into the chair with a sigh of contentment. $He <<if $activeSlave.belly >= 300000>> - gently leans onto her _belly belly with $his arms steadying the mass + gently leans onto $his _belly belly with $his arms steadying the mass <<elseif $activeSlave.belly >= 5000>> <<if $activeSlave.bellyPreg >= 3000>> kneels carefully with an arm wrapped protectively around her bump <<else>> - kneels carefully with an arm cradling her _belly belly + kneels carefully with an arm cradling $his _belly belly <</if>> <<else>> sinks to $his knees obediently with $his hands placed placidly on her thighs @@ -19501,7 +19533,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t While it feels interesting, it isn't very satisfying. <</if>> <<else>> - crotch rubbing up against your own<<if $PC.dick == 0>>, so you don a strap-on<</if>>. Lightly maneuvering her in the air, you position her + crotch rubbing up against your own<<if $PC.dick == 0>>, so you don a strap-on<</if>>. Lightly maneuvering $him in the air, you position her <<if canDoVaginal($activeSlave)>> such that you press up against $his pussy. <<else>> @@ -19542,7 +19574,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Show $him that short girls can still serve">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You lightly place your palms on her shoulders and apply a little pressure<<if $PC.dick == 0>>as you don a strap-on<</if>>. From your towering position above $him, you easily push her down to $his knees with little more than a gradual increase in force. From your standing position<<if $activeSlave.belly >= 300000>>, after straddling her _belly belly<</if>>, your <<if $PC.dick == 0>>phallus<<else>>cock<</if>> hovers above her head, tantalizingly out of the immediate reach of $his lips. + You lightly place your palms on her shoulders and apply a little pressure<<if $PC.dick == 0>>as you don a strap-on<</if>>. From your towering position above $him, you easily push her down to $his knees with little more than a gradual increase in force. From your standing position<<if $activeSlave.belly >= 300000>>, after straddling $his _belly belly<</if>>, your <<if $PC.dick == 0>>phallus<<else>>cock<</if>> hovers above her head, tantalizingly out of the immediate reach of $his lips. <<if ($activeSlave.teeth == "removable")>> $He quickly pulls her removable teeth out, setting them aside as $he looks up at your <<if $PC.dick == 0>>phallus<<else>>cock<</if>>. <<elseif ($activeSlave.teeth == "pointy")>> @@ -19594,7 +19626,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Take pity">> <<EventNameDelink $activeSlave>> <<replace "#result">> - Deciding to take pity, you stand up<<if $PC.dick == 0>>, pull on a strap-on,<</if>> and approach her crumpled, weeping form. You reach down and take her clasped hands in yours, pulling her gently to her feet and giving $him a quick cuddle. You make it just long enough to reassure $him that you care for $him, but not long enough to frustrate her even further; her extreme horniness is only sharpened by the hug and the way it traps $his arms between her + Deciding to take pity, you stand up<<if $PC.dick == 0>>, pull on a strap-on,<</if>> and approach $his crumpled, weeping form. You reach down and take her clasped hands in yours, pulling her gently to her feet and giving $him a quick cuddle. You make it just long enough to reassure $him that you care for $him, but not long enough to frustrate $him even further; her extreme horniness is only sharpened by the hug and the way it traps $his arms between her <<if Math.floor($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>> fake boobs <<elseif $activeSlave.boobs > 4000>> @@ -19614,13 +19646,13 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> hard pectorals. <</if>> - $He sniffles, trying to restrain her hopes. You push her backwards toward the couch, giving $him a kiss to really bring $him to the height of anticipation before laying her down and sliding your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> <<if $activeSlave.anus > 1>>inside her soft asshole<<else>>up her tight little butt<</if>>. + $He sniffles, trying to restrain her hopes. You push $him backwards toward the couch, giving $him a kiss to really bring $him to the height of anticipation before laying $him down and sliding your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> <<if $activeSlave.anus > 1>>inside her soft asshole<<else>>up her tight little butt<</if>>. <<if $activeSlave.prostate != 0>> The instant <<if $PC.dick == 1>>your hard dickhead<<else>>the hard tip of your phallus<</if>> presses against her prostate, $he orgasms, squirting <<if $activeSlave.balls == 0>>translucent fluid<<else>>cum<</if>>. $He looks like $he wants to say something, or maybe even apologize, so you shush her with a gentle hand and pull out, letting the fluid run down <<if $activeSlave.scrotum > 0>>her soft scrotum<<else>>the pretty skin between her cumhole and $his anus<</if>> until it glazes her asspussy. You use <<if $PC.dick == 1>>the tip of your cock<<else>>the head of the strap-on<</if>> to massage the fluid into the hole before penetrating it again with the extra lubrication. <<else>> Without a prostate or a strong anal fetish, $he'll have trouble climaxing to nothing but buttsex, so you make sure to tend to every erogenous zone $he has left. You guide one of $his hands down so $he can rub <<if $activeSlave.scrotum > 0>>$his scrotum<<else>>the skin between $his legs<</if>>, and make her stimulate one of $his nipples with the other. You <<if $activeSlave.nipples != "fuckable">>pinch and rub<<else>>finger<</if>> her other nipple, and push two fingers of your other hand into $his mouth, making $him suck them. So completely stimulated, $he finally manages to orgasm. <</if>> - You make love to her until $he's satisfied, and then carry $him to the shower to wash her off. Under the warm water, $he @@.mediumaquamarine;stays trustingly close to your naked body,@@ without even thinking about it. + You make love to $him until $he's satisfied, and then carry $him to the shower to wash her off. Under the warm water, $he @@.mediumaquamarine;stays trustingly close to your naked body,@@ without even thinking about it. <<set $activeSlave.trust += 5>> <<= AnalVCheck()>> <</replace>> @@ -19628,20 +19660,20 @@ You tell her kindly that you understand, and that $he'll be trained to address t <br><<link "Assrape $him">> <<EventNameDelink $activeSlave>> <<replace "#result">> - $He's an anal sex toy, and you decide to use her like one. You walk over, reach down, and jerk $him to her feet. You don't hurt $him, not yet, but the violence of the motion forces a sob out of $him. $He <<if canSee($activeSlave)>>sees the open lust in your eyes<<else>>feels the lust lingering about you<</if>> and is afraid. $He's not wrong to be so; you spin her roughly around and use one arm to pin her upper body mercilessly in place while you use your other hand to + $He's an anal sex toy, and you decide to use $him like one. You walk over, reach down, and jerk $him to her feet. You don't hurt $him, not yet, but the violence of the motion forces a sob out of $him. $He <<if canSee($activeSlave)>>sees the open lust in your eyes<<else>>feels the lust lingering about you<</if>> and is afraid. $He's not wrong to be so; you spin $him roughly around and use one arm to pin her upper body mercilessly in place while you use your other hand to <<if $activeSlave.anus > 2>> manhandle your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> up her roomy ass. It's disappointingly easy, and $he takes it without a struggle, so you reach around her front, down between $his legs, and jam a couple of fingers up there, too. <<elseif $activeSlave.anus > 1>> - shove your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> up $his anus. $He's taken hard anal before, but the angle isn't particularly comfortable, you didn't bother with lube, and you begin to rape her vigorously without any warning. + shove your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> up $his anus. $He's taken hard anal before, but the angle isn't particularly comfortable, you didn't bother with lube, and you begin to rape $him vigorously without any warning. <<else>> force your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> up her spasming anus. $He'd struggle to take it in a position far more comfortable for anal than standing straight up, and you don't even bother to take it slow. <</if>> "<<Master>>, that hurt<<s>>!" $he screams, crying even harder. "Ow, it h-hurt<<s>>! Plea<<s>>e take it out, ow, ow," $he shrieks, and then degenerates into nonverbal caterwauling. <<if $activeSlave.prostate != 0>> - Then, without any warning, $he orgasms. $He's so pent up that the prostate stimulation overpowers the pain. $He shudders, gasps, and then moans, "I'm <<s>>-<<s>>uch a whore, <<Master>>," in such a tone of utter @@.hotpink;submission@@ and dejection that you climax too. Then you drop $him, letting her slide off you, and go back to your work, leaving $him to clean $himself and the floor. + Then, without any warning, $he orgasms. $He's so pent up that the prostate stimulation overpowers the pain. $He shudders, gasps, and then moans, "I'm <<s>>-<<s>>uch a whore, <<Master>>," in such a tone of utter @@.hotpink;submission@@ and dejection that you climax too. Then you drop $him, letting $him slide off you, and go back to your work, leaving $him to clean $himself and the floor. <<set $activeSlave.devotion += 5>> <<else>> - $He knows $he shouldn't wriggle, that fighting will make it even worse for $him, but you assrape her so mercilessly that $his body revolts, trying to escape the invading phallus. You have $his arms pinioned securely, so all this struggling does is add to the fun. When you're done, you<<if $PC.dick == 1>> fill her insides with your cum and<</if>> drop $him, ordering $him to clean $himself up. "Y-ye<<s>> <<Master>>," $he sniffles @@.gold;fearfully,@@ and hurries to obey, a little bent from her burning backdoor. Only later does $he remember that $he still hasn't gotten off. + $He knows $he shouldn't wriggle, that fighting will make it even worse for $him, but you assrape $him so mercilessly that $his body revolts, trying to escape the invading phallus. You have $his arms pinioned securely, so all this struggling does is add to the fun. When you're done, you<<if $PC.dick == 1>> fill $him insides with your cum and<</if>> drop $him, ordering $him to clean $himself up. "Y-ye<<s>> <<Master>>," $he sniffles @@.gold;fearfully,@@ and hurries to obey, a little bent from her burning backdoor. Only later does $he remember that $he still hasn't gotten off. <<set $activeSlave.trust -= 5>> <</if>> <<= AnalVCheck()>> @@ -19667,11 +19699,11 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case "objectifying visit">> -<<link "Use her as a footrest">> +<<link "Use $him as a footrest">> <<EventNameDelink $activeSlave>> <<replace "#result">> <<if $activeSlave.belly >= 300000>> - You order $him to get on her _belly belly and steady $himself, a task that $he carries out quickly and obediently. Once as comfortable as $he can possibly get perched awkwardly atop her straining stomach, + You order $him to get on $his _belly belly and steady $himself, a task that $he carries out quickly and obediently. Once as comfortable as $he can possibly get perched awkwardly atop her straining stomach, <<else>> You order $him to get beneath your desk on all fours, a task that $he carries out quickly and obediently. Once as comfortable as $he can be perched awkwardly underneath your desk, <</if>> @@ -19699,7 +19731,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> tiny breasts <</if>> - in your hand and slowly squeeze it. As a result, when a particularly irritating piece of news is relayed through your monitor and you suddenly crush the breast held in your hand in response, $activeSlave.slaveName can't help but let out a sharp yelp before silencing $himself. $He soon realizes her time with you in the near future will be as an outlet for your frustrations, and $his tits will be taking the brunt of the punishment. When you dismiss her hours later, $he scurries out of your office cradling her bruised bosom and @@.gold;trembling from $his recent objectifying experience@@. + in your hand and slowly squeeze it. As a result, when a particularly irritating piece of news is relayed through your monitor and you suddenly crush the breast held in your hand in response, $activeSlave.slaveName can't help but let out a sharp yelp before silencing $himself. $He soon realizes her time with you in the near future will be as an outlet for your frustrations, and $his tits will be taking the brunt of the punishment. When you dismiss $him hours later, $he scurries out of your office cradling her bruised bosom and @@.gold;trembling from $his recent objectifying experience@@. <<set $activeSlave.trust -= 5>> <</replace>> <</link>> @@ -19722,17 +19754,17 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<case 1>>pathetic <<default>>hypertrophied <</switch>> - balls in your hand and slowly squeeze it. As a result, when a particularly irritating piece of news is relayed through your monitor and you suddenly crush the testicle held in your hand in response, $activeSlave.slaveName can't help but let out a sharp yelp before struggling silencing $himself. $He soon realizes her time with you in the near future will be as an outlet for your frustrations, and you fully intend to use $his balls as literal stress balls. When you dismiss her hours later, $he staggers out of your office trying her best to not touch $his swollen testicles and @@.gold;trembling from $his recent objectifying experience@@. + balls in your hand and slowly squeeze it. As a result, when a particularly irritating piece of news is relayed through your monitor and you suddenly crush the testicle held in your hand in response, $activeSlave.slaveName can't help but let out a sharp yelp before struggling silencing $himself. $He soon realizes her time with you in the near future will be as an outlet for your frustrations, and you fully intend to use $his balls as literal stress balls. When you dismiss $him hours later, $he staggers out of your office trying her best to not touch $his swollen testicles and @@.gold;trembling from $his recent objectifying experience@@. <<set $activeSlave.trust -= 5>> <</replace>> <</link>> <</if>> <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave) || $activeSlave.belly >= 300000>> -<br><<link "Use her as an exercise ball">> +<br><<link "Use $him as an exercise ball">> <<EventNameDelink $activeSlave>> <<replace "#result">> <<if $activeSlave.belly >= 3000000>> - You pull your chair back from your desk and order $him to lie on $his back with $his _belly belly to the ceiling. $He isn't sure what you are up to, but it quickly dawns on her as you straddle $his stomach and take a seat. $He groans under the massive pressure increase inside $him, but does her best to hold your weight. + You pull your chair back from your desk and order $him to lie on $his back with $his _belly belly to the ceiling. $He isn't sure what you are up to, but it quickly dawns on $him as you straddle $his stomach and take a seat. $He groans under the massive pressure increase inside $him, but does $his best to hold your weight. <<if $activeSlave.preg > 10>> You manage to get very little work done. The sheer amount of motion <<if $PC.dick == 1>> @@ -19785,7 +19817,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<link "Give $him a nice massage">> <<EventNameDelink $activeSlave>> <<replace "#result">> - You sit on the couch next to your desk and pat your thighs. $He smiles and comes over, lowering $himself <<if $PC.dick == 0>>into your lap<<else>>onto your member<<if $PC.vagina == 1>> and sliding a hand down to see to your pussy<</if>><</if>> without hesitation. You help her get comfortable and instead of <<if $PC.dick == 0>>grinding<<else>>thrusting<</if>> or telling $him to ride, you just sit there with her in your lap, gently massaging $his <<if $activeSlave.boobs < 900>>big <<else>>huge <</if>> tits. Despite their fine craftsmanship, implants are prone to rendering breasts sore, so $he's soon groaning with relief at the attention you lavish upon them. You finally manage to bring $him to orgasm with almost nothing but delicate stimulation of $his nipples, despite $his implants making them less sensitive than usual. @@.mediumaquamarine;$He has become more trusting of you.@@ + You sit on the couch next to your desk and pat your thighs. $He smiles and comes over, lowering $himself <<if $PC.dick == 0>>into your lap<<else>>onto your member<<if $PC.vagina == 1>> and sliding a hand down to see to your pussy<</if>><</if>> without hesitation. You help $him get comfortable and instead of <<if $PC.dick == 0>>grinding<<else>>thrusting<</if>> or telling $him to ride, you just sit there with $him in your lap, gently massaging $his <<if $activeSlave.boobs < 900>>big <<else>>huge <</if>> tits. Despite their fine craftsmanship, implants are prone to rendering breasts sore, so $he's soon groaning with relief at the attention you lavish upon them. You finally manage to bring $him to orgasm with almost nothing but delicate stimulation of $his nipples, despite $his implants making them less sensitive than usual. @@.mediumaquamarine;$He has become more trusting of you.@@ <<set $activeSlave.trust += 4>> <</replace>> <</link>> @@ -19803,7 +19835,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> $his ass <</if>> - without preamble and seize $his hips. $He braces $himself, knowing what's coming, but soon $he discovers a new disadvantage to $his augmented breasts: even as you pound her hard and grope $his chest, $his tits barely move despite their rough treatment. $His unyielding breasts only encourage you to fuck her harder, in an effort to garner any iota of movement from $his ample chest. + without preamble and seize $his hips. $He braces $himself, knowing what's coming, but soon $he discovers a new disadvantage to $his augmented breasts: even as you pound $him hard and grope $his chest, $his tits barely move despite their rough treatment. $His unyielding breasts only encourage you to fuck $him harder, in an effort to garner any iota of movement from $his ample chest. <<if $activeSlave.dick > 0 && !["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>> <<if canAchieveErection($activeSlave)>> $His cock doesn't help, either, flopping around half-erect as $he vacillates between pain and arousal. @@ -19818,20 +19850,20 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if canDoVaginal($activeSlave) && canDoAnal($activeSlave)>> Even a switch to $his ass does little to slow your thrusts, and so $his breasts continue to rest impassively on $his chest as their owner is buttfucked senseless. <</if>> - You finish with a particularly hard thrust <<if $PC.dick == 0>>and shake with climax<<else>>to spill your seed deep inside her<</if>>, ramming forward hard enough to knock her down to the floor. As you rise, her discomfited form is a pretty sight, with her perfectly rounded breasts + You finish with a particularly hard thrust <<if $PC.dick == 0>>and shake with climax<<else>>to spill your seed deep inside $him<</if>>, ramming forward hard enough to knock $him down to the floor. As you rise, $his discomfited form is a pretty sight, with $his perfectly rounded breasts <<if $activeSlave.belly >= 300000>> neatly stack on top each other <<else>> keeping $his body suspended off the ground <</if>> - and her well fucked butt lewdly relaxed. @@.hotpink;$He has become more submissive.@@ + and $his well fucked butt lewdly relaxed. @@.hotpink;$He has become more submissive.@@ <<set $activeSlave.devotion += 4>> <<= BothVCheck()>> <</replace>> <</link>><<if ($activeSlave.anus == 0 && canDoAnal($activeSlave)) || ($activeSlave.vagina == 0 && canDoVaginal($activeSlave))>> //This option will take virginity//<</if>> <</if>> <<if canDoAnal($activeSlave) || canDoVaginal($activeSlave)>> -<br><<link "Show her off in public">> +<br><<link "Show $him off in public">> <<EventNameDelink $activeSlave>> <<replace "#result">> You bring her out onto the promenade, still nude, her impressively augmented breasts attracting open stares with their perfect roundness and perkiness. @@ -19868,12 +19900,12 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> for standing sex. $He cocks $his hips and takes your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> compliantly, and after a few thrusts you reach down, seize her behind each knee, and <<if $PC.belly >= 5000 && $activeSlave.belly >= 100000>> - collapse against a nearby bunch under the excessive weight between your pregnancy and her _belly stomach. Appreciating the bench's sacrifice, you return to fucking $him. + collapse against a nearby bunch under the excessive weight between your pregnancy and $his _belly stomach. Appreciating the bench's sacrifice, you return to fucking $him. <<if $activeSlave.bellyPreg >= 600000>> Penetrating her while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing her bloated body to rub against you in ways you couldn't imagine. <</if>> <<elseif $activeSlave.belly >= 100000>> - pull her as close as you can with her _belly belly between you. Struggling to support the immense weight, you back her against a rail so that you can continue to fuck her while holding $him. + pull her as close as you can with $his _belly belly between you. Struggling to support the immense weight, you back her against a rail so that you can continue to fuck her while holding $him. <<if $activeSlave.bellyPreg >= 600000>> Penetrating her while feeling so much movement between you is unbelievably lewd. $His children squirm at their mother's excitement, causing her bloated body to rub against you in ways you couldn't imagine. <</if>> @@ -19886,7 +19918,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> boobs, <</if>> - helpless to do anything but let you hold her in midair and fuck $him. + helpless to do anything but let you hold $him in midair and fuck $him. <</if>> <<if canDoVaginal($activeSlave)>> <<if ($activeSlave.vagina > 1)>> @@ -20008,7 +20040,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <</if>> and offers you $his chest. <<if $PC.dick == 1>> - <<if $activeSlave.belly >= 300000>>You have to straddle her _belly stomach to get close enough, but her tantalizing breasts are worth the strain.<</if>> + <<if $activeSlave.belly >= 300000>>You have to straddle $his _belly stomach to get close enough, but her tantalizing breasts are worth the strain.<</if>> You collect some lubrication for it by sticking your dick in $his mouth. <<if $activeSlave.oralSkill >= 100>> $He swallows you to your base, and is such a skilled cocksucker that $he salivates at will, doing her best to get you @@ -20019,7 +20051,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> Deciding to do something a little more intimate than fucking $his cleavage with a strap-on, you walk forward and into her face, pressing her inexorably backwards as $he nuzzles your pussy until $he's forced to collapse onto the ground. Then you scoot backwards a little, until you're <<if $activeSlave.belly >= 10000>> - crammed between her _belly middle and breasts. + crammed between $his _belly middle and breasts. <<else>> straddling her ribcage just below $his breasts. <</if>> @@ -20081,7 +20113,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<replace "#result">> $His <<if canSee($activeSlave)>>eyes widen<<else>>face light up<</if>> with surprise when you <<if $activeSlave.belly >= 300000>> - lean against her _belly stomach. + lean against $his _belly stomach. <<else>> kneel down in front of $him. <</if>> @@ -20281,7 +20313,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t you're going to fuck $his butt<<if $activeSlave.balls>> until $he cums<</if>>. <<= AnalVCheck()>> <<else>> - $he's going to <<if $PC.dick>>suck your dick until you cover her in cum<<else>>eat you out until $he's got your pussyjuice running down her chin<</if>>. + $he's going to <<if $PC.dick>>suck your dick until you cover $him in cum<<else>>eat you out until $he's got your pussyjuice running down her chin<</if>>. <<set $activeSlave.oralCount += 1, $oralTotal += 1>> <</if>> $He giggles at the sudden lewdness, and quickly strips naked again, complimented and @@.hotpink;eager to be used.@@ @@ -20295,7 +20327,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $activeSlave.fetishKnown && $activeSlave.fetish == "humiliation">> blushes cutely. $He looks up at you, sees the way you're staring at $him, and hangs her head, blushing even harder. <<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "buttslut">> - turns around again, bending a little and cocking $his hips to show off the way the string between her buttocks totally fails to conceal her <<if $activeSlave.anus > 2>>huge soft asspussy<<elseif $activeSlave.anus > 1>>nice butthole<<else>>tight little anus<</if>>. + turns around again, bending a little and cocking $his hips to show off the way the string between $his buttocks totally fails to conceal her <<if $activeSlave.anus > 2>>huge soft asspussy<<elseif $activeSlave.anus > 1>>nice butthole<<else>>tight little anus<</if>>. <<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "boobs">> bounces her <<if $activeSlave.boobsImplant>> @@ -20328,7 +20360,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<if $activeSlave.fetishKnown && $activeSlave.fetish == "humiliation">> "I'm ju<<s>>t a worthle<<ss>> humiliation <<s>>lut. I love having <<s>>teel ring<<s>> around my hole<<s>> like thi<<s>>," $he adds. <<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "buttslut">> - $He turns to show you $his asshole, framed by a steel ring that spreads her buttocks to keep it nice and defenseless. "I know my backpu<<ss>>y'<<s>> the be<<s>>t thing about me," $he adds. + $He turns to show you $his asshole, framed by a steel ring that spreads $his buttocks to keep it nice and defenseless. "I know my backpu<<ss>>y'<<s>> the be<<s>>t thing about me," $he adds. <<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "boobs">> $He does her best to thrust out $his chest, making the straps creak. "I know I'm, I'm ju<<s>>t, ju<<s>>t a pair of boob<<s>>," $he adds. <<elseif $activeSlave.fetishKnown && $activeSlave.fetish == "pregnancy" && $activeSlave.bellyPreg >= 1500>> @@ -20389,7 +20421,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t <<else>> across her back <</if>> - and then slide off of $him to instruct your servants to fix the doorframe before they carry $him to her duties for the day. + and then slide off of $him to instruct your servants to fix the doorframe before they carry $him to $his duties for the day. <<set $activeSlave.health -= 20, $activeSlave.trust -= 20>> <</replace>> <</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && canDoAnal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>> diff --git a/src/uncategorized/RESSTR.tw b/src/uncategorized/RESSTR.tw index e24dd368bd3474284a3af3f1cc5ea3ce4dca9154..afb47435ba485bb16e0373bb5424b97707900808 100644 --- a/src/uncategorized/RESSTR.tw +++ b/src/uncategorized/RESSTR.tw @@ -39,39 +39,39 @@ <</if>> <<else>> -<<set $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Next Week">> + <<set $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Next Week">> -/* 000-250-006 */ -<<if $seeImages == 1>> -<<if $imageChoice == 1>> - <div class="imageRef lrgVector"><<SlaveArt $activeSlave 2 0>></div> -<<else>> - <div class="imageRef lrgRender"><<SlaveArt $activeSlave 2 0>></div> -<</if>> -<</if>> -/* 000-250-006 */ + /* 000-250-006 */ + <<if $seeImages == 1>> + <<if $imageChoice == 1>> + <div class="imageRef lrgVector"><<SlaveArt $activeSlave 2 0>></div> + <<else>> + <div class="imageRef lrgRender"><<SlaveArt $activeSlave 2 0>></div> + <</if>> + <</if>> + /* 000-250-006 */ -<<set $desc = SlaveTitle($activeSlave)>> -<<run Enunciate($activeSlave)>> + <<set $desc = SlaveTitle($activeSlave)>> + <<run Enunciate($activeSlave)>> -<<switch $RESSTRevent>> + <<switch $RESSTRevent>> -<<default>> - <br>ERROR: bad RESSTR event $RESSTRevent -<</switch>> + <<default>> + <br>ERROR: bad RESSTR event $RESSTRevent + <</switch>> -<br><br> -<span id="result"> -<<switch $RESSTRevent>> + <br><br> + <span id="result"> + <<switch $RESSTRevent>> -<<default>> - <br>ERROR: bad RESSTR event $RESSTRevent -<</switch>> + <<default>> + <br>ERROR: bad RESSTR event $RESSTRevent + <</switch>> -<<if $cheatMode == 1>> - <br><br>DEBUG: [[Go back to Nonrandom Event|Nonrandom Event][$activeSlave = 0, $eventSlave = 0]] -<</if>> + <<if $cheatMode == 1>> + <br><br>DEBUG: [[Go back to Nonrandom Event|Nonrandom Event][$activeSlave = 0, $eventSlave = 0]] + <</if>> -</span> + </span> <</if>> /* CLOSES EVENT SELECTION */ diff --git a/src/uncategorized/arcadeReport.tw b/src/uncategorized/arcadeReport.tw index 34edfde6d531caaa5eca20508ea071e76a8d301d..369786421d7127fe628547d17a43453f09e6dccf 100644 --- a/src/uncategorized/arcadeReport.tw +++ b/src/uncategorized/arcadeReport.tw @@ -108,7 +108,7 @@ <</if>> <<if ($slaves[$i].geneMods.NCS == 1)>> /* - ** NCS will allow some growth for Arcade milking, but not as much as the Dairy. + ** NCS will allow some growth for Arcade milking, but not as much as the Dairy. */ <<set _growth = Math.trunc(_growth/3.5)>> <</if>> diff --git a/src/uncategorized/arcologyDescription.tw b/src/uncategorized/arcologyDescription.tw index f0ceda1fe02bc8c16d3256a8ece74bebb10463d9..f2131d05aef4974834fdae8ee8208fb6bb2baba7 100644 --- a/src/uncategorized/arcologyDescription.tw +++ b/src/uncategorized/arcologyDescription.tw @@ -39,12 +39,9 @@ Its<<if $weatherCladding == 2>> glorious<<elseif $weatherCladding > 0>> dull<<el <<if ($arcologies[0].FSSupremacistDecoration == 100) || ($arcologies[0].FSSubjugationistDecoration == 100) || ($arcologies[0].FSGenderRadicalistDecoration == 100) || ($arcologies[0].FSGenderFundamentalistDecoration == 100) || ($arcologies[0].FSPaternalistDecoration == 100) || ($arcologies[0].FSDegradationistDecoration == 100) || ($arcologies[0].FSBodyPuristDecoration == 100) || ($arcologies[0].FSTransformationFetishistDecoration == 100) || ($arcologies[0].FSYouthPreferentialistDecoration == 100) || ($arcologies[0].FSMaturityPreferentialistDecoration == 100) || ($arcologies[0].FSSlimnessEnthusiastDecoration == 100) || ($arcologies[0].FSAssetExpansionistDecoration == 100) || ($arcologies[0].FSPastoralistDecoration == 100) || ($arcologies[0].FSPhysicalIdealistDecoration == 100) || ($arcologies[0].FSChattelReligionistDecoration == 100) || ($arcologies[0].FSRomanRevivalistDecoration == 100) || ($arcologies[0].FSAztecRevivalistDecoration == 100) || ($arcologies[0].FSEgyptianRevivalistDecoration == 100) || ($arcologies[0].FSEdoRevivalistDecoration == 100) || ($arcologies[0].FSArabianRevivalistDecoration == 100) || ($arcologies[0].FSChineseRevivalistDecoration == 100) || ($arcologies[0].FSRepopulationFocusDecoration == 100) || ($arcologies[0].FSRestartDecoration == 100) || ($arcologies[0].FSHedonisticDecadenceDecoration == 100)>> Outside the main entrance, there is an enormous statue of an idealized - <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale figure<<else>>male figure<</if>><<else>>female figure<</if>> - with several statues of nude slaves at its feet. + <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure with several statues of nude slaves at its feet. <<if $arcologies[0].FSSupremacistDecoration == 100>> - The central - <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale figure<<else>>male figure<</if>><<else>>female figure<</if>> - has distinctly $arcologies[0].FSSupremacistRace features. + The central <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure has distinctly $arcologies[0].FSSupremacistRace features. <</if>> <<if $arcologies[0].FSSubjugationistDecoration == 100>> The slaves have exaggerated $arcologies[0].FSSubjugationistRace features. @@ -56,8 +53,7 @@ Its<<if $weatherCladding == 2>> glorious<<elseif $weatherCladding > 0>> dull<<el The slaves are all perfectly female. <</if>> <<if $arcologies[0].FSPaternalistDecoration == 100>> - The slaves are gazing adoringly up at the central - <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale figure<<else>>male figure<</if>><<else>>female figure<</if>>. + The slaves are gazing adoringly up at the central <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure. <</if>> <<if $arcologies[0].FSDegradationistDecoration == 100>> The slaves are cowering, and are wearing chains. @@ -90,7 +86,9 @@ Its<<if $weatherCladding == 2>> glorious<<elseif $weatherCladding > 0>> dull<<el <<if $arcologies[0].FSRestartDecoration == 100>> The central <<if ($PC.dick == 1) && ($PC.vagina == 1)>> - shemale figure's balls are oversized and her stomach slightly rounded, + futanari figure's balls are oversized and her stomach slightly rounded, + <<elseif ($PC.dick == 1) && ($PC.boobs == 1)>> + shemale figure's balls are swollen with virile seed, <<elseif ($PC.dick == 1)>> male figure's balls are swollen with virile seed, <<else>> @@ -103,34 +101,29 @@ Its<<if $weatherCladding == 2>> glorious<<elseif $weatherCladding > 0>> dull<<el <</if>> <<if $arcologies[0].FSPhysicalIdealistDecoration == 100>> Both the central - <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale figure<<else>>male figure<</if>><<else>>female figure<</if>> - and the slaves are <<if $arcologies[0].FSPhysicalIdealistLaw == 1>>quite fit<<else>>very muscular<</if>>. + <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure and the slaves are <<if $arcologies[0].FSPhysicalIdealistLaw == 1>>quite fit<<else>>very muscular<</if>>. <</if>> <<if $arcologies[0].FSHedonisticDecadenceDecoration == 100>> The central - <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale figure<<else>>male figure<</if>><<else>>female figure<</if>> - has a distinct softness to its body, while the slaves are delightfully rotund. + <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure has a distinct softness to its body, while the slaves are delightfully rotund. <</if>> <<if $arcologies[0].FSChattelReligionistDecoration == 100>> The central - <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale figure<<else>>male figure<</if>><<else>>female figure<</if>> has a halo behind <<if $PC.title == 1>>his<<else>>her<</if>> head, and the slaves are in attitudes of worship. + <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure has a halo behind <<if $PC.title == 1>>his<<else>>her<</if>> head, and the slaves are in attitudes of worship. <</if>> <<if $arcologies[0].FSRomanRevivalistDecoration == 100>> The central - <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale figure<<else>>male figure<</if>><<else>>female figure<</if>> is wearing a toga; <<if $PC.title == 1>>he<<else>>she<</if>> has a laurel wreath about <<if $PC.title == 1>>his<<else>>her<</if>> brow. + <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure is wearing a toga; <<if $PC.title == 1>>he<<else>>she<</if>> has a laurel wreath about <<if $PC.title == 1>>his<<else>>her<</if>> brow. <</if>> <<if $arcologies[0].FSAztecRevivalistDecoration == 100>> The central - <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale figure<<else>>male figure<</if>><<else>>female figure<</if>> is wearing a feathered cloak, ornamented with jewels; <<if $PC.title == 1>>he<<else>>she<</if>> has a giant headdress on <<if $PC.title == 1>>his<<else>>her<</if>> head. + <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure is wearing a feathered cloak, ornamented with jewels; <<if $PC.title == 1>>he<<else>>she<</if>> has a giant headdress on <<if $PC.title == 1>>his<<else>>her<</if>> head. <</if>> <<if $arcologies[0].FSEgyptianRevivalistDecoration == 100>> - The central - <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale figure<<else>>male figure<</if>><<else>>female figure<</if>> is wearing a pharaoh's crown. + The central <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure is wearing a pharaoh's crown. <</if>> <<if $arcologies[0].FSEdoRevivalistDecoration == 100>> - The central - <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale figure<<else>>male figure<</if>><<else>>female figure<</if>> - figure has a hand resting confidently on the hilts of the sheathed katana and wakizashi + The central <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure has a hand resting confidently on the hilts of the sheathed katana and wakizashi <<if ($PC.title == 1)>> he <<else>> @@ -145,12 +138,10 @@ Its<<if $weatherCladding == 2>> glorious<<elseif $weatherCladding > 0>> dull<<el waist. <</if>> <<if $arcologies[0].FSArabianRevivalistDecoration == 100>> - The central - <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale figure<<else>>male figure<</if>><<else>>female figure<</if>> is wearing a turban and flowing robes. + The central <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure is wearing a turban and flowing robes. <</if>> <<if $arcologies[0].FSChineseRevivalistDecoration == 100>> - The central - <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale figure<<else>>male figure<</if>><<else>>female figure<</if>> is wearing the robes of an ancient Chinese + The central <<if ($PC.dick == 1)>><<if ($PC.vagina == 1)>>futanari<<elseif ($PC.boobs == 1)>>shemale<<else>>male<</if>><<else>>female<</if>> figure is wearing the robes of an ancient Chinese <<if ($PC.title == 1)>> Emperor. <<else>> diff --git a/src/uncategorized/arcologyOpinion.tw b/src/uncategorized/arcologyOpinion.tw index 7495c6dba98ab06ad88a28dff399919491477abd..010b2780402d22934d07dd212e15204e619d5f5c 100644 --- a/src/uncategorized/arcologyOpinion.tw +++ b/src/uncategorized/arcologyOpinion.tw @@ -182,57 +182,57 @@ <<set $opinion -= $targetArcology.FSNull>> <</if>> <<elseif $activeArcology.FSNull != "unset">> - <<if $targetArcology.FSNull != "unset">> - <<set $opinion += $activeArcology.FSNull>> - <<set $opinion += $targetArcology.FSNull>> - <<elseif $targetArcology.FSChattelReligionist != "unset">> - <<set $opinion -= $activeArcology.FSNull>> - <<set $opinion -= $targetArcology.FSChattelReligionist>> - <<else>> - <<set $opinion += $activeArcology.FSNull>> - <</if>> + <<if $targetArcology.FSNull != "unset">> + <<set $opinion += $activeArcology.FSNull>> + <<set $opinion += $targetArcology.FSNull>> + <<elseif $targetArcology.FSChattelReligionist != "unset">> + <<set $opinion -= $activeArcology.FSNull>> + <<set $opinion -= $targetArcology.FSChattelReligionist>> + <<else>> + <<set $opinion += $activeArcology.FSNull>> + <</if>> <<elseif $targetArcology.FSNull != "unset">> - <<set $opinion += $targetArcology.FSNull>> + <<set $opinion += $targetArcology.FSNull>> <</if>> <<if $activeArcology.FSRomanRevivalist != "unset">> <<if $targetArcology.FSRomanRevivalist != "unset">> - <<set $opinion += $activeArcology.FSRomanRevivalist>> - <<set $opinion += $targetArcology.FSRomanRevivalist>> + <<set $opinion += $activeArcology.FSRomanRevivalist>> + <<set $opinion += $targetArcology.FSRomanRevivalist>> <<elseif $targetArcology.FSAztecRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSRomanRevivalist>> - <<set $opinion -= $targetArcology.FSAztecRevivalist>> + <<set $opinion -= $activeArcology.FSRomanRevivalist>> + <<set $opinion -= $targetArcology.FSAztecRevivalist>> <<elseif $targetArcology.FSEgyptianRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSRomanRevivalist>> - <<set $opinion -= $targetArcology.FSEgyptianRevivalist>> + <<set $opinion -= $activeArcology.FSRomanRevivalist>> + <<set $opinion -= $targetArcology.FSEgyptianRevivalist>> <<elseif $targetArcology.FSEdoRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSRomanRevivalist>> - <<set $opinion -= $targetArcology.FSEdoRevivalist>> + <<set $opinion -= $activeArcology.FSRomanRevivalist>> + <<set $opinion -= $targetArcology.FSEdoRevivalist>> <<elseif $targetArcology.FSArabianRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSRomanRevivalist>> - <<set $opinion -= $targetArcology.FSArabianRevivalist>> + <<set $opinion -= $activeArcology.FSRomanRevivalist>> + <<set $opinion -= $targetArcology.FSArabianRevivalist>> <<elseif $targetArcology.FSChineseRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSRomanRevivalist>> - <<set $opinion -= $targetArcology.FSChineseRevivalist>> + <<set $opinion -= $activeArcology.FSRomanRevivalist>> + <<set $opinion -= $targetArcology.FSChineseRevivalist>> <</if>> <<elseif $activeArcology.FSAztecRevivalist != "unset">> <<if $targetArcology.FSAztecRevivalist != "unset">> - <<set $opinion += $activeArcology.FSAztecRevivalist>> - <<set $opinion += $targetArcology.FSAztecRevivalist>> + <<set $opinion += $activeArcology.FSAztecRevivalist>> + <<set $opinion += $targetArcology.FSAztecRevivalist>> <<elseif $targetArcology.FSRomanRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSAztecRevivalist>> - <<set $opinion -= $targetArcology.FSRomanRevivalist>> + <<set $opinion -= $activeArcology.FSAztecRevivalist>> + <<set $opinion -= $targetArcology.FSRomanRevivalist>> <<elseif $targetArcology.FSEgyptianRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSAztecRevivalist>> - <<set $opinion -= $targetArcology.FSEgyptianRevivalist>> + <<set $opinion -= $activeArcology.FSAztecRevivalist>> + <<set $opinion -= $targetArcology.FSEgyptianRevivalist>> <<elseif $targetArcology.FSEdoRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSAztecRevivalist>> - <<set $opinion -= $targetArcology.FSEdoRevivalist>> + <<set $opinion -= $activeArcology.FSAztecRevivalist>> + <<set $opinion -= $targetArcology.FSEdoRevivalist>> <<elseif $targetArcology.FSArabianRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSAztecRevivalist>> - <<set $opinion -= $targetArcology.FSArabianRevivalist>> + <<set $opinion -= $activeArcology.FSAztecRevivalist>> + <<set $opinion -= $targetArcology.FSArabianRevivalist>> <<elseif $targetArcology.FSChineseRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSAztecRevivalist>> - <<set $opinion -= $targetArcology.FSChineseRevivalist>> + <<set $opinion -= $activeArcology.FSAztecRevivalist>> + <<set $opinion -= $targetArcology.FSChineseRevivalist>> <</if>> <<elseif $activeArcology.FSEgyptianRevivalist != "unset">> <<if $targetArcology.FSEgyptianRevivalist != "unset">> @@ -260,63 +260,63 @@ <</if>> <<elseif $activeArcology.FSEdoRevivalist != "unset">> <<if $targetArcology.FSEdoRevivalist != "unset">> - <<set $opinion += $activeArcology.FSEdoRevivalist>> - <<set $opinion += $targetArcology.FSEdoRevivalist>> + <<set $opinion += $activeArcology.FSEdoRevivalist>> + <<set $opinion += $targetArcology.FSEdoRevivalist>> <<elseif $targetArcology.FSEgyptianRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSEdoRevivalist>> - <<set $opinion -= $targetArcology.FSEgyptianRevivalist>> + <<set $opinion -= $activeArcology.FSEdoRevivalist>> + <<set $opinion -= $targetArcology.FSEgyptianRevivalist>> <<elseif $targetArcology.FSRomanRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSEdoRevivalist>> - <<set $opinion -= $targetArcology.FSRomanRevivalist>> + <<set $opinion -= $activeArcology.FSEdoRevivalist>> + <<set $opinion -= $targetArcology.FSRomanRevivalist>> <<elseif $targetArcology.FSAztecRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSEdoRevivalist>> - <<set $opinion -= $targetArcology.FSAztecRevivalist>> + <<set $opinion -= $activeArcology.FSEdoRevivalist>> + <<set $opinion -= $targetArcology.FSAztecRevivalist>> <<elseif $targetArcology.FSArabianRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSEdoRevivalist>> - <<set $opinion -= $targetArcology.FSArabianRevivalist>> + <<set $opinion -= $activeArcology.FSEdoRevivalist>> + <<set $opinion -= $targetArcology.FSArabianRevivalist>> <<elseif $targetArcology.FSChineseRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSEdoRevivalist>> - <<set $opinion -= $targetArcology.FSChineseRevivalist>> + <<set $opinion -= $activeArcology.FSEdoRevivalist>> + <<set $opinion -= $targetArcology.FSChineseRevivalist>> <</if>> <<elseif $activeArcology.FSArabianRevivalist != "unset">> <<if $targetArcology.FSArabianRevivalist != "unset">> - <<set $opinion += $activeArcology.FSArabianRevivalist>> - <<set $opinion += $targetArcology.FSArabianRevivalist>> + <<set $opinion += $activeArcology.FSArabianRevivalist>> + <<set $opinion += $targetArcology.FSArabianRevivalist>> <<elseif $targetArcology.FSEgyptianRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSArabianRevivalist>> - <<set $opinion -= $targetArcology.FSEgyptianRevivalist>> + <<set $opinion -= $activeArcology.FSArabianRevivalist>> + <<set $opinion -= $targetArcology.FSEgyptianRevivalist>> <<elseif $targetArcology.FSEdoRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSArabianRevivalist>> - <<set $opinion -= $targetArcology.FSEdoRevivalist>> + <<set $opinion -= $activeArcology.FSArabianRevivalist>> + <<set $opinion -= $targetArcology.FSEdoRevivalist>> <<elseif $targetArcology.FSRomanRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSArabianRevivalist>> - <<set $opinion -= $targetArcology.FSRomanRevivalist>> + <<set $opinion -= $activeArcology.FSArabianRevivalist>> + <<set $opinion -= $targetArcology.FSRomanRevivalist>> <<elseif $targetArcology.FSAztecRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSArabianRevivalist>> - <<set $opinion -= $targetArcology.FSAztecRevivalist>> + <<set $opinion -= $activeArcology.FSArabianRevivalist>> + <<set $opinion -= $targetArcology.FSAztecRevivalist>> <<elseif $targetArcology.FSChineseRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSArabianRevivalist>> - <<set $opinion -= $targetArcology.FSChineseRevivalist>> + <<set $opinion -= $activeArcology.FSArabianRevivalist>> + <<set $opinion -= $targetArcology.FSChineseRevivalist>> <</if>> <<elseif $activeArcology.FSChineseRevivalist != "unset">> <<if $targetArcology.FSChineseRevivalist != "unset">> - <<set $opinion += $activeArcology.FSChineseRevivalist>> - <<set $opinion += $targetArcology.FSChineseRevivalist>> + <<set $opinion += $activeArcology.FSChineseRevivalist>> + <<set $opinion += $targetArcology.FSChineseRevivalist>> <<elseif $targetArcology.FSEgyptianRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSChineseRevivalist>> - <<set $opinion -= $targetArcology.FSEgyptianRevivalist>> + <<set $opinion -= $activeArcology.FSChineseRevivalist>> + <<set $opinion -= $targetArcology.FSEgyptianRevivalist>> <<elseif $targetArcology.FSEdoRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSChineseRevivalist>> - <<set $opinion -= $targetArcology.FSEdoRevivalist>> + <<set $opinion -= $activeArcology.FSChineseRevivalist>> + <<set $opinion -= $targetArcology.FSEdoRevivalist>> <<elseif $targetArcology.FSArabianRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSChineseRevivalist>> - <<set $opinion -= $targetArcology.FSArabianRevivalist>> + <<set $opinion -= $activeArcology.FSChineseRevivalist>> + <<set $opinion -= $targetArcology.FSArabianRevivalist>> <<elseif $targetArcology.FSRomanRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSChineseRevivalist>> - <<set $opinion -= $targetArcology.FSRomanRevivalist>> + <<set $opinion -= $activeArcology.FSChineseRevivalist>> + <<set $opinion -= $targetArcology.FSRomanRevivalist>> <<elseif $targetArcology.FSAztecRevivalist != "unset">> - <<set $opinion -= $activeArcology.FSChineseRevivalist>> - <<set $opinion -= $targetArcology.FSAztecRevivalist>> + <<set $opinion -= $activeArcology.FSChineseRevivalist>> + <<set $opinion -= $targetArcology.FSAztecRevivalist>> <</if>> <</if>> <<if $activeArcology.FSIncestFetishist != "unset">> diff --git a/src/uncategorized/bodyModification.tw b/src/uncategorized/bodyModification.tw index 4ad209d4b5974701cfa124f5aa75431b11bf943f..0bf3e963e73059ab7dcef7a6dd62d298f77ab124 100644 --- a/src/uncategorized/bodyModification.tw +++ b/src/uncategorized/bodyModification.tw @@ -966,7 +966,7 @@ Choose a site for branding: <<set $degradation += 10>> <<goto "Body Modification">> <</link>> - $brandTarget, the + $brandTarget, the <<link "right">> <<set $brandApplied = 1>> <<set $activeSlave.brand = $brandDesign>> @@ -974,7 +974,8 @@ Choose a site for branding: <<set $cash -= $modCost>> <<set $degradation += 10>> <<goto "Body Modification">> - <</link>> $brandTarget, or + <</link>> + $brandTarget, or <<link "both">> <<set $brandApplied = 1>> <<set $activeSlave.brand = $brandDesign>> diff --git a/src/uncategorized/cellblock.tw b/src/uncategorized/cellblock.tw index 371f3c943d44b89f0704d7b26d37a066e59e5532..c3b04695e4c778ac58dacb8bbf483e76e7ddaecc 100644 --- a/src/uncategorized/cellblock.tw +++ b/src/uncategorized/cellblock.tw @@ -2,6 +2,10 @@ <<set $nextButton = "Back to Main", $nextLink = "Main", $returnTo = "Cellblock", $showEncyclopedia = 1, $encyclopedia = "Cellblock", $cellblockSlaves = $CellBiIDs.length>> +<<if $Wardeness != 0>> + <<setLocalPronouns $Wardeness>> +<</if>> + <<if $cellblockName != "the Cellblock">> <<set $cellblockNameCaps = $cellblockName.replace("the ", "The ")>> <</if>> @@ -101,9 +105,9 @@ $cellblockNameCaps <<if $Wardeness != 0 && canPenetrate($Warden)>> <br><br> <<if $cellblockWardenCumsInside == 1>> - $Warden.slaveName is permitted to cum inside her inmates when she disciplines them. [[Forbid her from cumming inside|Cellblock][$cellblockWardenCumsInside = 0]] + $Warden.slaveName is permitted to cum inside $his inmates when $he disciplines them. [["Forbid " + $him + " from cumming inside"|Cellblock][$cellblockWardenCumsInside = 0]] <<else>> - $Warden.slaveName is not permitted to cum inside her inmates. [[Let her cum inside|Cellblock][$cellblockWardenCumsInside = 1]] //May result in pregnancies// + $Warden.slaveName is not permitted to cum inside $his inmates. [["Let " + $him + " cum inside"|Cellblock][$cellblockWardenCumsInside = 1]] //May result in pregnancies// <</if>> <</if>> diff --git a/src/uncategorized/clinic.tw b/src/uncategorized/clinic.tw index 4efc6d384329092ace41014eb0a9b2b850681691..d710151dfed4fec0361dbdd58d4fa256af3b4e47 100644 --- a/src/uncategorized/clinic.tw +++ b/src/uncategorized/clinic.tw @@ -25,7 +25,7 @@ $clinicNameCaps <<case "Degradationist">> is clean and cold, all scrubbed tile and cool steel. The beds have prominent restraint attachment points to force patients into any position desired. <<case "Repopulation Focus">> - is warm and inviting, with wide corridors and ample seating for its pregnant clientele. All the equipment is designed to accommodate heavily pregnant women. + is warm and inviting, with wide corridors and ample seating for its pregnant clientèle. All the equipment is designed to accommodate heavily pregnant women. <<case "Eugenics">> is warm and inviting on one side, cold and utilitarian on the other. Only the toys of the elite are allowed the best of care. <<case "Asset Expansionist">> diff --git a/src/uncategorized/corporateMarket.tw b/src/uncategorized/corporateMarket.tw index 57faca6f375264d4853c63d7794d38545fead1e2..1f5d4f75015384fc5bd6a0849b14eb73e020c393 100644 --- a/src/uncategorized/corporateMarket.tw +++ b/src/uncategorized/corporateMarket.tw @@ -82,16 +82,17 @@ while you browse. <<set $slaveCost *= 0.9>> <</if>> +<<setLocalPronouns $activeSlave>> <<set $slaveCost = 500*Math.trunc($slaveCost/500)>> The offered price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> <br> <<if $cash >= $slaveCost>> - [[Buy her slave contract|New Slave Intro][$cash -= $slaveCost,$nextButton = "Continue",$nextLink = "AS Dump",$returnTo = "Main"]] + [["Buy " + $his + " slave contract"|New Slave Intro][$cash -= $slaveCost,$nextButton = "Continue",$nextLink = "AS Dump",$returnTo = "Main"]] <<else>> //You lack the necessary funds to buy this slave.// <</if>> <br> -[[Decline to purchase her and check out another slave|Corporate Market][$slavesSeen += 1]] +[["Decline to purchase " + $him + " and check out another slave"|Corporate Market][$slavesSeen += 1]] <br><br> <<set $saleDescription = 1, $applyLaw = 1>><<include "Long Slave Description">> diff --git a/src/uncategorized/corporationDevelopments.tw b/src/uncategorized/corporationDevelopments.tw index 6fbe489d2ab98ad4905351f31495cb8f3e91598d..ff032dd8819d3a3cc03378845d60d004f51fac6d 100644 --- a/src/uncategorized/corporationDevelopments.tw +++ b/src/uncategorized/corporationDevelopments.tw @@ -115,7 +115,11 @@ Since it is <<elseif _dividendPerShare > 0.1>> <<set _multplier = 0.1>> modestly profitable, a small dividend of @@.yellowgreen;¤0.1@@ <<elseif $corpProfit > 0>> <<set _multplier = 1+Math.ceil(($corpProfit*0.2*$personalShares)/_totalShares)>> +<<<<<<< HEAD barely profitable, a meager dividend +======= + bearly profitable, a meager dividend +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <</if>> <<if _dividendPerShare >= 0.1>>/share<</if>> was paid out to stockholders; you received @@.yellowgreen;<<if _dividendPerShare >= 0.1>> <<print cashFormat($personalShares*_multplier)>> <<else>> <<print cashFormat(_multplier)>> <</if>>@@. <<if _dividendPerShare >= 0.1>> diff --git a/src/uncategorized/economics.tw b/src/uncategorized/economics.tw index 5cb8b8f5f8585be6b5fe4dc5ce35a530ac5c5e20..3b0057f1c6af874154a3b79185d32591decbdc89 100644 --- a/src/uncategorized/economics.tw +++ b/src/uncategorized/economics.tw @@ -27,19 +27,19 @@ <<if $corpAnnounced == 1>> <br> <<if $corpIncorporated == 0>> - <span id="incorporate"> - You have not yet committed funds to create a publicly traded slave trading corporation. <<link "Lay the groundwork for incorporation">><<set $corpIncorporated = 1>><<set $sharePrice = 10>><<set $oldSharePrice = $sharePrice>><<set $personalShares = 2000>><<set $cash -= 30000>><<set $publicShares = 1000>><<set $corpCash = 20000>><<set $generalAssets = 500>><<set $slaveAssets = 1000>><<set $entrapmentAssets = 500>><<set $captureAssets = 500>><<set $trainingAssets = 500>><<set $surgicalAssets = 500>><<set $drugAssets = 500>><<replace "#incorporate">><<print "The groundwork has been laid for the incorporation of a publicly traded slave trading corporation. The IPO will involve 1000 shares at <<print cashFormat(10)>>/share.">><</replace>><</link>> //Costs <<print cashFormat(30000)>>// - </span> + <span id="incorporate"> + You have not yet committed funds to create a publicly traded slave trading corporation. <<link "Lay the groundwork for incorporation">><<set $corpIncorporated = 1>><<set $sharePrice = 10>><<set $oldSharePrice = $sharePrice>><<set $personalShares = 2000>><<set $cash -= 30000>><<set $publicShares = 1000>><<set $corpCash = 20000>><<set $generalAssets = 500>><<set $slaveAssets = 1000>><<set $entrapmentAssets = 500>><<set $captureAssets = 500>><<set $trainingAssets = 500>><<set $surgicalAssets = 500>><<set $drugAssets = 500>><<replace "#incorporate">><<print "The groundwork has been laid for the incorporation of a publicly traded slave trading corporation. The IPO will involve 1000 shares at <<print cashFormat(10)>>/share.">><</replace>><</link>> //Costs <<print cashFormat(30000)>>// + </span> <<else>> - <<include "Corporation Developments">> + <<include "Corporation Developments">> <</if>> <br><br> <</if>> <<include "Reputation">> <<if $secExp == 1>> -<br><br> -<<include "authorityReport">> + <br><br> + <<include "authorityReport">> <</if>> <br><br> @@ -47,8 +47,8 @@ <<include "Arcology Management">> <<if ($PC.boobs == 1 && $PC.boobsBonus > 0) || $PC.pregKnown == 1 || $playerAging != 0>> -<br><br> -<<include "Personal Notes">> + <br><br> + <<include "Personal Notes">> <</if>> <<if $FSAnnounced > 0>> @@ -58,7 +58,7 @@ <br><br> <<if $secExp == 1>> -<<include "securityReport">> + <<include "securityReport">> <</if>> <<else>> @@ -66,57 +66,57 @@ <body> <div class="tab"> - <button class="tablinks" onclick="opentab(event, 'Arcologies')" id="defaultOpen">Arcologies</button> - <button class="tablinks" onclick="opentab(event, 'Business')">Personal Business</button> + <button class="tablinks" onclick="opentab(event, 'Arcologies')" id="defaultOpen">Arcologies</button> + <button class="tablinks" onclick="opentab(event, 'Business')">Personal Business</button> <<if $corpAnnounced == 1>> - <button class="tablinks" onclick="opentab(event, 'Corporation')">Corporation</button> + <button class="tablinks" onclick="opentab(event, 'Corporation')">Corporation</button> <</if>> <button class="tablinks" onclick="opentab(event, 'Reputation')">Reputation</button> <<if $secExp == 1>> - <button class="tablinks" onclick="opentab(event, 'Authority')">Authority</button> + <button class="tablinks" onclick="opentab(event, 'Authority')">Authority</button> <</if>> <button class="tablinks" onclick="opentab(event, 'Management')">Arcology Management</button> <<if ($PC.boobs == 1 && $PC.boobsBonus > 0) || $PC.pregKnown == 1 || $playerAging != 0>> - <button class="tablinks" onclick="opentab(event, 'Personal')">Personal Notes</button> + <button class="tablinks" onclick="opentab(event, 'Personal')">Personal Notes</button> <</if>> <<if $FSAnnounced > 0>> - <button class="tablinks" onclick="opentab(event, 'Societies')">Society Development</button> + <button class="tablinks" onclick="opentab(event, 'Societies')">Society Development</button> <</if>> <<if $secExp == 1>> - <button class="tablinks" onclick="opentab(event, 'securityReport')">Security</button> + <button class="tablinks" onclick="opentab(event, 'securityReport')">Security</button> <</if>> </div> <div id="Arcologies" class="tabcontent"> - <div class="content"> - <<include "Neighbors Development">> + <div class="content"> + <<include "Neighbors Development">> </div> </div> <div id="Business" class="tabcontent"> -<div class="content"> -<<include "Personal Business">> -</div> + <div class="content"> + <<include "Personal Business">> + </div> </div> <<if $corpAnnounced == 1>> -<div id="Corporation" class="tabcontent"> -<div class="content"> -<<if $corpIncorporated == 0>> -<span id="incorporate"> -You have not yet committed funds to create a publicly traded slave trading corporation. <<link "Lay the groundwork for incorporation">><<set $corpIncorporated = 1>><<set $sharePrice = 10>><<set $oldSharePrice = $sharePrice>><<set $personalShares = 2000>><<set $cash -= 30000>><<set $publicShares = 1000>><<set $corpCash = 20000>><<set $generalAssets = 500>><<set $slaveAssets = 1000>><<set $entrapmentAssets = 500>><<set $captureAssets = 500>><<set $trainingAssets = 500>><<set $surgicalAssets = 500>><<set $drugAssets = 500>><<replace "#incorporate">><<print "The groundwork has been laid for the incorporation of a publicly traded slave trading corporation. The IPO will involve 1000 shares at <<print cashFormat(10)>>/share.">><</replace>><</link>> //Costs <<print cashFormat(30000)>>// -</span> -<<else>> -<<include "Corporation Developments">> -<</if>> -</div> -</div> + <div id="Corporation" class="tabcontent"> + <div class="content"> + <<if $corpIncorporated == 0>> + <span id="incorporate"> + You have not yet committed funds to create a publicly traded slave trading corporation. <<link "Lay the groundwork for incorporation">><<set $corpIncorporated = 1>><<set $sharePrice = 10>><<set $oldSharePrice = $sharePrice>><<set $personalShares = 2000>><<set $cash -= 30000>><<set $publicShares = 1000>><<set $corpCash = 20000>><<set $generalAssets = 500>><<set $slaveAssets = 1000>><<set $entrapmentAssets = 500>><<set $captureAssets = 500>><<set $trainingAssets = 500>><<set $surgicalAssets = 500>><<set $drugAssets = 500>><<replace "#incorporate">><<print "The groundwork has been laid for the incorporation of a publicly traded slave trading corporation. The IPO will involve 1000 shares at <<print cashFormat(10)>>/share.">><</replace>><</link>> //Costs <<print cashFormat(30000)>>// + </span> + <<else>> + <<include "Corporation Developments">> + <</if>> + </div> + </div> <</if>> <div id="Reputation" class="tabcontent"> -<div class="content"> -<<include "Reputation">> -</div> + <div class="content"> + <<include "Reputation">> + </div> </div> <div id="Authority" class="tabcontent"> @@ -126,9 +126,9 @@ You have not yet committed funds to create a publicly traded slave trading corpo </div> <div id="Management" class="tabcontent"> -<div class="content"> -<<include "Arcology Management">> -</div> + <div class="content"> + <<include "Arcology Management">> + </div> </div> <<if ($PC.boobs == 1 && $PC.boobsBonus > 0) || $PC.pregKnown == 1 || $playerAging != 0>> @@ -148,9 +148,9 @@ You have not yet committed funds to create a publicly traded slave trading corpo <</if>> <div id="securityReport" class="tabcontent"> -<div class="content"> -<<include "securityReport">> -</div> + <div class="content"> + <<include "securityReport">> + </div> </div> <script> diff --git a/src/uncategorized/endWeek.tw b/src/uncategorized/endWeek.tw index 99a0b88f8958f0062001ffe67ab97cbfed83aa7e..e55ac26e04d6586e2bf13613b8058fa1b77bbfb8 100644 --- a/src/uncategorized/endWeek.tw +++ b/src/uncategorized/endWeek.tw @@ -96,16 +96,16 @@ /% Begin section: ensure minimum age is set (game may have been loaded from a non-modded version). %/ <<if $minimumSlaveAge <= 18 && $minimumSlaveAge > 0>> <<else>> - <<set $minimumSlaveAge = 18>> - <<set $pedo_mode = 0>> - <<if $fertilityAge <= 18 && $fertilityAge > 0>> - <<else>> - <<set $fertilityAge = 13>> - <</if>> - <<if $potencyAge <= 18 && $potencyAge > 0>> - <<else>> - <<set $potencyAge = 13>> - <</if>> + <<set $minimumSlaveAge = 18>> + <<set $pedo_mode = 0>> + <<if $fertilityAge <= 18 && $fertilityAge > 0>> + <<else>> + <<set $fertilityAge = 13>> + <</if>> + <<if $potencyAge <= 18 && $potencyAge > 0>> + <<else>> + <<set $potencyAge = 13>> + <</if>> <</if>> /% End section: ensure minimum age is set. %/ diff --git a/src/uncategorized/fsDevelopments.tw b/src/uncategorized/fsDevelopments.tw index 6a61a36ab3965195bdd95c90c240b1a66a617715..7e4504e588da4db8e0ed1808fd1ac8813436e5e4 100644 --- a/src/uncategorized/fsDevelopments.tw +++ b/src/uncategorized/fsDevelopments.tw @@ -7,8 +7,8 @@ [6000,9000,12000,15000], [6000,9000,12000,15000,18000], [6000,9000,12000,15000,17000,19000]]>> -<<set _FSRepDescriptors = ["solid","high","remarkable","great","excellent","unparalleled"]>> -<<set _ordinalNames = ["second","third","fourth","fifth","sixth","seventh"]>> +<<set _FSRepDescriptors = ["solid", "high", "remarkable", "great", "excellent", "unparalleled"]>> +<<set _ordinalNames = ["second", "third", "fourth", "fifth", "sixth", "seventh"]>> <<if $FSCredits > 0>> @@.yellow;$arcologies[0].name's society is ready to begin accepting a new societal direction.@@ <</if>> diff --git a/src/uncategorized/futureSociety.tw b/src/uncategorized/futureSociety.tw index c56784c23f67f520292e60b9da804632b08b9fbd..cc600d07e4783610c79da0ef1be73129fe7a1d6a 100644 --- a/src/uncategorized/futureSociety.tw +++ b/src/uncategorized/futureSociety.tw @@ -203,23 +203,23 @@ <</if>> <<if $arcologies[0].FSRepopulationFocus >= $FSLockinLevel>> - $arcologies[0].name believes implicitly that all women should be pregnant. + $arcologies[0].name believes implicitly that all women should be pregnant. <<elseif $arcologies[0].FSRepopulationFocus >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly that all women should be pregnant. + $arcologies[0].name agrees strongly that all women should be pregnant. <<elseif $arcologies[0].FSRepopulationFocus >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to the idea that all women should be pregnant. + $arcologies[0].name is sympathetic to the idea that all women should be pregnant. <<elseif $arcologies[0].FSRepopulationFocus != "unset">> - $arcologies[0].name is unconvinced that all women should be pregnant. + $arcologies[0].name is unconvinced that all women should be pregnant. <</if>> <<if $arcologies[0].FSRestart >= $FSLockinLevel>> - $arcologies[0].name believes implicitly that only the elite should reproduce. + $arcologies[0].name believes implicitly that only the elite should reproduce. <<elseif $arcologies[0].FSRestart >= $FSLockinLevel*0.6>> - $arcologies[0].name agrees strongly that only the elite should reproduce. + $arcologies[0].name agrees strongly that only the elite should reproduce. <<elseif $arcologies[0].FSRestart >= $FSLockinLevel*0.3>> - $arcologies[0].name is sympathetic to the idea only the elite should reproduce. + $arcologies[0].name is sympathetic to the idea only the elite should reproduce. <<elseif $arcologies[0].FSRestart != "unset">> - $arcologies[0].name is unconvinced that only the elite should reproduce. + $arcologies[0].name is unconvinced that only the elite should reproduce. <</if>> <<if $arcologies[0].FSGenderRadicalist >= $FSLockinLevel>> @@ -617,7 +617,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc <<if $arcologies[0].FSSubjugationist != "unset" && $arcologies[0].FSSubjugationistRace == "semitic">>It is established that semites are inferior.<<elseif $arcologies[0].FSSupremacistRace != "semitic">>[[Semitic|Future Society][$arcologies[0].FSSupremacistRace = "semitic"]]<<else>>Semitic<</if>> | <<if $arcologies[0].FSSubjugationist != "unset" && $arcologies[0].FSSubjugationistRace == "mixed race">>It is established that those with mixed blood are inferior.<<elseif $arcologies[0].FSSupremacistRace != "mixed race">>[[Mixed Race|Future Society][$arcologies[0].FSSupremacistRace = "mixed race"]]<<else>>Mixed Race<</if>> <<else>> - /*//''Racial supremacism'': a belief in the superiority of a chosen race.//*/ + /*//''Racial Supremacism'': a belief in the superiority of a chosen race.//*/ <</if>> <</if>> @@ -646,7 +646,7 @@ You are spending <<print cashFormat($FSSpending)>> each week to support your soc <<if $arcologies[0].FSSupremacist != "unset" && $arcologies[0].FSSupremacistRace == "semitic">>It is established that semites are superior.<<elseif $arcologies[0].FSSubjugationistRace != "semitic">>[[Semitic|Future Society][$arcologies[0].FSSubjugationistRace = "semitic"]]<<else>>Semitic<</if>> | <<if $arcologies[0].FSSupremacist != "unset" && $arcologies[0].FSSupremacistRace == "mixed race">>It is established that those with mixed blood are superior.<<elseif $arcologies[0].FSSubjugationistRace != "mixed race">>[[Mixed Race|Future Society][$arcologies[0].FSSubjugationistRace = "mixed race"]]<<else>>Mixed Race<</if>> <<else>> - /*//''Racial subjugationism'': a belief in the inferiority of a subject race.//*/ + /*//''Racial Subjugationism'': a belief in the inferiority of a subject race.//*/ <</if>> <</if>> diff --git a/src/uncategorized/genericPlotEvents.tw b/src/uncategorized/genericPlotEvents.tw index dcbce6fd8804946e753b418e64d331285c5eac25..373803d41f9978a9bb1d8eaf1745b22a98030c1e 100644 --- a/src/uncategorized/genericPlotEvents.tw +++ b/src/uncategorized/genericPlotEvents.tw @@ -196,11 +196,19 @@ in the capital city. <<if $PAidTarget != "seizedMission">> They are deeply worried by the situation. There have been large riots over the past week, and yesterday they became seriously violent. The unrest is targeting <<if $PAidTarget == "convent">> +<<<<<<< HEAD better-off citizens, including the caller. Though most of the nuns have already left, the leader and a few of her women are now stuck in the area and are running out of options as the riots lock down transportation. <<elseif $PAidTarget == "school">> better-off citizens, including the caller. Though most of the students have already made it out, the principal and a few students are now stuck in the area and are running out of options as the riots lock down transportation. <<elseif $PAidTarget == "housewives">> better-off citizens, including the caller. Though most of them have taken flights out, the leader and a few of them are now stuck in the area and are running out of options as the riots lock down transportation. +======= + better-off citizens, including the caller. Though most of the nuns have already left, the leader and a few of her women are now stuck in the area and are running out of options as the riots lock down transportation. + <<elseif $PAidTarget == "school">> + better-off citizens, including the caller. Though most of the students have already made it out, the principal and a few students are now stuck in the area and are running out of options as the riots lock down transportation. + <<elseif $PAidTarget == "housewives">> + better-off citizens, including the caller. Though most of them have taken flights out, the leader and a few of them are now stuck in the area and are running out of options as the riots lock down transportation. +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <<elseif $PAidTarget == "maternity">> better-off citizens, including the caller. Though most of the patients have already left, several of the most pregnant are now stuck in the area and are running out of options as the riots lock down transportation. <<elseif $PAidTarget == "conversion">> diff --git a/src/uncategorized/growthResearchInstitute.tw b/src/uncategorized/growthResearchInstitute.tw index 1450bc2ab09243959ee8ca311c0f9f25e5a00b25..cead9b5cfa20355ad8d5acd2449d1984a76d0c4f 100644 --- a/src/uncategorized/growthResearchInstitute.tw +++ b/src/uncategorized/growthResearchInstitute.tw @@ -23,17 +23,18 @@ <br><br>The price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +<<setLocalPronouns $activeSlave>> <<if $cash >= $slaveCost>> - <br>[["Buy "+$his+" and check out other slaves to order"|Growth Research Institute][$cash -= $slaveCost, $GRI.schoolSale = 0, $GRI.studentsBought += 1, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] + <br>[["Buy " + $him + " and check out other slaves to order"|Growth Research Institute][$cash -= $slaveCost, $GRI.schoolSale = 0, $GRI.studentsBought += 1, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] <<if $newSlaves.length == 0>> - <br>[["Buy "+$his+" slave contract"|New Slave Intro][$cash -= $slaveCost, $GRI.schoolSale = 0, $GRI.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]] + <br>[["Buy " + $his + " slave contract"|New Slave Intro][$cash -= $slaveCost, $GRI.schoolSale = 0, $GRI.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]] <<else>> - <br>[[["Buy "+$his+" and Finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $GRI.schoolSale = 0, $GRI.studentsBought += 1, $newSlaves.push($activeSlave)]] + <br>[[["Buy " + $him + " and finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $GRI.schoolSale = 0, $GRI.studentsBought += 1, $newSlaves.push($activeSlave)]] <</if>> <<else>> //You lack the necessary funds to buy this slave.// <</if>> -<br>[["Decline to purchase "+$his+" and check out another slave"|Growth Research Institute][$slavesSeen += 1]] +<br>[["Decline to purchase " + $him + " and check out another slave"|Growth Research Institute][$slavesSeen += 1]] <<if $newSlaves.length > 0>> <br>[[Finish your order of slaves|Bulk Slave Intro]] <</if>> diff --git a/src/uncategorized/jeSlaveDispute.tw b/src/uncategorized/jeSlaveDispute.tw index 518ad4cae05c506cf331b4ac63f6343b3ed8306b..bbf51f454344ab82edd093bcd96b53beee009446 100644 --- a/src/uncategorized/jeSlaveDispute.tw +++ b/src/uncategorized/jeSlaveDispute.tw @@ -19,8 +19,8 @@ <<set $activeSlave.vagina = random(1,2)>> <<set $activeSlave.ovaries = 1>> <<set $activeSlave.birthsTotal = 1>> - <<set $activeSlave.shouldersTat = either("tribal patterns", "flowers")>> - <<set $activeSlave.stampTat = either("tribal patterns", "flowers")>> + <<set $activeSlave.shouldersTat = either("flowers", "tribal patterns")>> + <<set $activeSlave.stampTat = either("flowers", "tribal patterns")>> <<case "breeding deal">> <<set $contractCost = 40000>> <<set $activeSlaveOneTimeMinAge = $fertilityAge+3>> @@ -141,7 +141,7 @@ <<set $activeSlave.navelPiercing = 1>> <<set $activeSlave.nipplesPiercing = 1>> <<set $activeSlave.clitPiercing = 1>> - <<set $activeSlave.stampTat = either("tribal patterns", "flowers")>> + <<set $activeSlave.stampTat = either("flowers", "tribal patterns")>> <<default>> <<set $contractCost = 10000>> <<set $activeSlaveOneTimeMaxAge = 22>> @@ -193,7 +193,7 @@ <</if>> he's refusing to transfer the funds, placing the entire operation in jeopardy. <br><br> - The father<<if $seePreg == 1>>-to-be<</if>> claims that the child is not his and as such, the contract has not been fulfilled. Despite offers from the breeder to perform a paterntity test, he adamantly insists on using his private, and rather expensive, physician to run the test; a cost high enough to put them out of business anyway. + The father<<if $seePreg == 1>>-to-be<</if>> claims that the child is not his and as such, the contract has not been fulfilled. Despite offers from the breeder to perform a paternity test, he adamantly insists on using his private, and rather expensive, physician to run the test; a cost high enough to put them out of business anyway. <<case "slave training">> One of your prominent tenants is accusing another of failing to train a slave for him according to the terms of a slave training contract. He highlights a part of the contract that requires that the slave be expert in "all common sexual skills." He self-righteously declares that the delivered slave has no vaginal skills to speak of, that he doesn't want her as a result, and requests that you release him from the contract. <br><br> @@ -390,14 +390,14 @@ <</link>> <br><<link "Settle the dispute in favor of the prospective buyer">> <<replace "#result">> - What's most important is the justice of the outcome. You settle the dispute in favor of the buyer, who would otherwise be forced to buy something he did not mean to pay for. He lets it be known far and wide that you are willing to stand up for what's right, no matter what and no matter who, @@.green;improving@@ your reputation. The angry seller, now afflicted with a devalued slave in addition to a bad headache, lets his group of friends know that social superiors have no advantage at justice here. They become more reticent about dealmaking in your arcology, @@.red;damaging@@ its prosperity. + What's most important is the justice of the outcome. You settle the dispute in favor of the buyer, who would otherwise be forced to buy something he did not mean to pay for. He lets it be known far and wide that you are willing to stand up for what's right, no matter what and no matter who, @@.green;improving@@ your reputation. The angry seller, now afflicted with a devalued slave in addition to a bad headache, lets his group of friends know that social superiors have no advantage at justice here. They become more reticent about deal-making in your arcology, @@.red;damaging@@ its prosperity. <<set $arcologies[0].prosperity -= 5>> <<set $rep += 500>> <</replace>> <</link>> <br><<link "Settle the dispute in favor of the prominent slaveowner">> <<replace "#result">> - A deal is a deal; buyer beware. You settle the dispute in favor of the slaveowner. He lets it be known amongst his peers that you do not let social inferiors insist on justice against their betters. Citizens of quality become more willing to consider dealmaking in your arcology, @@.green;increasing prosperity.@@ On the other hand, the angry buyer shows himself to be not a person to treat lightly, either; he maintains a @@.red;malicious@@ whispering campaign to the effect that your administration of justice is fatally biased. + A deal is a deal; buyer beware. You settle the dispute in favor of the slaveowner. He lets it be known amongst his peers that you do not let social inferiors insist on justice against their betters. Citizens of quality become more willing to consider deal-making in your arcology, @@.green;increasing prosperity.@@ On the other hand, the angry buyer shows himself to be not a person to treat lightly, either; he maintains a @@.red;malicious@@ whispering campaign to the effect that your administration of justice is fatally biased. <<set $arcologies[0].prosperity += 5>> <<set $rep -= 500>> <</replace>> diff --git a/src/uncategorized/lecoleDesEnculees.tw b/src/uncategorized/lecoleDesEnculees.tw index 21594b9e6f5610e0c5156a37edc92389a4110356..b6b64f110b3ee20f8b38793ab73dbc1a02759f27 100644 --- a/src/uncategorized/lecoleDesEnculees.tw +++ b/src/uncategorized/lecoleDesEnculees.tw @@ -22,17 +22,18 @@ <br><br>The price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +<<setLocalPronouns $activeSlave>> <<if $cash >= $slaveCost>> - <br>[[Buy her and check out other slaves to order|L'école des Enculées][$cash -= $slaveCost, $LDE.schoolSale = 0, $LDE.studentsBought += 1, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] + <br>[["Buy " + $him + " and check out other slaves to order"|L'école des Enculées][$cash -= $slaveCost, $LDE.schoolSale = 0, $LDE.studentsBought += 1, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] <<if $newSlaves.length == 0>> - <br>[[Buy her slave contract|New Slave Intro][$cash -= $slaveCost, $LDE.schoolSale = 0, $LDE.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]] + <br>[["Buy " + $his + " slave contract"|New Slave Intro][$cash -= $slaveCost, $LDE.schoolSale = 0, $LDE.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]] <<else>> - <br>[[Buy her and Finish your order of slaves|Bulk Slave Intro][$cash -= $slaveCost, $LDE.schoolSale = 0, $LDE.studentsBought += 1, $newSlaves.push($activeSlave)]] + <br>[["Buy " + $him + " and finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $LDE.schoolSale = 0, $LDE.studentsBought += 1, $newSlaves.push($activeSlave)]] <</if>> <<else>> //You lack the necessary funds to buy this slave.// <</if>> -<br>[[Decline to purchase her and check out another slave|L'école des Enculées][$slavesSeen += 1]] +<br>[["Decline to purchase " + $him + " and check out another slave"|L'école des Enculées][$slavesSeen += 1]] <<if $newSlaves.length > 0>> <br>[[Finish your order of slaves|Bulk Slave Intro]] <</if>> diff --git a/src/uncategorized/longSlaveDescription.tw b/src/uncategorized/longSlaveDescription.tw index e0e97a683ae26b04f58cfb431b7c7a389968b654..561cb04b8b80066fa6aaa8e155e0db9921479ed0 100644 --- a/src/uncategorized/longSlaveDescription.tw +++ b/src/uncategorized/longSlaveDescription.tw @@ -1148,7 +1148,7 @@ is <<if $activeSlave.fuckdoll == 0>> <<if $showBodyMods == 1>> - <<if ["neck", "left cheek", "right cheek", "cheeks", "left ears", "right ears", "ears"].includes($activeSlave.brandLocation)>> + <<if ["cheeks", "ears", "left cheek", "left ears", "neck", "right cheek", "right ears"].includes($activeSlave.brandLocation)>> <<brandDescription>> <</if>> <</if>> @@ -1705,19 +1705,19 @@ and <<if $arcologies[0].FSHedonisticDecadence != "unset">> <<print either("perfectly curvy", "perfectly plush")>>. <<else>> - @@.red;<<print either("dangerously overweight", "extremely obese", "dangerously fat")>>.@@ + @@.red;<<print either("dangerously fat", "dangerously overweight", "extremely obese")>>.@@ <</if>> <<elseif $activeSlave.weight > 160 >> <<if $arcologies[0].FSHedonisticDecadence != "unset">> <<print either("spectacularly curvy", "spectacularly plush")>>. <<else>> - @@.red;<<print either("extremely overweight", "very obese", "extremely fat")>>.@@ + @@.red;<<print either("extremely fat", "extremely overweight", "very obese")>>.@@ <</if>> <<elseif $activeSlave.weight > 130 >> <<if $arcologies[0].FSHedonisticDecadence != "unset">> <<print either("amazingly curvy", "amazingly plush")>>. <<else>> - @@.red;<<print either("very overweight", "obese", "very fat")>>.@@ + @@.red;<<print either("obese", "very fat", "very overweight")>>.@@ <</if>> <<elseif $activeSlave.weight > 95>> <<if $activeSlave.hips > 1>> @@ -1725,7 +1725,7 @@ and <<elseif $arcologies[0].FSHedonisticDecadence != "unset">> <<print either("extremely curvy", "extremely plush")>>. <<else>> - @@.red;<<print either("overweight", "carrying a lot of extra weight", "fat")>>.@@ + @@.red;<<print either("carrying a lot of extra weight", "fat", "overweight")>>.@@ <</if>> <<elseif $activeSlave.weight > 30>> <<if $activeSlave.hips > 1>> @@ -1733,20 +1733,20 @@ and <<elseif $arcologies[0].FSHedonisticDecadence != "unset">> <<print either("quite curvy", "very plush")>>. <<else>> - @@.red;<<print either("chubby", "carrying extra weight")>>.@@ + @@.red;<<print either("carrying extra weight", "chubby")>>.@@ <</if>> -<<elseif $activeSlave.weight > 10 >><<print either("pleasingly curvy", "nicely plush")>>. -<<elseif $activeSlave.weight >= -10>><<print either("a healthy weight", "neither too fat nor too skinny", "an attractive weight for $his frame")>>. -<<elseif $activeSlave.weight >= -30>><<print either("pleasingly thin", "appealingly skinny")>>. +<<elseif $activeSlave.weight > 10 >><<print either("nicely plush", "pleasingly curvy")>>. +<<elseif $activeSlave.weight >= -10>><<print either("a healthy weight", "an attractive weight for $his frame", "neither too fat nor too skinny")>>. +<<elseif $activeSlave.weight >= -30>><<print either("appealingly skinny", "pleasingly thin")>>. <<elseif $activeSlave.weight >= -95>> <<if $activeSlave.hips > 1>> - <<print either("very thin", "quite skinny")>>, but $his wide hips make the gap between $his thighs very noticeable. + <<print either("quite skinny", "very thin")>>, but $his wide hips make the gap between $his thighs very noticeable. <<elseif $activeSlave.hips < -1>> - <<print either("very thin", "quite skinny")>>, but $his trim hips make $his look like a model. + <<print either("quite skinny", "very thin")>>, but $his trim hips make $his look like a model. <<else>> - @@.red;<<print either("rail thin", "underweight", "too skinny")>>.@@ + @@.red;<<print either("rail thin", "too skinny", "underweight")>>.@@ <</if>> -<<else>>@@.red;<<print either("emaciated", "dangerously skinny")>>.@@ +<<else>>@@.red;<<print either("dangerously skinny", "emaciated")>>.@@ <</if>> <<if $activeSlave.hips > 2>> @@ -1944,7 +1944,7 @@ $He is <<if $activeSlave.fuckdoll == 0>> <<if $showBodyMods == 1>> /* Check it's not a facial brand: */ - <<if ["back", "lower back", "chest", "right shoulder", "left shoulder", "shoulders", "right upper arm", "left upper arm", "upper arms", "right lower arm", "left lower arm", "lower arms", "right wrist", "left wrist", "wrists", "right hand", "left hand", "hands", "left ankle", "right ankle", "ankles", "right calf", "left calf", "calves", "right foot", "left foot", "feet"].includes($activeSlave.brandLocation)>> + <<if ["ankles", "back", "calves", "chest", "feet", "hands", "left ankle", "left calf", "left foot", "left hand", "left lower arm", "left shoulder", "left upper arm", "left wrist", "lower arms", "lower back", "right ankle", "right calf", "right foot", "right hand", "right lower arm", "right shoulder", "right upper arm", "right wrist", "shoulders", "upper arms", "wrists"].includes($activeSlave.brandLocation)>> <<brandDescription>> <</if>> <</if>> diff --git a/src/uncategorized/marketsReport.tw b/src/uncategorized/marketsReport.tw index 9133b1261e7501f0a93166f730022e8ea6ba1e14..042ed6ce76bc0bbaec94f07cc2c6ffd9169c58f9 100644 --- a/src/uncategorized/marketsReport.tw +++ b/src/uncategorized/marketsReport.tw @@ -2,8 +2,8 @@ //FC Markets Report:// -<<set _assetAffected = either("general", "slaves", "entrapment", "capture", "training", "surgical", "drugs")>> -<<set _assetDirection = either("up", "down")>> +<<set _assetAffected = either("capture", "drugs", "entrapment", "general", "slaves", "surgical", "training")>> +<<set _assetDirection = either("down", "up")>> <<if _assetAffected == "general">> <<if _assetDirection == "up">> diff --git a/src/uncategorized/masterSuite.tw b/src/uncategorized/masterSuite.tw index 1f04918db43d3d2381523c9138a6adb840aab316..34c22029ac5443ebd76a96a123e69a7cb3007509 100644 --- a/src/uncategorized/masterSuite.tw +++ b/src/uncategorized/masterSuite.tw @@ -298,7 +298,7 @@ $masterSuiteNameCaps is furnished <<set _Tmult0 = Math.trunc($masterSuite*1000*$upgradeMultiplierArcology)>> [[Expand the Master Suite|Master Suite][$cash -= _Tmult0, $masterSuite += 2, $PC.engineering += .1]] //Costs <<print cashFormat(_Tmult0)>>// <<if $Concubine == 0 && $masterSuiteSlaves == 0>> - |[[Decommission the Master Suite|Main][$masterSuite = 0, $masterSuiteUpgradeLuxury = 0, $masterSuitePregnancySlaveLuxuries = 0, $masterSuiteDecoration = "standard", $masterSuitePregnancyFertilityDrugs = 0, $masterSuitePregnancyFertilitySupplements = 0, $masterSuiteUpgradePregnancy = 0, $masterSuiteHyperPregnancy = 0]] + | [[Decommission the Master Suite|Main][$masterSuite = 0, $masterSuiteUpgradeLuxury = 0, $masterSuitePregnancySlaveLuxuries = 0, $masterSuiteDecoration = "standard", $masterSuitePregnancyFertilityDrugs = 0, $masterSuitePregnancyFertilitySupplements = 0, $masterSuiteUpgradePregnancy = 0, $masterSuiteHyperPregnancy = 0]] <</if>> <<if $masterSuiteSlaves > 0>> diff --git a/src/uncategorized/motherDaughterWorkaround.tw b/src/uncategorized/motherDaughterWorkaround.tw index 7b4655921d5de53f891e7ed9a3e8ab31ca057c95..e21e5f7e5b37ce00554ae068c13b8fad73d4e0b9 100644 --- a/src/uncategorized/motherDaughterWorkaround.tw +++ b/src/uncategorized/motherDaughterWorkaround.tw @@ -46,12 +46,12 @@ Your new pair of slaves look frightened and uncertain, but seem encouraged by ea <<set _secondSlave.attrXY = Math.clamp(_secondSlave.attrXY, 0, 100)>> <<set _secondSlave.energy += random(-20,20)>> <<set _secondSlave.fetishStrength = random(0,90)>> -<<set _secondSlave.fetish = either("none", "none", "none", "none", "none", "none", "submissive", "cumslut", "humiliation", "buttslut", "pregnancy", "sadist", "dom", "masochist")>> -<<set _secondSlave.behavioralFlaw = either("none", "none", "none", "arrogant", "bitchy", "odd", "hates men", "hates women", "hates women", "anorexic", "masochist", "gluttonous", "devout", "liberated")>> +<<set _secondSlave.fetish = either("buttslut", "cumslut", "dom", "humiliation", "masochist", "none", "none", "none", "none", "none", "none", "pregnancy", "sadist", "submissive")>> +<<set _secondSlave.behavioralFlaw = either("anorexic", "arrogant", "bitchy", "devout", "gluttonous", "hates men", "hates women", "hates women", "liberated", "masochist", "none", "none", "none", "odd")>> <<if (_secondSlave.behavioralFlaw == "devout")>> - <<set _secondSlave.sexualFlaw = either("none", "repressed", "shamefast", "apathetic")>> + <<set _secondSlave.sexualFlaw = either("apathetic", "none", "repressed", "shamefast")>> <<else>> - <<set _secondSlave.sexualFlaw = either("none", "none", "none", "none", "hates oral", "hates anal", "hates penetration", "repressed", "idealistic", "shamefast", "apathetic", "crude", "judgemental")>> + <<set _secondSlave.sexualFlaw = either("apathetic", "crude", "hates anal", "hates oral", "hates penetration", "idealistic", "judgemental", "none", "none", "none", "none", "repressed", "shamefast")>> <</if>> <<if $familyTesting == 1>> diff --git a/src/uncategorized/neighborsFSAdoption.tw b/src/uncategorized/neighborsFSAdoption.tw index 879685cc2d3b4201a34488c88aa82bf839f35458..1cf0f4b4e9e15495e5b1e0784c0d4cee67defca7 100644 --- a/src/uncategorized/neighborsFSAdoption.tw +++ b/src/uncategorized/neighborsFSAdoption.tw @@ -961,7 +961,7 @@ societal development. <</switch>> <<switch random(1,26)>> <<case 1>> - <<set _subjugationRace = either("white", "asian", "latina", "middle eastern", "black", "indo-aryan", "pacific islander", "malay", "amerindian", "southern european", "semitic", "mixed race")>> + <<set _subjugationRace = either("amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white")>> <<if ($arcologies[$i].FSSubjugationist == "unset")>> <<if ($arcologies[$i].FSSupremacist == "unset") || (_subjugationRace != $arcologies[$i].FSSupremacistRace)>> $desc preoccupied by a racial animus towards _subjugationRace people, leading the arcology to @@.yellow;adopt _subjugationRace Subjugation.@@ @@ -970,7 +970,7 @@ societal development. <</if>> <</if>> <<case 2>> - <<set _supremacistRace = either("white", "asian", "latina", "middle eastern", "black", "indo-aryan", "pacific islander", "malay", "amerindian", "southern european", "semitic", "mixed race")>> + <<set _supremacistRace = either("amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white")>> <<if ($arcologies[$i].FSSupremacist == "unset")>> <<if ($arcologies[$i].FSSubjugationist == "unset") || (_supremacistRace != $arcologies[$i].FSSubjugationistRace)>> $desc preoccupied by belief in the superiority of the _supremacistRace race, leading the arcology to @@.yellow;adopt _supremacistRace Supremacy.@@ diff --git a/src/uncategorized/newSlaveIntro.tw b/src/uncategorized/newSlaveIntro.tw index 070f472fcbc651d9a3110b02ebcbd86d5e92187b..7129768257bd726954ae1009ef4847a016a26f90 100644 --- a/src/uncategorized/newSlaveIntro.tw +++ b/src/uncategorized/newSlaveIntro.tw @@ -976,7 +976,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' << <<if $activeSlave.stampTat == 0>> <br> <<link "Give $him a lewd tramp stamp">> - <<set $activeSlave.stampTat = either("advertisements", "rude words", "degradation")>> + <<set $activeSlave.stampTat = either("advertisements", "degradation", "rude words")>> <<replace "#introResult">> You <<if $activeSlave.devotion > 20>>bring $him down to the studio, lay the compliant<<else>>drag $him down to the studio, strap the reluctant<</if>> slave in the chair face-down, and select a sufficiently lewd pattern to decorate $his lower back. When the automated tattooing is done, a topical application of analgesics leaves $him with nothing more than a slight ache there. When allowed to stand, $he immediately turns $his back to one of the studio's full length mirrors and cranes around to read the writing just over $his butt. It's difficult, since of course it's reversed, and $he mouths the words letter by letter. <<if $activeSlave.stampTat == "advertisements">> diff --git a/src/uncategorized/pCoupAftermath.tw b/src/uncategorized/pCoupAftermath.tw index 871b1f9226c76aae60f35509e1820138dcc250d2..7f9f5aa6087581cc243fb3629ed7e4be4272a753 100644 --- a/src/uncategorized/pCoupAftermath.tw +++ b/src/uncategorized/pCoupAftermath.tw @@ -67,11 +67,19 @@ You inquire as to whether there's any identifiable cause for the evident dislike <<if $rivalSet != 0>> <<for $i = 0; $i < $arcologies.length; $i++>> <<if $arcologies[$i].rival == 1>> +<<<<<<< HEAD <<set $arcologies[$i].embargo = 3>> <<set $arcologies[$i].embargoTarget = 0>> <<set $arcologies[$i].influenceTarget = 0>> <<set $rivalOwner = $arcologies[$i].prosperity>> <<break>> +======= + <<set $arcologies[$i].embargo = 3>> + <<set $arcologies[$i].embargoTarget = 0>> + <<set $arcologies[$i].influenceTarget = 0>> + <<set $rivalOwner = $arcologies[$i].prosperity>> + <<break>> +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <</if>> <</for>> <<else>> diff --git a/src/uncategorized/pRivalryActions.tw b/src/uncategorized/pRivalryActions.tw index 0ca00f0eb18169cec131dc37b226a069420365e9..abf0bc602e78fad19b44c2211699f1443bd83d07 100644 --- a/src/uncategorized/pRivalryActions.tw +++ b/src/uncategorized/pRivalryActions.tw @@ -3951,17 +3951,17 @@ You remind yourself that success in this conflict will not be defined by the tra <<set $rivalryPower = 0>> <<if $rivalSet != 0>> - <<for _pra = 0; _pra < $arcologies.length; _pra++>> - <<if $arcologies[_pra].rival == 1>> - <<set $arcologies[_pra].embargo = 0>> - <<set $arcologies[_pra].embargoTarget = -1>> - <<set $arcologies[_pra].influenceTarget = -1>> - <<set $arcologies[_pra].rival = 0>> - <<set $arcologies[_pra].government = "direct democracy">> - <<if _rivalCaptured == 1 && $arcologies[_pra].FSSupremacist > 20>><<set $rivalRace = $arcologies[_pra].FSSupremacistRace>><</if>> - <<break>> - <</if>> - <</for>> + <<for _pra = 0; _pra < $arcologies.length; _pra++>> + <<if $arcologies[_pra].rival == 1>> + <<set $arcologies[_pra].embargo = 0>> + <<set $arcologies[_pra].embargoTarget = -1>> + <<set $arcologies[_pra].influenceTarget = -1>> + <<set $arcologies[_pra].rival = 0>> + <<set $arcologies[_pra].government = "direct democracy">> + <<if _rivalCaptured == 1 && $arcologies[_pra].FSSupremacist > 20>><<set $rivalRace = $arcologies[_pra].FSSupremacistRace>><</if>> + <<break>> + <</if>> + <</for>> <</if>> <<if $hostageAnnounced == 1>> diff --git a/src/uncategorized/pRivalryCapture.tw b/src/uncategorized/pRivalryCapture.tw index 4d776c6528c060f87798fe1232b2f0ec2b39f708..11a1cd6464302ee9284f8e34f0536ba2c78233ca 100644 --- a/src/uncategorized/pRivalryCapture.tw +++ b/src/uncategorized/pRivalryCapture.tw @@ -35,7 +35,7 @@ the delicious moment of finding your rival on her knees in front of you with a b <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> <<set $oneTimeDisableDisability = 1>> - <<if ["white", "asian", "latina", "middle eastern", "black", "indo-aryan", "pacific islander", "malay", "amerindian", "southern european", "semitic", "mixed race"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XY Slave">> <<set $activeSlave.face = 100>> <<set $activeSlave.faceImplant = 15>> @@ -72,7 +72,7 @@ the delicious moment of finding your rival on her knees in front of you with a b <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> <<set $oneTimeDisableDisability = 1>> - <<if ["white", "asian", "latina", "middle eastern", "black", "indo-aryan", "pacific islander", "malay", "amerindian", "southern european", "semitic", "mixed race"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XY Slave">> <<set $activeSlave.chem = 3000>> <<set $activeSlave.face = 100>> @@ -108,7 +108,7 @@ the delicious moment of finding your rival on her knees in front of you with a b <<set $activeSlaveOneTimeMinAge = $minimumSlaveAge>> <<set $activeSlaveOneTimeMaxAge = 18>> <<set $oneTimeDisableDisability = 1>> - <<if ["white", "asian", "latina", "middle eastern", "black", "indo-aryan", "pacific islander", "malay", "amerindian", "southern european", "semitic", "mixed race"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XY Slave">> <<set $activeSlave.face = 100>> <<set $activeSlave.faceShape = "androgynous">> @@ -142,7 +142,7 @@ the delicious moment of finding your rival on her knees in front of you with a b <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> <<set $oneTimeDisableDisability = 1>> - <<if ["white", "asian", "latina", "middle eastern", "black", "indo-aryan", "pacific islander", "malay", "amerindian", "southern european", "semitic", "mixed race"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XY Slave">> <<set $activeSlave.face = 55>> <<set $activeSlave.faceImplant = 0>> @@ -174,7 +174,7 @@ the delicious moment of finding your rival on her knees in front of you with a b <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> <<set $oneTimeDisableDisability = 1>> - <<if ["white", "asian", "latina", "middle eastern", "black", "indo-aryan", "pacific islander", "malay", "amerindian", "southern european", "semitic", "mixed race"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XY Slave">> <<set $activeSlave.face = 55>> <<set $activeSlave.faceImplant = 0>> @@ -206,7 +206,7 @@ the delicious moment of finding your rival on her knees in front of you with a b <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> <<set $oneTimeDisableDisability = 1>> - <<if ["white", "asian", "latina", "middle eastern", "black", "indo-aryan", "pacific islander", "malay", "amerindian", "southern european", "semitic", "mixed race"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XX Slave">> <<set $activeSlave.face = 55>> <<set $activeSlave.faceImplant = 0>> @@ -248,7 +248,7 @@ the delicious moment of finding your rival on her knees in front of you with a b <<set $activeSlaveOneTimeMaxAge = 42>> <</if>> <<set $oneTimeDisableDisability = 1>> - <<if ["white", "asian", "latina", "middle eastern", "black", "indo-aryan", "pacific islander", "malay", "amerindian", "southern european", "semitic", "mixed race"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XX Slave">> <<set $activeSlave.pubertyXX = 1>> <<set $activeSlave.face = 100>> @@ -270,7 +270,7 @@ the delicious moment of finding your rival on her knees in front of you with a b <<set $activeSlave.pregAdaptation = $activeSlave.birthsTotal*2>> <<else>> <<set $activeSlave.vagina = 5>> - <<set $activeSlave.pregType = either(3,3,4,4,4,5,5,6,6,7,7,8,8,8)>> + <<set $activeSlave.pregType = either(3, 3, 4, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 8)>> <<set $activeSlave.birthsTotal = random(18,27)>> <<set $activeSlave.bellySag = 2, $activeSlave.bellySagPreg = 2>> <<set $activeSlave.pregAdaptation = random(60,100)>> @@ -297,7 +297,7 @@ the delicious moment of finding your rival on her knees in front of you with a b <<set $activeSlaveOneTimeMinAge = $minimumSlaveAge>> <<set $activeSlaveOneTimeMaxAge = 12>> <<set $oneTimeDisableDisability = 1>> - <<if ["white", "asian", "latina", "middle eastern", "black", "indo-aryan", "pacific islander", "malay", "amerindian", "southern european", "semitic", "mixed race"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XX Slave">> <<set $activeSlave.face = 100>> <<set $activeSlave.faceImplant = 0>> @@ -330,7 +330,7 @@ the delicious moment of finding your rival on her knees in front of you with a b <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> <<set $oneTimeDisableDisability = 1>> - <<if ["white", "asian", "latina", "middle eastern", "black", "indo-aryan", "pacific islander", "malay", "amerindian", "southern european", "semitic", "mixed race"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XX Slave">> <<set $activeSlave.face = 55>> <<set $activeSlave.faceImplant = 0>> @@ -363,7 +363,7 @@ the delicious moment of finding your rival on her knees in front of you with a b <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> <<set $oneTimeDisableDisability = 1>> - <<if ["white", "asian", "latina", "middle eastern", "black", "indo-aryan", "pacific islander", "malay", "amerindian", "southern european", "semitic", "mixed race"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XX Slave">> <<set $activeSlave.face = 100>> <<set $activeSlave.faceImplant = 65>> @@ -398,7 +398,7 @@ the delicious moment of finding your rival on her knees in front of you with a b <<set $activeSlaveOneTimeMinAge = 18>> <<set $activeSlaveOneTimeMaxAge = 42>> <<set $oneTimeDisableDisability = 1>> - <<if ["white", "asian", "latina", "middle eastern", "black", "indo-aryan", "pacific islander", "malay", "amerindian", "southern european", "semitic", "mixed race"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> + <<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>> <<include "Generate XX Slave">> <<set $activeSlave.face = 100>> <<set $activeSlave.faceImplant = 15>> diff --git a/src/uncategorized/pRivalryVictory.tw b/src/uncategorized/pRivalryVictory.tw index 111fd052113be30648b9050066183bb66c46a4c9..e059b0394086173e85f9566de44ae7dcb1ee1dfd 100644 --- a/src/uncategorized/pRivalryVictory.tw +++ b/src/uncategorized/pRivalryVictory.tw @@ -100,6 +100,7 @@ For the first time, you receive a direct call from your rival. You pictured the <<if $rivalSet != 0>> "All my remaining liquid assets have just been @@.red;carefully dispersed to deny you control of my arcology.@@ You'll get nothing from me." It's true. The financial self-destruction ensures that the fiscal wreckage goes to the arcology's citizens, not you. <<for _prv = 0; _prv < $arcologies.length; _prv++>> +<<<<<<< HEAD <<if $arcologies[_prv].rival == 1>> <<set $arcologies[_prv].embargo = 0>> <<set $arcologies[_prv].embargoTarget = -1>> @@ -109,6 +110,17 @@ For the first time, you receive a direct call from your rival. You pictured the <<if $arcologies[_prv].FSSupremacist > 20>><<set $rivalRace = $arcologies[_prv].FSSupremacistRace>><</if>> <<break>> <</if>> +======= + <<if $arcologies[_prv].rival == 1>> + <<set $arcologies[_prv].embargo = 0>> + <<set $arcologies[_prv].embargoTarget = -1>> + <<set $arcologies[_prv].influenceTarget = -1>> + <<set $arcologies[_prv].rival = 0>> + <<set $arcologies[_prv].government = "direct democracy">> + <<if $arcologies[_prv].FSSupremacist > 20>><<set $rivalRace = $arcologies[_prv].FSSupremacistRace>><</if>> + <<break>> + <</if>> +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <</for>> <<if $hostageAnnounced == 1>> <br><br> diff --git a/src/uncategorized/personalAttentionSelect.tw b/src/uncategorized/personalAttentionSelect.tw index 2b5c30c6cbf56708e57df845ec582601163a5cac..6df073137ab05629746fcbf1909290f2ddf66a01 100644 --- a/src/uncategorized/personalAttentionSelect.tw +++ b/src/uncategorized/personalAttentionSelect.tw @@ -233,7 +233,7 @@ <<if ($activeSlave.behavioralFlaw == "none")>> | //She must be broken before her flaws can be softened// <</if>> - <<elseif ["cum addict", "anal addict", "attention whore", "breast growth", "abusive", "malicious", "self hating", "neglectful", "breeder"].includes($activeSlave.sexualFlaw)>> + <<elseif ["abusive", "anal addict", "attention whore", "breast growth", "breeder", "cum addict", "malicious", "neglectful", "self hating"].includes($activeSlave.sexualFlaw)>> | //Paraphilias cannot be softened// <<else>> | <<link "Soften her sexual flaw">><<set $personalAttention[_i].trainingRegimen = "soften her sexual flaw">><<replace `"#training"+_i`>><strong>$personalAttention[_i].trainingRegimen</strong><</replace>><</link>> diff --git a/src/uncategorized/prestigiousSlave.tw b/src/uncategorized/prestigiousSlave.tw index dc4b910eea59635e7604058b6392aaf08b5f8c6b..4bd0387ac44371fafc5a4d6a8b2e8ba81494ce3b 100644 --- a/src/uncategorized/prestigiousSlave.tw +++ b/src/uncategorized/prestigiousSlave.tw @@ -52,7 +52,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<set $activeSlave.career = "a porn star">> <<set $activeSlave.boobsImplant += random(4,6)*200>> <<set $activeSlave.boobs += $activeSlave.boobsImplant>> - <<set $activeSlave.nipples = either("cute", "puffy", "huge")>> + <<set $activeSlave.nipples = either("cute", "huge", "puffy")>> <<set $activeSlave.areolae = 1>> <<set $activeSlave.butt += 1>> <<set $activeSlave.buttImplant += 1>> @@ -79,7 +79,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<set $activeSlave.entertainSkill = 100>> <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.underArmHStyle = "waxed">> - <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy", "anorexic")>> + <<set $activeSlave.behavioralFlaw = either("anorexic", "arrogant", "bitchy")>> <<set $activeSlave.fetish = "none">> <<set $activeSlave.fetishKnown = 1>> <<set $activeSlave.customDesc = "She has seen and done almost everything sexually possible, on camera.">> @@ -118,7 +118,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<set $activeSlave.entertainSkill = 15>> <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.underArmHStyle = "waxed">> - <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy", "anorexic")>> + <<set $activeSlave.behavioralFlaw = either("anorexic", "arrogant", "bitchy")>> <<set $activeSlave.fetish = "none">> <<set $activeSlave.fetishKnown = 1>> <<set $activeSlave.customTat = "Her ex-husband's name is prettily tattooed on her left arm, but a black line has been subsequently tattooed across it.">> @@ -154,7 +154,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<set $activeSlave.combatSkill = 1>> <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.underArmHStyle = "waxed">> - <<set $activeSlave.sexualFlaw = either("hates oral", "hates anal", "hates penetration")>> + <<set $activeSlave.sexualFlaw = either("hates anal", "hates oral", "hates penetration")>> <<set $activeSlave.behavioralFlaw = "arrogant">> <<set $activeSlave.customDesc = "She's not particularly bright, and enjoys solving problems with physical force.">> @@ -184,7 +184,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<set $activeSlave.entertainSkill = 35>> <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.underArmHStyle = "waxed">> - <<set $activeSlave.behavioralFlaw = either("arrogant", "anorexic")>> + <<set $activeSlave.behavioralFlaw = either("anorexic", "arrogant")>> <<set $activeSlave.customDesc = "She moves with the practiced grace of someone who unconsciously still pictures herself on the runway.">> <<case "albino">> @@ -219,7 +219,7 @@ You check to see if any especially prestigious slaves are on auction. <<if $pres <<set $activeSlave.career = "a slave">> <<set $activeSlave.boobsImplant += random(10,15)*200>> <<set $activeSlave.boobs += $activeSlave.boobsImplant>> - <<set $activeSlave.nipples = either("cute", "puffy", "huge")>> + <<set $activeSlave.nipples = either("cute", "huge", "puffy")>> <<set $activeSlave.areolae = 2>> <<set $activeSlave.butt += 4>> <<set $activeSlave.buttImplant += 4>> diff --git a/src/uncategorized/previousSlaveInLine.tw b/src/uncategorized/previousSlaveInLine.tw index 9df0c2e9e303b8e340eb038d4c7434cfabc3a56d..dea877bde169068827c36517f22bb87d253b7f0b 100644 --- a/src/uncategorized/previousSlaveInLine.tw +++ b/src/uncategorized/previousSlaveInLine.tw @@ -11,4 +11,3 @@ <<goto "Slave Interact">> <</silently>> - diff --git a/src/uncategorized/ptWorkaround.tw b/src/uncategorized/ptWorkaround.tw index 9c80831ef20a91fc732cc19c720912567c8aeb85..c326acdf5fa09b0e816b30e1ff34147557ab0e6e 100644 --- a/src/uncategorized/ptWorkaround.tw +++ b/src/uncategorized/ptWorkaround.tw @@ -109,7 +109,7 @@ <<if ($activeSlave.behavioralFlaw == "none")>> $activeSlave.slaveName got over her behavioral flaw without you, @@.yellow;her training assignment has defaulted to - <<if ["cum addict", "anal addict", "attention whore", "breast growth", "abusive", "malicious", "self hating", "neglectful", "breeder", "none"].includes($activeSlave.sexualFlaw)>> + <<if ["abusive", "anal addict", "attention whore", "breast growth", "breeder", "cum addict", "malicious", "neglectful", "none", "self hating"].includes($activeSlave.sexualFlaw)>> <<if ($activeSlave.devotion <= 20) && ($activeSlave.trust >= -20)>> breaking her will. <<set $personalAttention[_ptwi].trainingRegimen = "break her will">> diff --git a/src/uncategorized/reFSAcquisition.tw b/src/uncategorized/reFSAcquisition.tw index 86394492a2e789cd0e34935bede4ac5bb0eea12b..87bef04bcdcb036c7d375281b73ef3fa21e88b8a 100644 --- a/src/uncategorized/reFSAcquisition.tw +++ b/src/uncategorized/reFSAcquisition.tw @@ -1231,7 +1231,7 @@ The call comes in from a middle-class area. It appears that the youthful man pla You receive so many messages, as a noted titan of the new Free Cities world, that $assistantName has to be quite draconian in culling them. She lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. <br><br> -The subject line of the latest is badly misspelled, but the accompanying profile image is impressive, if trite, depicting the sender's massive bicep flexing, veins playing across the striated muscle. Getting $his situation out of $him proves to be something of a chore, since $he scarcely has two functional neurons to rub together. It seems that $he's on a fair number of drugs, not limited to aphrodisiacs and steroids, that $he can't afford them, and that $he has a distorted image of $arcologies[0].name as a sort of muscle-worshipping Valhalla of sex and gains. Hearing $him describe $his idea of life as one of your slaves, you understand why this idiot wants to be enslaved. If $his idea of slave life were accurate, //you'd// want to be enslaved. +The subject line of the latest is badly misspelled, but the accompanying profile image is impressive, if trite, depicting the sender's massive bicep flexing, veins playing across the striated muscle. Getting $his situation out of $him proves to be something of a chore, since $he scarcely has two functional neurons to rub together. It seems that $he's on a fair number of drugs, not limited to aphrodisiacs and steroids, that $he can't afford them, and that $he has a distorted image of $arcologies[0].name as a sort of muscle-worshiping Valhalla of sex and gains. Hearing $him describe $his idea of life as one of your slaves, you understand why this idiot wants to be enslaved. If $his idea of slave life were accurate, //you'd// want to be enslaved. <<case "Physical Idealist Two">> @@ -1287,7 +1287,7 @@ This one is a little odd; it merely begs you for an in person audience and offer Ever since you have been steering $arcologies[0].name towards a belief in chattel religionism, you've been receiving increasingly useful communications from groups that share your ideals. With much of the Old World in freefall, many groups with particularly vehement religious beliefs are expanding unchecked by the mores of big government, and by taking the chattel religionist side, you've automatically inserted yourself into a worldwide network of like-minded organizations. You receive a message from one such group. <br><br> -It seems that the Chattel Religionists have all but taken over their town and driven out or converted the local worshippers of old world religions, save for a single religious building and its clergy who continue in defiance. This group has stepped in to put an end to this impiety. However, though they may be ruthless vigilantes, they don't consider themselves murderers. They're interested in fencing a member clergy to you, no questions asked, on a flat fee basis. Included in the message is a slave dossier detailing the piece of human chattel they're offering: <<if $activeSlave.genes == "XX">>a lovely virgin nun<<else>>a rather stuck up priest<</if>>. +It seems that the Chattel Religionists have all but taken over their town and driven out or converted the local worshipers of old world religions, save for a single religious building and its clergy who continue in defiance. This group has stepped in to put an end to this impiety. However, though they may be ruthless vigilantes, they don't consider themselves murderers. They're interested in fencing a member clergy to you, no questions asked, on a flat fee basis. Included in the message is a slave dossier detailing the piece of human chattel they're offering: <<if $activeSlave.genes == "XX">>a lovely virgin nun<<else>>a rather stuck up priest<</if>>. <<case "Roman Revivalist">> diff --git a/src/uncategorized/reMalefactor.tw b/src/uncategorized/reMalefactor.tw index d0ee94c07ae76c561cf1bb0bb64f1fe3e938ee56..0acffc671b6fb6b9a653d8656197885bed1eab1c 100644 --- a/src/uncategorized/reMalefactor.tw +++ b/src/uncategorized/reMalefactor.tw @@ -2,7 +2,9 @@ <<set $nextButton = "Continue", $nextLink = "RIE Eligibility Check", $returnTo = "RIE Eligibility Check", $showEncyclopedia = 1, $encyclopedia = "Free Cities Justice", $applyLaw = 0>> -<<if $malefactor == "addict">> +<<switch $malefactor>> + +<<case "addict">> <<include "Generate New Slave">> <<set $activeSlave.origin = "You sentenced her to enslavement as a punishment for attempted burglary.">> @@ -31,9 +33,7 @@ <<set $activeSlave.clitPiercing = 1>> <<set $activeSlave.behavioralFlaw = "odd">> -<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a criminal has been detected by your security systems and detained by the drones. Crime is extremely uncommon in your arcology, since nothing can escape the notice of the omnipresent monitoring systems. Criminals are usually either too angry, too ignorant, or too stupid to understand the impossibility of successful petty crime. This is the latter situation; a girl suffering severe aphrodisiac withdrawal has attempted to break into a store that sells the stuff. She's now lying in a pool of her own urine with a taser round stuck in her ass; the drone responsible is hovering helpfully nearby, hitting her with another shock whenever she does more than twitch. - -<<elseif $malefactor == "escapee">> +<<case "escapee">> <<set $oneTimeDisableDisability = 1>> <<include "Generate New Slave">> @@ -63,9 +63,7 @@ <<set $activeSlave.sexualFlaw = "hates penetration">> <<set $activeSlave.behavioralFlaw = "odd">> -<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a criminal has been detected by your security systems and detained by the drones. Crime is extremely uncommon in your arcology, since nothing can escape the notice of the omnipresent monitoring systems. This is a simple case of vagrancy; sleeping on the streets (due to penury rather than inebriation) breaks an implicit contract all visitors to the arcology sign by coming here. The criminal is anything but usual, however. She bears signs of extreme hormone manipulation over a long period, and has had her Achilles tendons clipped. Camera records show her crawling in with a cargo shipment. She's clad in rags, and you cannot find any record of her anywhere. The growing crowd is convinced she's an escaped slave, and is growing ugly. - -<<elseif $malefactor == "anchorBaby">> +<<case "anchorBaby">> <<set $activeSlaveOneTimeMinAge = $fertilityAge>> <<set $activeSlaveOneTimeMaxAge = 42>> @@ -94,9 +92,7 @@ <<set $activeSlave.sexualFlaw = "crude">> <<set $activeSlave.behavioralFlaw = "bitchy">> -<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a criminal has been detected by your security systems and is waiting detainment. Crime is extremely uncommon in your arcology, since nothing can escape the notice of the omnipresent monitoring systems. This is likely another case of attempted escape by a slave or potentially a smuggling operation. The cause of detection is a steady stream of moaning emanating from a cargo container recently deposited into the arcology's cargo depot and has attracted a crowd of curious onlookers. Video feeds show the container being open and a heavily pregnant <<if $activeSlave.physicalAge > 30>>woman<<elseif $activeSlave.physicalAge > 19>>young woman<<elseif $activeSlave.physicalAge > 12>>teenager<<else>>little girl<</if>> staggering out while clutching a newborn to her breast and struggling to hold back her second child from being born. From what little language she knows, she seems to think that just giving birth in your arcology is enough to become a proper citizen; as expected, she squats and pushes out the other brat as you arrive. The growing crowd is becoming unruly, and her inability to speak the language isn't helping; things could get ugly at any moment and hinge entirely on your next move. - -<<elseif $malefactor == "orphanloli">> +<<case "orphanloli">> <<set $activeSlaveOneTimeMinAge = $minimumSlaveAge>> <<set $activeSlaveOneTimeMaxAge = 12>> @@ -130,9 +126,7 @@ <<set $activeSlave.sexualFlaw = "apathetic">> <<set $activeSlave.behavioralFlaw = "gluttonous">> -<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a criminal has been detected by your security systems and detained by the drones. Crime is extremely uncommon in your arcology, since nothing can escape the notice of the omnipresent monitoring systems. This is a simple case of vagrancy; sleeping on the streets (due to penury rather than inebriation) breaks an implicit contract all visitors to the arcology sign by coming here. Several reports of petty theft were made in the area recently as well. The criminal is anything but usual, however. She is very young, emaciated, and desperate. Camera records show her crawling in through an air vent. She's clad in rags, clutching a presumably stolen apple, and you cannot find any record of her anywhere. The growing crowd is convinced she's an escaped slave, and her inability to speak the language isn't helping; things could get ugly at any moment and hinge entirely on your next move. - -<<elseif $malefactor == "businesswoman">> +<<case "businesswoman">> <<set $activeSlaveOneTimeMinAge = 35>> <<set $activeSlaveOneTimeMaxAge = 43>> @@ -164,9 +158,7 @@ <<set $activeSlave.hStyle = "fashionable for a Free Cities businesswoman, up in a tight bun">> <<set $activeSlave.customTat = "She has a pretty floral tattoo along her collarbone.">> -<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a criminal has been detected by your security systems and detained by the drones. Crime is extremely uncommon in your arcology, since nothing can escape the notice of the omnipresent monitoring systems. Nevertheless, it seems one of your tenants, a hitherto well-respected businesswoman, has left the straight and narrow. It seems her business affairs took a decisive turn for the worse, so she attempted to drain her clients' funds and leave your arcology before anyone was the wiser. Unfortunately for her, your security drones, controlled by $assistantName, were very much the wiser. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> has with machine efficiency compiled the completest proofs of corporate malfeasance you have ever seen. Your wretched tenant signed a contract with you that included provisions forbidding theft. She is entirely at your mercy. - -<<elseif $malefactor == "whore">> +<<case "whore">> <<set $oneTimeDisableDisability = 1>> <<if $arcologies[0].FSSupremacistLawME == 1>> @@ -209,9 +201,7 @@ <<set $activeSlave.hStyle = "strip">> <<set $activeSlave.customTat = "She has a tear tattooed under each eye.">> -<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a criminal has been detected by your security systems and detained by the drones. Crime is extremely uncommon in your arcology, since nothing can escape the notice of the omnipresent monitoring systems. Nevertheless, it seems one of your tenants, a free whore, has been systematically stealing from clients. She was furtive enough to get away with it for a time, but has now been caught red-handed. The john who caught her attempted to stop her, and she fought him: like many prostitutes she carried a weapon in her handbag, and the man is severely wounded. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> has with machine efficiency compiled a staggering dossier of video logs and personal testimony from previous customers who now understand where their personal belongings went, as well as appalling footage of today's victim's injuries. Your wretched tenant signed a contract with you that included provisions forbidding this kind of thing. She is entirely at your mercy. - -<<elseif $malefactor == "rapist">> +<<case "rapist">> <<set $activeSlaveOneTimeMinAge = 16>> <<set $oneTimeDisableDisability = 1>> @@ -235,9 +225,7 @@ <<set $activeSlave.behavioralFlaw = "arrogant">> <<set $activeSlave.sexualFlaw = "hates men">> -<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a criminal has been detected by your security systems and detained by the drones. Crime is extremely uncommon in your arcology, since nothing can escape the notice of the omnipresent monitoring systems. Nevertheless, it seems one of your tenants saw fit to rape a free woman. Within ten minutes, the inhuman efficiency of $assistantName has compiled video recordings, physical evidence, and even the victim's testimony, which is quite consistent with the first two. Your wretched tenant signed a contract with you that included provisions forbidding this kind of thing. He is entirely at your mercy. - -<<elseif $malefactor == "mule">> +<<case "mule">> <<set $activeSlaveOneTimeMinAge = 13>> <<if $pedo_mode == 1>> @@ -275,15 +263,7 @@ <<set $activeSlave.behavioralFlaw = "shamefast">> <<set $activeSlave.accent = 0>> -<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a potential criminal has been detected by your security systems and is now being tailed by the drones. Crime is extremely uncommon in your arcology, since nothing can escape the notice of the omnipresent monitoring systems, but some individuals still make attempts to fool them. In this case, the cameras are fixed on a clearly pregnant, and hugely at that, woman as she works her way through the crowded market sectors. You watch as she repeatedly bumps into other patrons and stalls, pausing to apologize before proceeding on her way, as if she wasn't familiar with her gravid swell. Her body is also clearly underdeveloped for someone ready to drop quadruplets at any moment; thin, with barely any hips to speak of and a pert bust clearly not swollen with milk. She even walks like a woman not burdened with nine months of gestating multiples, let alone a single. As she stumbles under her own weight, her shirt rides up, giving you a clear view of the deep red stretch marks of a belly that grew far faster than it could handle. You've seen enough and order the drones to corral her until security arrives. Her expression shifts from fear as they encircle her to panic as a groan escapes her lips. She grabs her stomach as a capsule falls to the floor. As another contraction hits her, she drops to the ground and begins to "give birth" to her illegal cargo. -<<if $bellyImplants == 1>> - She likely has belly implant designed to carry foreign objects inside her womb and, having lost her composure, is now vacating its contents. -<<else>> - You have no idea what you are witnessing until <<if $assistantName == "your personal assistant">>your personal assistant pulls up an advertisement for a fillable womb located implant<<else>>$assistantName introduces you to a fillable womb located implant<</if>> that she likely has installed. -<</if>> -She is easily taken into custody and her contraband confiscated once the jeering crowd is dispersed enough to reach her. - -<<else>> +<<case "liberator">> <<set $activeSlaveOneTimeMinAge = random(12,28)>> <<set $activeSlaveOneTimeMaxAge = 43>> @@ -309,9 +289,55 @@ She is easily taken into custody and her contraband confiscated once the jeering <<set $activeSlave.hStyle = "shaved into a mohawk">> <<set $activeSlave.customTat = "She seems to have had slave tattoos at one time, but has had them cheaply removed.">> -<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a criminal has been detected by your security systems and detained by the drones. Crime is extremely uncommon in your arcology, but this is a special case. A well-muscled, well-armed woman was caught attempting to smuggle a slave owned by one of your tenants out of the arcology. Though the slave surrendered immediately (and will be dealt with by her owner), the would-be liberatrix was caught by your security drones. She destroyed two of them and caused @@.red;other minor damage@@<<set $cash -= 1000>> that will require a small sum to repair, but was eventually subdued. The drones had to expend a great deal of nonlethal ordnance to bring her down and keep her down, but she is now entirely at your mercy. +<</switch>> + +<<setLocalPronouns $activeSlave>> + +<<switch $malefactor>> + +<<case "addict">> + +<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a criminal has been detected by your security systems and detained by the drones. Crime is extremely uncommon in your arcology, since nothing can escape the notice of the omnipresent monitoring systems. Criminals are usually either too angry, too ignorant, or too stupid to understand the impossibility of successful petty crime. This is the latter situation; a girl suffering severe aphrodisiac withdrawal has attempted to break into a store that sells the stuff. $He's now lying in a pool of her own urine with a taser round stuck in her ass; the drone responsible is hovering helpfully nearby, hitting her with another shock whenever she does more than twitch. + +<<case "escapee">> + +<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a criminal has been detected by your security systems and detained by the drones. Crime is extremely uncommon in your arcology, since nothing can escape the notice of the omnipresent monitoring systems. This is a simple case of vagrancy; sleeping on the streets (due to penury rather than inebriation) breaks an implicit contract all visitors to the arcology sign by coming here. The criminal is anything but usual, however. She bears signs of extreme hormone manipulation over a long period, and has had her Achilles tendons clipped. Camera records show her crawling in with a cargo shipment. She's clad in rags, and you cannot find any record of her anywhere. The growing crowd is convinced she's an escaped slave, and is growing ugly. + +<<case "anchorBaby">> + +<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a criminal has been detected by your security systems and is waiting detainment. Crime is extremely uncommon in your arcology, since nothing can escape the notice of the omnipresent monitoring systems. This is likely another case of attempted escape by a slave or potentially a smuggling operation. The cause of detection is a steady stream of moaning emanating from a cargo container recently deposited into the arcology's cargo depot and has attracted a crowd of curious onlookers. Video feeds show the container being open and a heavily pregnant <<if $activeSlave.physicalAge > 30>>woman<<elseif $activeSlave.physicalAge > 19>>young woman<<elseif $activeSlave.physicalAge > 12>>teenager<<else>>little girl<</if>> staggering out while clutching a newborn to her breast and struggling to hold back her second child from being born. From what little language she knows, she seems to think that just giving birth in your arcology is enough to become a proper citizen; as expected, she squats and pushes out the other brat as you arrive. The growing crowd is becoming unruly, and her inability to speak the language isn't helping; things could get ugly at any moment and hinge entirely on your next move. + +<<case "orphanloli">> + +<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a criminal has been detected by your security systems and detained by the drones. Crime is extremely uncommon in your arcology, since nothing can escape the notice of the omnipresent monitoring systems. This is a simple case of vagrancy; sleeping on the streets (due to penury rather than inebriation) breaks an implicit contract all visitors to the arcology sign by coming here. Several reports of petty theft were made in the area recently as well. The criminal is anything but usual, however. She is very young, emaciated, and desperate. Camera records show her crawling in through an air vent. She's clad in rags, clutching a presumably stolen apple, and you cannot find any record of her anywhere. The growing crowd is convinced she's an escaped slave, and her inability to speak the language isn't helping; things could get ugly at any moment and hinge entirely on your next move. + +<<case "businesswoman">> + +<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a criminal has been detected by your security systems and detained by the drones. Crime is extremely uncommon in your arcology, since nothing can escape the notice of the omnipresent monitoring systems. Nevertheless, it seems one of your tenants, a hitherto well-respected businesswoman, has left the straight and narrow. It seems her business affairs took a decisive turn for the worse, so she attempted to drain her clients' funds and leave your arcology before anyone was the wiser. Unfortunately for her, your security drones, controlled by $assistantName, were very much the wiser. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> has with machine efficiency compiled the completest proofs of corporate malfeasance you have ever seen. Your wretched tenant signed a contract with you that included provisions forbidding theft. She is entirely at your mercy. + +<<case "whore">> + +<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a criminal has been detected by your security systems and detained by the drones. Crime is extremely uncommon in your arcology, since nothing can escape the notice of the omnipresent monitoring systems. Nevertheless, it seems one of your tenants, a free whore, has been systematically stealing from clients. She was furtive enough to get away with it for a time, but has now been caught red-handed. The john who caught her attempted to stop her, and she fought him: like many prostitutes she carried a weapon in her handbag, and the man is severely wounded. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> has with machine efficiency compiled a staggering dossier of video logs and personal testimony from previous customers who now understand where their personal belongings went, as well as appalling footage of today's victim's injuries. Your wretched tenant signed a contract with you that included provisions forbidding this kind of thing. She is entirely at your mercy. + +<<case "rapist">> +<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a criminal has been detected by your security systems and detained by the drones. Crime is extremely uncommon in your arcology, since nothing can escape the notice of the omnipresent monitoring systems. Nevertheless, it seems one of your tenants saw fit to rape a free woman. Within ten minutes, the inhuman efficiency of $assistantName has compiled video recordings, physical evidence, and even the victim's testimony, which is quite consistent with the first two. Your wretched tenant signed a contract with you that included provisions forbidding this kind of thing. He is entirely at your mercy. + +<<case "mule">> + +<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a potential criminal has been detected by your security systems and is now being tailed by the drones. Crime is extremely uncommon in your arcology, since nothing can escape the notice of the omnipresent monitoring systems, but some individuals still make attempts to fool them. In this case, the cameras are fixed on a clearly pregnant, and hugely at that, woman as she works her way through the crowded market sectors. You watch as she repeatedly bumps into other patrons and stalls, pausing to apologize before proceeding on her way, as if she wasn't familiar with her gravid swell. Her body is also clearly underdeveloped for someone ready to drop quadruplets at any moment; thin, with barely any hips to speak of and a pert bust clearly not swollen with milk. She even walks like a woman not burdened with nine months of gestating multiples, let alone a single. As she stumbles under her own weight, her shirt rides up, giving you a clear view of the deep red stretch marks of a belly that grew far faster than it could handle. You've seen enough and order the drones to corral her until security arrives. Her expression shifts from fear as they encircle her to panic as a groan escapes her lips. She grabs her stomach as a capsule falls to the floor. As another contraction hits her, she drops to the ground and begins to "give birth" to her illegal cargo. +<<if $bellyImplants == 1>> + She likely has belly implant designed to carry foreign objects inside her womb and, having lost her composure, is now vacating its contents. +<<else>> + You have no idea what you are witnessing until <<if $assistantName == "your personal assistant">>your personal assistant pulls up an advertisement for a fillable womb located implant<<else>>$assistantName introduces you to a fillable womb located implant<</if>> that she likely has installed. <</if>> +She is easily taken into custody and her contraband confiscated once the jeering crowd is dispersed enough to reach her. + +<<case "liberator">> + +<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> alerts you that a criminal has been detected by your security systems and detained by the drones. Crime is extremely uncommon in your arcology, but this is a special case. A well-muscled, well-armed woman was caught attempting to smuggle a slaveowned by one of your tenants out of the arcology. Though the slave surrendered immediately (and will be dealt with by her owner), the would-be liberatrix was caught by your security drones. She destroyed two of them and caused @@.red;other minor damage@@<<set $cash -= 1000>> that will require a small sum to repair, but was eventually subdued. The drones had to expend a great deal of nonlethal ordnance to bring her down and keep her down, but she is now entirely at your mercy. + +<</switch>> <br><br> @@ -319,7 +345,7 @@ She is easily taken into custody and her contraband confiscated once the jeering <<slaveCost $activeSlave>> <<set $slaveCost -= 1000>> -//Applying enslavement as punishment will cost <<print cashFormat($contractCost)>>. Doing so and then selling her immediately will bring in approximately <<print cashFormat($slaveCost)>>.// +//Applying enslavement as punishment will cost <<print cashFormat($contractCost)>>. Doing so and then selling $him immediately will bring in approximately <<print cashFormat($slaveCost)>>.// <br><br> @@ -329,7 +355,7 @@ She is easily taken into custody and her contraband confiscated once the jeering <span id="result"> <<if $cash >= $contractCost>> - <<link "Enslave her">> + <<link "Enslave $him">> <<set $cash -= $contractCost>> <<replace "#result">> <<switch $malefactor>> @@ -341,15 +367,15 @@ She is easily taken into custody and her contraband confiscated once the jeering You complete the legalities and biometric scanning quickly and without fuss. She sobs throughout the process, though stops once she realizes being a slave means free food. <<case "anchorBaby">> You complete the legalities and biometric scanning quickly and without fuss. She doesn't stop screaming "citizenship" until her children are taken from her and she is shoved off to the penthouse for basic slave induction. - <<case "whore" "rapist" "businesswoman" "mule">> + <<case "businesswoman" "mule" "rapist" "whore">> You complete the legalities and biometric scanning quickly and without fuss. The condemned sobs and begs throughout the process until you grow tired of the whining and apply punishment. Then it's off to the penthouse for basic slave induction. - <<default>> + <<case "liberator">> You complete the legalities and biometric scanning quickly and cautiously. Though the would-be liberator is of course restrained, disarmed, and still sedated, she could awake at any time. Based on the drone logs, she is likely to be violent when she does. <</switch>> <<include "New Slave Intro">> <</replace>> <</link>> - <br><<link "Sentence her to a day in the stocks, then enslave her">> + <br><<link "Sentence $him to a day in the stocks, then enslave $him">> <<set $activeSlave.health -= 10>> <<set $activeSlave.behavioralFlaw = "odd">> <<set $activeSlave.sexualFlaw = "hates penetration">> @@ -372,33 +398,34 @@ She is easily taken into custody and her contraband confiscated once the jeering <<if $activeSlave.publicCount>><<set $activeSlave.publicCount += _fuckCount>><<else>><<set $activeSlave.publicCount = _fuckCount>><</if>> <<set $cash -= $contractCost>> <<replace "#result">> - <<if $malefactor == "addict">> - You declare her holes fair game for the entire arcology, since she must somehow repay her debt to society. She spends a torturous day in the stocks before being hauled in for enslavement, somewhat @@.red;the worse for wear@@ and @@.red;acting oddly@@ due to her ordeal, bruises all over her body, cum leaking from her @@.lime;loosened@@ anus<<if $activeSlave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun.@@ - <<elseif $malefactor == "escapee">> - You declare her holes fair game for the entire arcology, so that all free citizens can own her for a moment, if they wish. She spends a torturous day in the stocks before being hauled in for enslavement, somewhat @@.red;the worse for wear@@ and @@.red;acting oddly@@ due to her ordeal, bruises all over her body, cum leaking from her @@.lime;loosened@@ anus<<if $activeSlave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun.@@ - <<elseif $malefactor == "orphanloli">> + <<switch $malefactor>> + <<case "addict">> + You declare $his holes fair game for the entire arcology, since she must somehow repay her debt to society. She spends a torturous day in the stocks before being hauled in for enslavement, somewhat @@.red;the worse for wear@@ and @@.red;acting oddly@@ due to her ordeal, bruises all over her body, cum leaking from her @@.lime;loosened@@ anus<<if $activeSlave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun.@@ + <<case "escapee">> + You declare $his holes fair game for the entire arcology, so that all free citizens can own her for a moment, if they wish. She spends a torturous day in the stocks before being hauled in for enslavement, somewhat @@.red;the worse for wear@@ and @@.red;acting oddly@@ due to her ordeal, bruises all over her body, cum leaking from her @@.lime;loosened@@ anus<<if $activeSlave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun.@@ + <<case "orphanloli">> You declare her holes fair game for the entire arcology, so that all free citizens can own her for a moment, if they wish. She spends a torturous day in the stocks before being hauled in for enslavement, @@.red;completely broken@@ due to her ordeal, bruises all over her body, cum leaking from her @@.lime;loosened@@ anus<<if $activeSlave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun.@@ <<set $activeSlave.fetish = "mindbroken">> - <<elseif $malefactor == "anchorBaby">> - You declare her holes fair game for the entire arcology; since she wants to produce future slaves, your arcology might as well have the privilege of fathering them. She spends a torturous day in the stocks after her children are taken to a slave orphanage before being hauled in for enslavement, somewhat @@.red;the worse for wear@@ and @@.red;acting oddly@@ due to her ordeal, bruises all over her body, cum leaking from her @@.lime;loosened@@ anus<<if $activeSlave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun.@@ - <<elseif $malefactor == "businesswoman">> + <<case "anchorBaby">> + You declare her holes fair game for the entire arcology; since she wants to produce future slaves, your arcology might as well have the privilege of fathering them. She spends a torturous day in the stocks after $his children are taken to a slave orphanage before being hauled in for enslavement, somewhat @@.red;the worse for wear@@ and @@.red;acting oddly@@ due to her ordeal, bruises all over her body, cum leaking from her @@.lime;loosened@@ anus<<if $activeSlave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun.@@ + <<case "businesswoman">> You declare her holes fair game for the entire arcology, in payment for her crimes. She spends a torturous day in the stocks before being hauled in for enslavement, somewhat @@.red;the worse for wear@@ and @@.red;acting oddly@@ due to her ordeal, bruises all over her body, cum leaking from her @@.lime;loosened@@ anus<<if $activeSlave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun.@@ - <<elseif $malefactor == "whore">> + <<case "whore">> You declare her holes fair game for the entire arcology, to repay her thefts. She spends a torturous day in the stocks before being hauled in for enslavement, somewhat @@.red;the worse for wear@@ and @@.red;acting oddly@@ due to her ordeal, bruises all over her body, cum leaking from her @@.lime;loosened@@ anus<<if $activeSlave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun.@@ - <<elseif $malefactor == "rapist">> + <<case "rapist">> You declare her holes fair game for the entire arcology. She spends a torturous day in the stocks before being hauled in for enslavement, somewhat @@.red;the worse for wear@@ and @@.red;acting oddly@@ due to her ordeal, bruises all over her body, cum leaking from her @@.lime;loosened@@ anus<<if $activeSlave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun.@@ - <<elseif $malefactor == "mule">> + <<case "mule">> You declare her holes fair game for the entire arcology as punishment for trying to smuggle in a load instead of taking one. She spends a torturous day in the stocks before being hauled in for enslavement, somewhat @@.red;the worse for wear@@ and @@.red;acting oddly@@ due to her ordeal, bruises all over her body, cum leaking from her @@.lime;loosened@@ anus<<if $activeSlave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun.@@ - <<else>> - Slaveownership is the cornerstone of the society you're building in your arcology, and this woman attempted to undermine it. Her holes are thus fair game for the entire arcology. She spends a torturous day in the stocks before being hauled in for enslavement, somewhat @@.red;the worse for wear@@ and @@.red;acting oddly@@ due to her ordeal, bruises all over her body, cum leaking from her @@.lime;loosened@@ anus<<if $activeSlave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun,@@ and small slaveholders are @@.green;encouraged to do business with your arcology@@ after word of the incident gets around. - <</if>> + <<case "liberator">> + Slaveownership is the cornerstone of the society you're building in your arcology, and this $woman attempted to undermine it. $His holes are thus fair game for the entire arcology. $He spends a torturous day in the stocks before being hauled in for enslavement, somewhat @@.red;the worse for wear@@ and @@.red;acting oddly@@ due to $his ordeal, bruises all over $his body, cum leaking from $his @@.lime;loosened@@ anus<<if $activeSlave.vagina > -1>> and @@.lime;fucked-out@@ pussy<</if>>. The public @@.green;enjoys the fun,@@ and small slaveholders are @@.green;encouraged to do business with your arcology@@ after word of the incident gets around. + <</switch>> <<set $rep += 100>> <<set $arcologies[0].prosperity += 2>> <<include "New Slave Intro">> <</replace>> <</link>> <<if $arcade > 0>> - <br><<link "Enslave her and sentence her to a month in the arcade">> + <br><<link "Enslave $him and sentence $him to a month in the arcade">> <<= assignJob($activeSlave, "be confined in the arcade")>> <<set $activeSlave.choosesOwnAssignment = 0>> <<set $activeSlave.sentence = 4>> @@ -411,9 +438,9 @@ She is easily taken into custody and her contraband confiscated once the jeering You complete the legalities and biometric scanning quickly, and tell the crowd that her holes will be available at the arcade within the hour. The public @@.green;looks forward@@ to seeing her there, angrily suspecting her of being an escapee and glad that they'll be able to take part in her punishment. <<case "anchorBaby">> You complete the legalities and biometric scanning quickly and have her children taken away. The condemned screeches her displeasure throughout the process until you grow tired of the whining and sedate her for immurement in the arcade. The public @@.green;looks forward@@ to seeing her there and vying to see who gets to fill her womb with another child. - <<case "whore" "rapist" "mule" "businesswoman">> + <<case "businesswoman" "mule" "rapist" "whore">> You complete the legalities and biometric scanning quickly and cautiously. The condemned sobs and begs throughout the process until you grow tired of the whining and sedate her for immurement in the arcade. The public @@.green;looks forward@@ to seeing her there and getting some of their own back. - <<default>> + <<case "liberator">> You complete the legalities and biometric scanning quickly and cautiously. Though the would-be liberator is of course restrained, disarmed, and still sedated, she could awake at any time. It would be best to have her restrained for public use in the arcade first. The public @@.green;looks forward@@ to seeing her there. <</switch>> <<set $rep += 50>> @@ -424,27 +451,28 @@ She is easily taken into custody and her contraband confiscated once the jeering <<if $malefactor != "mule">> <<if $dairy > 0>> <<if $dairyRestraintsSetting > 1>> - <br><<link "Enslave her and send her straight to the industrial dairy">> + <br><<link "Enslave $him and send $him straight to the industrial dairy">> <<= assignJob($activeSlave, "work in the dairy")>> <<set $cash -= $contractCost>> <<replace "#result">> - <<if $malefactor == "addict">> + <<switch $malefactor>> + <<case "addict">> You complete the legalities and biometric scanning quickly and cautiously. The condemned accepts a sedative, thinking it's aphrodisiacs, and her unconscious body is installed in $dairyName. The public @@.green;accepts@@ this as an appropriate punishment, especially when you release footage of the addict's <<if $dairyStimulatorsSetting > 1>>agony as her anus adapts to accommodate rectal dildo hydration<<elseif ($dairyPregSetting > 1) && ($activeSlave.vagina > 0)>>discomfort as her pussy adapts to industrial reproduction<<else>>breasts as they are roughly milked<</if>>, together with a lengthy report on the experimental detox process used to ensure that the milk she produces will be untainted. - <<elseif $malefactor == "escapee">> + <<case "escapee">> You complete the legalities and biometric scanning quickly. The condemned is too far gone to resist as she is installed in $dairyName. The public @@.green;accepts@@ this as an appropriate punishment, especially when you release footage of the escapee's <<if $dairyStimulatorsSetting > 1>>agony as her anus adapts to accommodate rectal dildo hydration<<elseif ($dairyPregSetting > 1) && ($activeSlave.vagina > 0)>>discomfort as her pussy adapts to industrial reproduction<<else>>breasts as they are roughly milked<</if>>. - <<elseif $malefactor == "orphanloli">> + <<case "orphanloli">> You complete the legalities and biometric scanning quickly. The condemned is too weak to resist as she is installed in $dairyName but she weeps the entire time. The public @@.green;accepts@@ this as an appropriate punishment, especially when you release footage of the escapee's <<if $dairyStimulatorsSetting > 1>>agony as her anus adapts to accommodate rectal dildo hydration<<elseif ($dairyPregSetting > 1) && ($activeSlave.vagina > 0)>>agony as her once tight pussy adapts to industrial reproduction<<else>>budding breasts as they are roughly milked<</if>>. - <<elseif $malefactor == "anchorBaby">> + <<case "anchorBaby">> You complete the legalities and biometric scanning quickly and cautiously before having her children taken away. The condemned resists installation in $dairyName with energy born of desperation. The public @@.green;accepts@@ this as an appropriate punishment, especially when you release footage of the criminal's <<if ($dairyPregSetting > 1) && ($activeSlave.vagina > 0)>>discomfort as her pussy adapts to industrial reproduction, along with a prospectus detailing the scheduled sale of her next batch of slave product in eighteen years and nine months<<elseif $dairyStimulatorsSetting > 1>>agony as her anus adapts to accommodate rectal dildo hydration<<else>>breasts as they are roughly milked<</if>>. - <<elseif $malefactor == "businesswoman">> + <<case "businesswoman">> You complete the legalities and biometric scanning quickly and cautiously. The condemned resists installation in $dairyName with energy born of desperation. The public @@.green;accepts@@ this as an appropriate punishment, especially when you release footage of the criminal's <<if ($dairyPregSetting > 1) && ($activeSlave.vagina > 0)>>discomfort as her pussy adapts to industrial reproduction, along with a prospectus detailing the scheduled sale of her first slave product in eighteen years and nine months<<elseif $dairyStimulatorsSetting > 1>>agony as her anus adapts to accommodate rectal dildo hydration<<else>>breasts as they are roughly milked<</if>>. - <<elseif $malefactor == "whore">> + <<case "whore">> You complete the legalities and biometric scanning quickly and cautiously. The condemned resists installation in $dairyName with energy born of desperation. The public @@.green;accepts@@ this as an appropriate punishment, especially when you release footage of the criminal's <<if ($dairyPregSetting > 1) && ($activeSlave.vagina > 0)>>discomfort as her well-traveled pussy adapts to industrial reproduction<<elseif $dairyStimulatorsSetting > 1>>discomfort as her well-traveled anus adapts to accommodate rectal dildo hydration<<else>>breasts as they are roughly milked<</if>>. - <<elseif $malefactor == "rapist">> + <<case "rapist">> You complete the legalities and biometric scanning quickly and cautiously. The condemned resists installation in $dairyName with energy born of desperation. The public @@.green;accepts@@ this as an appropriate punishment, especially when you release footage of the rapist's <<if $dairyStimulatorsSetting > 1>>agony as her anus adapts to accommodate rectal dildo hydration<<else>>newly growing breasts as they are roughly milked<</if>>. - <<else>> + <<case "liberator">> You complete the legalities and biometric scanning quickly and cautiously. The condemned resists installation in $dairyName with energy born of desperation. The public @@.green;accepts@@ this as an appropriate punishment, especially when you release footage of the criminal's <<if ($dairyPregSetting > 1) && ($activeSlave.vagina > 0)>>discomfort as her pussy adapts to industrial reproduction<<elseif $dairyStimulatorsSetting > 1>>discomfort as her anus adapts to accommodate rectal dildo hydration<<else>>breasts as they are roughly milked<</if>>, together with a report on the likely productivity of such a fit body capable of withstanding the stress of high throughput. - <</if>> + <</switch>> <<set $rep += 50>> <<run newSlave($activeSlave)>> /* skip New Slave Intro */ <</replace>> @@ -453,45 +481,46 @@ She is easily taken into custody and her contraband confiscated once the jeering <</if>> /* closes dairy > 0 */ <</if>> <<if $seeExtreme > 0>> - <br><<link "Punitively amputate her limbs, and then enslave her">> + <br><<link "Punitively amputate $his limbs, and then enslave $him">> <<set $activeSlave.health -= 20>> <<set $activeSlave.amp = 1>> <<set $activeSlave.heels = 0>> <<set $activeSlave.behavioralFlaw = "odd">> <<set $cash -= $contractCost>> <<replace "#result">> - <<if $malefactor == "addict">> + <<switch $malefactor>> + <<case "addict">> An example must be made. Free people must understand that criminals who commit outrages against them will be severely punished. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. She begs for a fix until she realizes what's coming, at which point she switches to fighting vainly to escape. Of course, @@.red;her health is affected@@ and the horrible experience has left her @@.red;acting oddly.@@ Then it's off to the penthouse for basic slave induction. The public @@.green;approves of this harshness.@@ - <<elseif $malefactor == "escapee">> + <<case "escapee">> An example must be made. If she escaped once with her tendons clipped, she must be rather talented at it. It remains to be seen if she can manage to escape with nor arms and legs, so you announce her sentence to the crowd and send her unconscious form for reduction. Of course, @@.red;her health is affected.@@ The public @@.green;approves of this harshness,@@ believing that you have taken strong measures against escapees. - <<elseif $malefactor == "orphanloli">> + <<case "orphanloli">> An example must be made. If she thinks she can escape captivity and steal to survive, lets see her try without arms and legs, so you announce her sentence to the crowd and send her unconscious form for reduction. Of course, @@.red;her health is affected.@@ The public @@.green;approves of this harshness,@@ believing that you have taken strong measures against escapees. - <<elseif $malefactor == "anchorBaby">> + <<case "anchorBaby">> An example must be made. Potential immigrants must understand that attempting to circumvent the process will result in severe fines and proportional punishment when they are incapable of paying them. The protesting mother is stripped, both of clothing and children, and stuffed into your remote surgery on public video feed. She begs and pleads until she sees her doom in the form of the surgical machinery, at which point she switches to fighting vainly to escape. Of course, @@.red;her health is affected@@ and the horrible experience has left her @@.red;acting oddly.@@ Then it's off to the penthouse for basic slave induction. The public @@.green;approves of this harshness,@@ since she can hardly attempt to smuggle things into your arcology without the ability to move. - <<elseif $malefactor == "businesswoman">> + <<case "businesswoman">> An example must be made. Free people must understand that criminals who commit outrages against them will be severely punished. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. She begs and pleads until she sees her doom in the form of the surgical machinery, at which point she switches to fighting vainly to escape. Of course, @@.red;her health is affected@@ and the horrible experience has left her @@.red;acting oddly.@@ Then it's off to the penthouse for basic slave induction. The public @@.green;approves of this harshness.@@ - <<elseif $malefactor == "whore">> + <<case "whore">> An example must be made. Free people must understand that criminals who commit outrages against them will be severely punished. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. She begs and pleads until she sees her doom in the form of the surgical machinery, at which point she switches to fighting vainly to escape. Of course, @@.red;her health is affected@@ and the horrible experience has left her @@.red;acting oddly.@@ Then it's off to the penthouse for basic slave induction. The public @@.green;approves of this harshness,@@ since she can hardly attempt to steal anything without hands. - <<elseif $malefactor == "rapist">> + <<case "rapist">> An example must be made. Rape is rare in your arcology, since citizens are so generously provided with means of sexual outlet. When the price of renting a slave that's impossible to rape is as low as it is, sexual assault of a free woman is doubly unforgivable. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. She begs and pleads until she sees her doom in the form of the surgical machinery, at which point she switches to fighting vainly to escape. Of course, @@.red;her health is affected@@ and the horrible experience has left her @@.red;acting oddly.@@ Then it's off to the penthouse for basic slave induction. The public @@.green;approves of this harshness,@@ since even if she cheers up and ever manages an erection again, she's not likely to rape anyone without arms or legs. - <<elseif $malefactor == "mule">> + <<case "mule">> An example must be made. With the quantity of drugs consumed in the arcology, quality is everything and attempting to undermine that is unforgivable. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. She begs and pleads until she sees her doom in the form of the surgical machinery, at which point she switches to fighting vainly to escape. Of course, @@.red;her health is affected@@ and the horrible experience has left her @@.red;acting oddly.@@ Then it's off to the penthouse for basic slave induction. The public @@.green;approves of this harshness,@@ since she can hardly haul contraband into your arcology without the ability to move herself. - <<else>> - An example must be made. Slaveownership is the cornerstone of the society you're building in your arcology, and this woman attempted to undermine it. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. She begs and pleads until she sees her doom in the form of the surgical machinery, at which point she switches to fighting vainly to escape. Of course, @@.red;her health is affected@@ and the horrible experience has left her @@.red;acting oddly.@@ Then it's off to the penthouse for basic slave induction. The public @@.green;approves of this harshness,@@ since she will scarcely be able to liberate anyone without arms or legs. - <</if>> + <<case "liberator">> + An example must be made. Slaveownership is the cornerstone of the society you're building in your arcology, and this $woman attempted to undermine it. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. $He begs and pleads until $he sees $his doom in the form of the surgical machinery, at which point $he switches to fighting vainly to escape. Of course, @@.red;$his health is affected@@ and the horrible experience has left $him @@.red;acting oddly.@@ Then it's off to the penthouse for basic slave induction. The public @@.green;approves of this harshness,@@ since $he will scarcely be able to liberate anyone without arms or legs. + <</switch>> <<set $rep += 100>> <<include "New Slave Intro">> <</replace>> <</link>> <<if $malefactor == "rapist" && $activeSlave.balls > 0>> - <br><<link "Enslave the criminal and geld her">> + <br><<link "Enslave the criminal and geld $him">> <<set $activeSlave.health -= 20>> <<set $activeSlave.balls = 0>> <<set $activeSlave.devotion -= 25>> <<set $activeSlave.trust -= 25>> <<set $cash -= $contractCost>> <<replace "#result">> - Video feeds from your remote surgery are made public as the protesting criminal is strapped down and gelded. She is so utterly broken by this turn of events that you complete the legalities and biometric scanning without fuss. The condemned sobs weakly throughout the process until you grow tired of the whining and apply punishment. Then it's off to the penthouse for basic slave induction. The public @@.green;approves of this harshness,@@ which increases your arcology's prosperity by @@.green;giving it a reputation for swift and terrible justice.@@ + Video feeds from your remote surgery are made public as the protesting criminal is strapped down and gelded. $He is so utterly broken by this turn of events that you complete the legalities and biometric scanning without fuss. The condemned sobs weakly throughout the process until you grow tired of the whining and apply punishment. Then it's off to the penthouse for basic slave induction. The public @@.green;approves of this harshness,@@ which increases your arcology's prosperity by @@.green;giving it a reputation for swift and terrible justice.@@ <<set $rep += 100>> <<set $arcologies[0].prosperity += 10>> <<include "New Slave Intro">> @@ -500,7 +529,7 @@ She is easily taken into custody and her contraband confiscated once the jeering <</if>> <</if>> /* closes seeExtreme */ <<if $malefactor == "orphanloli">> - <br><<link "'Adopt' her">> + <br><<link "'Adopt' $him">> <<set $activeSlave.devotion = 25>> <<set $activeSlave.trust = 25>> <<set $cash -= $contractCost>> @@ -516,7 +545,7 @@ She is easily taken into custody and her contraband confiscated once the jeering <</if>> <<if $malefactor == "anchorBaby">> <<if $arcologies[0].FSRepopulationFocus != "unset">> - <br><<link "Grant her citizenship">> + <br><<link "Grant $him citizenship">> <<replace "#result">> You help the exhausted mother to her feet and hand her her second newborn. She watches you, uncertain of your motives, until you have her escorted to the proper welcoming facility and put in a good word for having her added to your arcology's free population. You announce to the public that such a fertile <<if $activeSlave.physicalAge > 30>>milf<<elseif $activeSlave.physicalAge > 19>>woman<<elseif $activeSlave.physicalAge > 12>>teen<<else>>youth<</if>> will be a boon to Repopulationism, and that the contract she is signing mandates she be on powerful fertility agents whenever she isn't pregnant. During her residency, free or not, she will provide society with dozens of future children. The public @@.green;approves of breeders, free or not,@@ and word spreads that any and all mothers are welcome into your arcology @@.green;adding to its prosperity.@@ <<set $rep += 10>> @@ -538,24 +567,24 @@ She is easily taken into custody and her contraband confiscated once the jeering Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The screaming breeder is flogged on the promenade before being dragged bleeding and broken out of the arcology sans her children; they are destined for the slave orphanage. The public @@.green;approves of this harshness.@@ <<case "businesswoman">> Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The protesting bitch is stripped and flogged on the promenade before being escorted bleeding from the arcology. The public @@.green;approves of this harshness.@@ - <<case "whore" "mule" "rapist">> + <<case "mule" "rapist" "whore">> Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The protesting malefactor is stripped and flogged on the promenade before being escorted bleeding from the arcology. The public @@.green;approves of this harshness.@@ - <<default>> - An example must be made. Slaveownership is the cornerstone of the society you're building in your arcology, and this woman attempted to undermine it. The protesting bitch is stripped and flogged on the promenade before being escorted bleeding from the arcology. The public @@.green;approves of this harshness.@@ + <<case "liberator">> + An example must be made. Slaveownership is the cornerstone of the society you're building in your arcology, and this $woman attempted to undermine it. The protesting bitch is stripped and flogged on the promenade before being escorted bleeding from the arcology. The public @@.green;approves of this harshness.@@ <</switch>> <<set $rep += 100>> <</replace>> <</link>> <<if $malefactor == "liberator">> -<br><<link "Permit the slaveowner she tried to steal from to flog her">> +<br><<link "Permit the slaveowner $he tried to steal from to flog $him">> <<replace "#result">> - An example must be made. Slaveownership is the cornerstone of the society you're building in your arcology, and this woman attempted to undermine it. She is stripped and the slaveowner whose property she tried to free is handed the leathern instrument. It seems the escapee was a favorite he does not wish to mangle, so he flogs the criminal mercilessly instead. She is flung out of the arcology, nearly dead. The public @@.green;approves of this harshness,@@ and small slaveholders are @@.green;encouraged to do business with your arcology@@ after word of the incident gets around. + An example must be made. Slaveownership is the cornerstone of the society you're building in your arcology, and this $woman attempted to undermine it. $He is stripped and the slaveowner whose property $he tried to free is handed the leathern instrument. It seems the escapee was a favorite he does not wish to mangle, so he flogs the criminal mercilessly instead. $He is flung out of the arcology, nearly dead. The public @@.green;approves of this harshness,@@ and small slaveholders are @@.green;encouraged to do business with your arcology@@ after word of the incident gets around. <<set $rep += 100>> <<set $arcologies[0].prosperity += 10>> <</replace>> <</link>> <</if>> -<br><<link "Sell her immediately">> +<br><<link "Sell $him immediately">> <<set $cash += $slaveCost>> <<if $cash4Babies == 1 && $malefactor == "anchorBaby">> <<set $cash += random(20,30)>> @@ -570,10 +599,10 @@ She is easily taken into custody and her contraband confiscated once the jeering You complete the legalities and biometric scanning quickly and without fuss. She sobs throughout the process, though stops once she realizes being a slave means free food. She starts crying again once she realizes she is heading for the slave markets. <<case "anchorBaby">> You complete the legalities and biometric scanning quickly and without fuss. The condemned sobs and begs throughout the process until you grow tired of the whining and apply punishment. Then it's off to slave markets for sale. Her children <<if $cash4Babies == 1>>head off to be sold as well<<else>>will be sent to a slave orphanage for future sale<</if>>. - <<case "businesswoman" "whore" "rapist" "mule">> + <<case "businesswoman" "mule" "rapist" "whore">> You complete the legalities and biometric scanning quickly and without fuss. The condemned sobs and begs throughout the process until you grow tired of the whining and apply punishment. Then it's off to slave markets for sale. - <<default>> - You complete the legalities and biometric scanning quickly and cautiously. Though the would-be liberator is of course restrained, disarmed, and still sedated, she could awake at any time. Based on the drone logs, she is likely to be violent when she does. You make sure that she isn't going to get loose as she is sent off to the slave market; the public would not be pleased if she went on another rampage. + <<case "liberator">> + You complete the legalities and biometric scanning quickly and cautiously. Though the would-be liberator is of course restrained, disarmed, and still sedated, she could awake at any time. Based on the drone logs, she is likely to be violent when she does. You make sure that she isn't going to get loose as $he is sent off to the slave market; the public would not be pleased if she went on another rampage. <</switch>> <</replace>> <</link>> diff --git a/src/uncategorized/reNickname.tw b/src/uncategorized/reNickname.tw index 7d15bdd38b2dfe983feec6c1b9e6c93ee2959c22..a8a8c286e6764193c92e3d46a88699b4f29628fe 100644 --- a/src/uncategorized/reNickname.tw +++ b/src/uncategorized/reNickname.tw @@ -753,7 +753,7 @@ <<set $notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">> <<case "semitic">> - <<set $nickname = either("'Abie'", "'Abrahamic'", "'Baal worshipper'", "'Biblical'", "'Canaanite'", "'Dead Sea'", "'Golden Calf'", "'Good Samaritan'", "'Hebrew'", "'Heeb'", "'Holy land'", "'Hymie'", "'Inanna'", "'Ishtar'", "'Kike'", "'Kosher'", "'Levantine'", "'Lilith'", "'Lost Ark'", "'Nephilim'", "'Oven Dodger'", "'Oy Vey'", "'Philistine'", "'Qedesha'", "'Red Sea'", "'Salome'", "'Semite'", "'Semitic'", "'Sheeny'", "'Shylock'", "'Sodom and Gomorrah'", "'Whore of Babylon'", "'Yid'")>> + <<set $nickname = either("'Abie'", "'Abrahamic'", "'Baal Worshiper'", "'Biblical'", "'Canaanite'", "'Dead Sea'", "'Golden Calf'", "'Good Samaritan'", "'Hebrew'", "'Heeb'", "'Holy land'", "'Hymie'", "'Inanna'", "'Ishtar'", "'Kike'", "'Kosher'", "'Levantine'", "'Lilith'", "'Lost Ark'", "'Nephilim'", "'Oven Dodger'", "'Oy Vey'", "'Philistine'", "'Qedesha'", "'Red Sea'", "'Salome'", "'Semite'", "'Semitic'", "'Sheeny'", "'Shylock'", "'Sodom and Gomorrah'", "'Whore of Babylon'", "'Yid'")>> <<set $situationDesc = "is semitic, which is not uncommon given the many conflicts in countries with semitic minorities. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">> <<set $applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">> <<set $notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">> diff --git a/src/uncategorized/rePokerNight.tw b/src/uncategorized/rePokerNight.tw index 8c19c6e1d78c0e473e3c9ec00876166ee3adee3e..bd056902763bbeaee492df1200ba04b73fe97560 100644 --- a/src/uncategorized/rePokerNight.tw +++ b/src/uncategorized/rePokerNight.tw @@ -100,12 +100,12 @@ On a particularly lackadaisical evening, you find yourself alerted to a message <<link "A year of servitude">> <<replace "#aliveresult">> <<if random(1,100) > 50>> - For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck was not on your side. As the victor sweeps up $his spoils, the other mercenaries clap you on the back and offer their condolences for your defeat. Though you may have lost your ¤, it seems you've @@.green;made some friends.@@ - <<set $rep += 1000, $cash -= 5000>> + For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck was not on your side. As the victor sweeps up $his spoils, the other mercenaries clap you on the back and offer their condolences for your defeat. Though you may have lost your ¤, it seems you've @@.green;made some friends.@@ + <<set $rep += 1000, $cash -= 5000>> <<else>> - For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck has rendered you the victor. A silence falls over the room as the result is declared, but after some time your opponent breaks the hush by joking that life as your slave is probably easier than fighting for $arcologies[0].name. After some awkward laughter the night continues, and at the end your former mercenary joins you on your trip back to the penthouse to submit to processing and to begin $his new life as your sexual servant. $He's not young, but $he's tough and not distrusting of you due to $his service in the $mercenariesTitle. - <br> - <<include "New Slave Intro">> + For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck has rendered you the victor. A silence falls over the room as the result is declared, but after some time your opponent breaks the hush by joking that life as your slave is probably easier than fighting for $arcologies[0].name. After some awkward laughter the night continues, and at the end your former mercenary joins you on your trip back to the penthouse to submit to processing and to begin $his new life as your sexual servant. $He's not young, but $he's tough and not distrusting of you due to $his service in the $mercenariesTitle. + <br> + <<include "New Slave Intro">> <</if>> <</replace>> <</link>> @@ -115,11 +115,11 @@ On a particularly lackadaisical evening, you find yourself alerted to a message <<link "Dock $his wages">> <<replace "#aliveresult">> <<if random(1,100) > 50>> - For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck was not on your side. As the victor sweeps up $his spoils, the other mercenaries clap you on the back and offer their condolences for your defeat. Though you may have lost your ¤, it seems you've @@.green;made some friends.@@ - <<set $rep += 1000, $cash -= 5000>> + For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck was not on your side. As the victor sweeps up $his spoils, the other mercenaries clap you on the back and offer their condolences for your defeat. Though you may have lost your ¤, it seems you've @@.green;made some friends.@@ + <<set $rep += 1000, $cash -= 5000>> <<else>> - For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck has rendered you the victor. Your opponent accepts $his defeat with grace and jokes to $his comrades that $he'll be fighting in $his underwear for the next few months, and their uproar of laughter fills the room. Though you take the lion's share of the ¤, your mercenaries also @@.green;had a good time fraternizing with you.@@ - <<set $rep += 200, $cash += 5000>> + For all your skillful maneuvering to reach this position, ultimately the win comes down to chance. This time, however, luck has rendered you the victor. Your opponent accepts $his defeat with grace and jokes to $his comrades that $he'll be fighting in $his underwear for the next few months, and their uproar of laughter fills the room. Though you take the lion's share of the ¤, your mercenaries also @@.green;had a good time fraternizing with you.@@ + <<set $rep += 200, $cash += 5000>> <</if>> <</replace>> <</link>> diff --git a/src/uncategorized/reRecruit.tw b/src/uncategorized/reRecruit.tw index 034c7298a3b3b3cc0b62102511be67a134395cfe..1925b5d2b92a70d97af2a553859f536c15155ed4 100644 --- a/src/uncategorized/reRecruit.tw +++ b/src/uncategorized/reRecruit.tw @@ -1777,7 +1777,7 @@ <<if $arcologies[0].FSSupremacist != "unset">> <<set $fixedRace = $arcologies[0].FSSupremacistRace>> <<elseif $arcologies[0].FSSubjugationist != "unset">> - <<set _races = ["white", "asian", "latina", "middle eastern", "black", "indo-aryan", "pacific islander", "malay", "amerindian", "southern european", "semitic", "mixed race"]>> + <<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>> <<set _races.delete($arcologies[0].FSSubjugationistRace)>> <<set $fixedRace = _races.random()>> <</if>> diff --git a/src/uncategorized/reRelativeRecruiter.tw b/src/uncategorized/reRelativeRecruiter.tw index 4a8d7d7044efb1c5b9bdbe9ae24856d4ffda4b0c..6a75416100072a707330b1e171f2adda35bd20cb 100644 --- a/src/uncategorized/reRelativeRecruiter.tw +++ b/src/uncategorized/reRelativeRecruiter.tw @@ -22,6 +22,7 @@ <</if>> <<run Enunciate($eventSlave)>> +<<setLocalPronouns $eventSlave>> <<set _recruitedType = []>> <<if $eventSlave.mother == 0 && $activeSlave.actualAge < 24 && $seeDicks != 100>> @@ -134,12 +135,12 @@ <<set WombFlush($activeSlave)>> <<run SetBellySize($activeSlave)>> - $eventSlave.slaveName requests an interview with you. She's a devoted slave, and you grant it, and are happy you did when you see the troubled expression on her face. She explains<<if !canTalk($eventSlave)>> with desperate gestures<</if>> that + $eventSlave.slaveName requests an interview with you. $He's a devoted slave, and you grant it, and are happy you did when you see the troubled expression on her face. $He explains<<if !canTalk($eventSlave)>> with desperate gestures<</if>> that <<switch _relationType>> <<case "daughter">> she had a daughter, who was sent to the slave orphanages. She's heard a rumor through other slaves that her daughter will go up for sale soon. <<case "son">> - she had a son, who was sent to the slave orphanages. She's heard a rumor through other slaves that her son will go up for sale soon. + she had a son, who was sent to the slave orphanages. $He's heard a rumor through other slaves that her son will go up for sale soon. <<case "mother">> her mother might be getting sold soon. She has been a slave for some time. She's heard a rumor through other slaves that her mother will go up for sale soon. <<case "father">> @@ -157,7 +158,7 @@ <</switch>> <<if !canTalk($eventSlave)>>She urgently gestures for permission to write. It's unusual, but she seems quite serious, so you grant it. She writes,<</if>> -"You've been <<s>>o good to me, <<Master>>. I'm <<s>>ure <<sh>>e look<<s>> like I did when you bought me. Plea<<s>>e, <<Master>>, will you buy her like you bought me? I'm afraid <<sh>>e'll go to a cruel Ma<<s>>ter." She bites her lip. "And, <<Master>>, I'm <<s>>ure <<sh>>e'd learn to love +"You've been <<s>>o good to me, <<Master>>. I'm <<s>>ure <<sh>>e look<<s>> like I did when you bought me. Plea<<s>>e, <<Master>>, will you buy her like you bought me? I'm afraid <<sh>>e'll go to a cruel Ma<<s>>ter." $He bites $his lip. "And, <<Master>>, I'm <<s>>ure <<sh>>e'd learn to love <<if $eventSlave.fetish == "cumslut">> the ta<<s>>te of your cum <<elseif $eventSlave.fetish == "submissive">> @@ -840,7 +841,7 @@ $eventSlave.slaveName requests an interview with you. She's a devoted slave, and <<case "young sister">> her younger sister is being sold. She was likely to be enslaved the last $eventSlave.slaveName knew of her, and now she's heard a rumor through other slaves that her little sister is going to be sold to a new owner. <<default>> - she has a twin sister, who was still free the last $eventSlave.slaveName knew of her. She's heard a rumor through other slaves that her twin has finally been enslaved, and will soon go up for sale. + she has a twin sister, who was still free the last $eventSlave.slaveName knew of her. $He's heard a rumor through other slaves that $his twin has finally been enslaved, and will soon go up for sale. <</switch>> <br><br> <<if !canTalk($eventSlave)>>She urgently gestures for permission to write. It's unusual, but she seems quite serious, so you grant it. She writes,<</if>> diff --git a/src/uncategorized/saRivalries.tw b/src/uncategorized/saRivalries.tw index 6112bc2125507d5efe98e2b5d961a523396a5e11..11f699aac62abf410473692650ddd494690a58b9 100644 --- a/src/uncategorized/saRivalries.tw +++ b/src/uncategorized/saRivalries.tw @@ -1,6 +1,7 @@ :: SA rivalries [nobr] <<set _SL = $slaves.length>> +<<setLocalPronouns $slaves[$i]>> <<if $slaves[$i].rivalry == 0>> @@ -17,7 +18,7 @@ <<if $slaves[_j].devotion < random(20,100)>> <<if $slaves[_j].trust > random(-100,-20)>> <<if $slaves[_j].origBodyOwnerID == $slaves[$i].ID && $slaves[_j].devotion > 0 && $slaves[$i].devotion < -30>> - $slaves[$i].slaveName loathes that <<= SlaveFullName($slaves[_j])>> is using //her// body to benefit you and makes it abundantly clear every chance she gets. @@.lightsalmon;They start to dislike each other.@@ + $slaves[$i].slaveName loathes that <<= SlaveFullName($slaves[_j])>> is using //$his// body to benefit you and makes it abundantly clear every chance $he gets. @@.lightsalmon;They start to dislike each other.@@ <<set $slaves[_j].rivalry = 1, $slaves[$i].rivalry = 1, $slaves[_j].rivalryTarget = $slaves[$i].ID, $slaves[$i].rivalryTarget = $slaves[_j].ID>> <<break>> <</if>> @@ -25,19 +26,19 @@ <<switch $slaves[$i].behavioralFlaw>> <<case "arrogant">> <<if $slaves[_j].intelligence > $slaves[$i].intelligence+$slaves[$i].intelligenceImplant>> - $slaves[$i].slaveName is an arrogant bitch, and <<= SlaveFullName($slaves[_j])>> is authentically smarter than she is, which of course she cannot stand. @@.lightsalmon;They start to dislike each other.@@ + $slaves[$i].slaveName is an arrogant bitch, and <<= SlaveFullName($slaves[_j])>> is authentically smarter than $he is, which of course $he cannot stand. @@.lightsalmon;They start to dislike each other.@@ <<set $slaves[_j].rivalry = 1, $slaves[$i].rivalry = 1, $slaves[_j].rivalryTarget = $slaves[$i].ID, $slaves[$i].rivalryTarget = $slaves[_j].ID>> <<break>> <</if>> <<case "bitchy">> <<if $slaves[_j].behavioralFlaw == "odd">> - $slaves[$i].slaveName is a bit of a bitch, and poor odd <<= SlaveFullName($slaves[_j])>> is a convenient target for her bullying. @@.lightsalmon;They start to dislike each other.@@ + $slaves[$i].slaveName is a bit of a bitch, and poor odd <<= SlaveFullName($slaves[_j])>> is a convenient target for $his bullying. @@.lightsalmon;They start to dislike each other.@@ <<set $slaves[_j].rivalry = 1, $slaves[$i].rivalry = 1, $slaves[_j].rivalryTarget = $slaves[$i].ID, $slaves[$i].rivalryTarget = $slaves[_j].ID>> <<break>> <</if>> <<case "odd">> <<if $slaves[_j].behavioralFlaw == "bitchy">> - $slaves[$i].slaveName is rather strange. <<= SlaveFullName($slaves[_j])>>, who is kind of a bitch, frequently bullies her about it. @@.lightsalmon;They start to dislike each other.@@ + $slaves[$i].slaveName is rather strange. <<= SlaveFullName($slaves[_j])>>, who is kind of a bitch, frequently bullies $him about it. @@.lightsalmon;They start to dislike each other.@@ <<set $slaves[_j].rivalry = 1, $slaves[$i].rivalry = 1, $slaves[_j].rivalryTarget = $slaves[$i].ID, $slaves[$i].rivalryTarget = $slaves[_j].ID>> <<break>> <</if>> @@ -46,11 +47,11 @@ <<if $slaves[_j].faceShape == "masculine" || $slaves[_j].faceShape == "androgynous" >> <<if $slaves[_j].muscles > 10>> <<if $slaves[_j].vagina > -1>> - $slaves[$i].slaveName hates men, and poor butch <<= SlaveFullName($slaves[_j])>> really gets to her, despite having a pussy and everything. @@.lightsalmon;They start to dislike each other.@@ + $slaves[$i].slaveName hates men, and poor butch <<= SlaveFullName($slaves[_j])>> really gets to $him, despite having a pussy and everything. @@.lightsalmon;They start to dislike each other.@@ <<set $slaves[_j].rivalry = 1, $slaves[$i].rivalry = 1, $slaves[_j].rivalryTarget = $slaves[$i].ID, $slaves[$i].rivalryTarget = $slaves[_j].ID>> <<break>> <<else>> - $slaves[$i].slaveName hates men, and poor masculine <<= SlaveFullName($slaves[_j])>> really gets to her. @@.lightsalmon;They start to dislike each other.@@ + $slaves[$i].slaveName hates men, and poor masculine <<= SlaveFullName($slaves[_j])>> really gets to $him. @@.lightsalmon;They start to dislike each other.@@ <<set $slaves[_j].rivalry = 1, $slaves[$i].rivalry = 1, $slaves[_j].rivalryTarget = $slaves[$i].ID, $slaves[$i].rivalryTarget = $slaves[_j].ID>> <<break>> <</if>> @@ -62,11 +63,11 @@ <<if $slaves[_j].faceShape != "masculine">> <<if $slaves[_j].muscles <= 30>> <<if $slaves[_j].vagina > -1>> - $slaves[$i].slaveName hates women, and something about the feminine <<= SlaveFullName($slaves[_j])>> really gets to her. @@.lightsalmon;They start to dislike each other.@@ + $slaves[$i].slaveName hates women, and something about the feminine <<= SlaveFullName($slaves[_j])>> really gets to $him. @@.lightsalmon;They start to dislike each other.@@ <<set $slaves[_j].rivalry = 1, $slaves[$i].rivalry = 1, $slaves[_j].rivalryTarget = $slaves[$i].ID, $slaves[$i].rivalryTarget = $slaves[_j].ID>> <<break>> <<else>> - $slaves[$i].slaveName hates women, and something about the girly <<= SlaveFullName($slaves[_j])>> really gets to her, despite poor $slaves[_j].slaveName not being perfectly female at all. @@.lightsalmon;They start to dislike each other.@@ + $slaves[$i].slaveName hates women, and something about the girly <<= SlaveFullName($slaves[_j])>> really gets to $him, despite poor $slaves[_j].slaveName not being perfectly female at all. @@.lightsalmon;They start to dislike each other.@@ <<set $slaves[_j].rivalry = 1, $slaves[$i].rivalry = 1, $slaves[_j].rivalryTarget = $slaves[$i].ID, $slaves[$i].rivalryTarget = $slaves[_j].ID>> <<break>> <</if>> @@ -87,13 +88,13 @@ <</if>> <<case "devout">> <<if $slaves[_j].behavioralFlaw == "liberated">> - $slaves[$i].slaveName, who is devout and might be considered rather conservative if she were free, can't stand <<= SlaveFullName($slaves[_j])>>'s revolting gender liberation. @@.lightsalmon;They start to dislike each other.@@ + $slaves[$i].slaveName, who is devout and might be considered rather conservative if $he were free, can't stand <<= SlaveFullName($slaves[_j])>>'s revolting gender liberation. @@.lightsalmon;They start to dislike each other.@@ <<set $slaves[_j].rivalry = 1, $slaves[$i].rivalry = 1, $slaves[_j].rivalryTarget = $slaves[$i].ID, $slaves[$i].rivalryTarget = $slaves[_j].ID>> <<break>> <</if>> <<case "liberated">> <<if $slaves[_j].behavioralFlaw == "devout">> - $slaves[$i].slaveName, who is liberated and might be considered rather liberal if she were free, can't stand <<= SlaveFullName($slaves[_j])>>'s bigoted religious faith. @@.lightsalmon;They start to dislike each other.@@ + $slaves[$i].slaveName, who is liberated and might be considered rather liberal if $he were free, can't stand <<= SlaveFullName($slaves[_j])>>'s bigoted religious faith. @@.lightsalmon;They start to dislike each other.@@ <<set $slaves[_j].rivalry = 1, $slaves[$i].rivalry = 1, $slaves[_j].rivalryTarget = $slaves[$i].ID, $slaves[$i].rivalryTarget = $slaves[_j].ID>> <<break>> <</if>> @@ -142,7 +143,7 @@ $slaves[$i].slaveName is a living sex toy, not a person, it @@.lightsalmon;can't really maintain any meaningful rivalry@@ with <<= SlaveFullName($slaves[_j])>>. <<set $slaves[_j].rivalry = 0,$slaves[_j].rivalryTarget = 0, $slaves[$i].rivalry = 0, $slaves[$i].rivalryTarget = 0>> <<elseif $slaves[$i].fetish == "mindbroken">> - Since $slaves[$i].slaveName is mindbroken, she @@.lightsalmon;can't really maintain any meaningful rivalry@@ with <<= SlaveFullName($slaves[_j])>>. + Since $slaves[$i].slaveName is mindbroken, $he @@.lightsalmon;can't really maintain any meaningful rivalry@@ with <<= SlaveFullName($slaves[_j])>>. <<set $slaves[_j].rivalry = 0,$slaves[_j].rivalryTarget = 0, $slaves[$i].rivalry = 0, $slaves[$i].rivalryTarget = 0>> <<else>> <<if $slaves[$i].need>> @@ -151,14 +152,14 @@ <<if $slaves[_j].releaseRules != "restrictive">> <<if $slaves[$i].fetishKnown>> <<if $slaves[$i].fetish == "sadist">> - $slaves[$i].slaveName is horny and sadistic, so she rapes her rival <<= SlaveFullName($slaves[_j])>> every chance she gets; this @@.hotpink;thrills@@ $slaves[$i].slaveName, but $slaves[_j].slaveName is @@.golden;frightened@@ that you let it happen. + $slaves[$i].slaveName is horny and sadistic, so $he rapes $his rival <<= SlaveFullName($slaves[_j])>> every chance $he gets; this @@.hotpink;thrills@@ $slaves[$i].slaveName, but $slaves[_j].slaveName is @@.golden;frightened@@ that you let it happen. <<set $slaves[$i].need = 0, $slaves[$i].devotion += 3, $slaves[_j].trust -= 3, $slaves[$i].penetrativeCount += 5, $slaves[_j].oralCount += 5>> <<if $slaves[$i].rivalry < 3>> Of course, this @@.lightsalmon;worsens their rivalry.@@ <<set $slaves[_j].rivalry += 1, $slaves[$i].rivalry += 1, _worsenedRivalry = 1>> <</if>> <<elseif $slaves[$i].fetish == "dom">> - $slaves[$i].slaveName is horny and dominant, so she forces her rival <<= SlaveFullName($slaves[_j])>> to submit to her whenever she can; this @@.hotpink;thoroughly satisfies@@ $slaves[$i].slaveName, but $slaves[_j].slaveName is @@.golden;angered@@ that you let it happen. + $slaves[$i].slaveName is horny and dominant, so $he forces $his rival <<= SlaveFullName($slaves[_j])>> to submit to $him whenever $he can; this @@.hotpink;thoroughly satisfies@@ $slaves[$i].slaveName, but $slaves[_j].slaveName is @@.golden;angered@@ that you let it happen. <<set $slaves[$i].need = 0, $slaves[$i].devotion += 3, $slaves[_j].devotion -= 3, $slaves[$i].penetrativeCount += 5, $slaves[_j].oralCount += 5>> <<if $slaves[$i].rivalry < 3>> Of course, this @@.lightsalmon;worsens their rivalry.@@ @@ -198,13 +199,13 @@ <</if>> <<if _roll > 90 && $slaves[$i].rivalry > 0>> <<if $slaves[$i].energy > 95>> - $slaves[$i].slaveName lusts after <<= SlaveFullName($slaves[_j])>>, and does everything she can to @@.lightgreen;patch up their differences.@@ + $slaves[$i].slaveName lusts after <<= SlaveFullName($slaves[_j])>>, and does everything $he can to @@.lightgreen;patch up their differences.@@ <<set $slaves[_j].rivalry -= 1, $slaves[$i].rivalry -= 1, _lustyFix = 1, _lightenedRivalry = 1>> <</if>> <<if _lustyFix != 1>> <<if $slaves[$i].attrXX > 85>> <<if ($slaves[_j].vagina > -1) || ($slaves[_j].faceShape != "masculine")>> - $slaves[$i].slaveName lusts after <<= SlaveFullName($slaves[_j])>>, and does everything she can to @@.lightgreen;patch up their differences.@@ + $slaves[$i].slaveName lusts after <<= SlaveFullName($slaves[_j])>>, and does everything $he can to @@.lightgreen;patch up their differences.@@ <<set $slaves[_j].rivalry -= 1, $slaves[$i].rivalry -= 1, _lustyFix = 1, _lightenedRivalry = 1>> <</if>> <</if>> @@ -212,7 +213,7 @@ <<if _lustyFix != 1>> <<if $slaves[$i].attrXY > 85>> <<if ($slaves[_j].balls > 0) || ($slaves[_j].faceShape == "masculine")>> - $slaves[$i].slaveName lusts after <<= SlaveFullName($slaves[_j])>>, and does everything she can to @@.lightgreen;patch up their differences.@@ + $slaves[$i].slaveName lusts after <<= SlaveFullName($slaves[_j])>>, and does everything $he can to @@.lightgreen;patch up their differences.@@ <<set $slaves[_j].rivalry -= 1, $slaves[$i].rivalry -= 1, _lustyFix = 1, _lightenedRivalry = 1>> <</if>> <</if>> @@ -255,16 +256,16 @@ <</if>> <<if $slaves[_j].origBodyOwnerID == $slaves[$i].ID && _lightenedRivalry != 1>> <<if $slaves[$i].rivalry < 3>> - $slaves[$i].slaveName @@.lightsalmon;refuses to accept <<= SlaveFullName($slaves[_j])>>'s control of her former body,@@ worsening their rivalry. + $slaves[$i].slaveName @@.lightsalmon;refuses to accept <<= SlaveFullName($slaves[_j])>>'s control of $his former body,@@ worsening their rivalry. <<set $slaves[_j].rivalry += 1, $slaves[$i].rivalry += 1>> <</if>> <<elseif _roll > $slaves[$i].devotion-$slaves[$i].trust+10 && _lightenedRivalry != 1>> <<if $slaves[$i].rivalry < 3>> - $slaves[$i].slaveName @@.lightsalmon;bickers with <<= SlaveFullName($slaves[_j])>>@@ whenever she can, worsening their rivalry. + $slaves[$i].slaveName @@.lightsalmon;bickers with <<= SlaveFullName($slaves[_j])>>@@ whenever $he can, worsening their rivalry. <<set $slaves[_j].rivalry += 1, $slaves[$i].rivalry += 1>> <</if>> <<elseif _roll < $slaves[$i].devotion-$slaves[$i].trust-10 && $slaves[$i].rivalry > 0 && _worsenedRivalry != 1>> - $slaves[$i].slaveName does her best to be nice to <<= SlaveFullName($slaves[_j])>>, and manages to @@.lightgreen;de-escalate their little feud.@@ + $slaves[$i].slaveName does $his best to be nice to <<= SlaveFullName($slaves[_j])>>, and manages to @@.lightgreen;de-escalate their little feud.@@ <<set $slaves[_j].rivalry -= 1, $slaves[$i].rivalry -= 1>> <</if>> <<else>> diff --git a/src/uncategorized/seBirth.tw b/src/uncategorized/seBirth.tw index bdf61d5b04f1173181f1ac26cd9f4589f430cf53..b1688b9251310ef0c7fe402270b2a5bb8352bf51 100644 --- a/src/uncategorized/seBirth.tw +++ b/src/uncategorized/seBirth.tw @@ -44,10 +44,10 @@ I need to break single passage to several widgets, as it's been overcomplicated <<seBirthBabies>> - <<if $DefaultBirthDestination != "anywhere" && $universalRulesChildrenBecomeBreeders < 1>> + <<if $DefaultBirthDestination != "" && $universalRulesChildrenBecomeBreeders < 1>> $His <<if _curBabies > 1>>babies<<else>>baby<</if>> were sent to $DefaultBirthDestination. $slaves[$i].slaveName <<switch $DefaultBirthDestination>> - <<case "an orphanage">> + <<case "a orphanage">> <<if $slaves[$i].devotion > 95>> worships you so completely that $he will not resent this. <<elseif $slaves[$i].devotion > 50>> diff --git a/src/uncategorized/seCoursing.tw b/src/uncategorized/seCoursing.tw index 16f9fb603901a4a6849de8c50e96b30946cb00f5..066eb1514b7f31d874a1393e1739b0dd4e904c2f 100644 --- a/src/uncategorized/seCoursing.tw +++ b/src/uncategorized/seCoursing.tw @@ -4,6 +4,8 @@ <<set $Lurcher = getSlave($Lurcher.ID)>> +<<setLocalPronouns $Lurcher>> + It's time to go coursing. You meet with fellow members of the Coursing Association while the automated maintenance drones clear the plaza and lay down the green, sharing a refine discussion of recent events over <<if $PC.refreshmentType == 0>>a $PC.refreshment<<elseif $PC.refreshmentType == 1>>glasses of $PC.refreshment<<elseif $PC.refreshmentType == 2>>plates of $PC.refreshment<<elseif $PC.refreshmentType == 3>>hits of $PC.refreshment<<elseif $PC.refreshmentType == 4>>shots of $PC.refreshment<<elseif $PC.refreshmentType == 5>>handfuls of $PC.refreshment<<elseif $PC.refreshmentType == 6>>tabs of $PC.refreshment<</if>>. Once the field is ready, the day's hares are led out and chained in a row along one side of the plaza, naked. You and the other members watch this process intently, since you won't get any more information on them than what you can learn by looking. <br><br> The rules have been explained to the hares: they're to be freed if they can reach the other side of the plaza without being caught and raped by the lurchers who will be released to chase them. @@ -51,7 +53,6 @@ The rules have been explained to the hares: they're to be freed if they can reac <<set $activeSlave.analSkill = 0>> <<set $activeSlave.whoreSkill = 0>> <<set $activeSlave.weight = random(-50,50)>> - is an appealingly young $activeSlave.race girl, and has V symbols drawn over her cunt and on her lower back, in the interests of fairness. She's a @@.pink;double virgin.@@<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around her neck.<</if>> <<elseif $origin == "heavily pregnant">> <<set $activeSlaveOneTimeMinAge = $fertilityAge>> <<set $activeSlaveOneTimeMaxAge = 20>> @@ -71,7 +72,6 @@ The rules have been explained to the hares: they're to be freed if they can reac <<set $activeSlave.whoreSkill = 0>> <<set $activeSlave.weight = random(-20,100)>> <<set $activeSlave.career = setup.youngCareers.random()>> - is <<if $activeSlave.race == "asian" || $activeSlave.race == "indo-aryan" || $activeSlave.race == "amerindian">>an<<else>>a<</if>> $activeSlave.race girl, young and healthy but @@.pink;heavily pregnant.@@ She's probably been selected to be a hare as a joke, or because someone hates her. <<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is attached to her popped navel.<</if>> <<elseif $origin == "housewife">> <<set $activeSlaveOneTimeMinAge = 35>> <<set $activeSlaveOneTimeMaxAge = 39>> @@ -94,7 +94,6 @@ The rules have been explained to the hares: they're to be freed if they can reac <<set $activeSlave.whoreSkill = 35>> <<set $activeSlave.career = either("a housewife", "a trophy wife")>> <<set $activeSlave.weight = random(-50,100)>> - is <<if $activeSlave.race == "asian" || $activeSlave.race == "indo-aryan" || $activeSlave.race == "amerindian">>an<<else>>a<</if>> $activeSlave.race woman, no longer young, but attractive enough in a fake sort of way. She has obviously been crying, and has probably been recently enslaved from a comfortable life, like that of a @@.pink;housewife or a trophy wife.@@<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around her neck.<</if>> <<elseif $origin == "disobedient young">> <<set $activeSlaveOneTimeMaxAge = 25>> <<set $oneTimeDisableDisability = 1>> @@ -108,13 +107,12 @@ The rules have been explained to the hares: they're to be freed if they can reac <<set $activeSlave.oralSkill = 15>> <<set $activeSlave.analSkill = 15>> <<set $activeSlave.whoreSkill = 15>> - <<set $activeSlave.sexualFlaw = either("hates oral", "hates anal", "hates penetration", "idealistic")>> + <<set $activeSlave.sexualFlaw = either("hates anal", "hates oral", "hates penetration", "idealistic")>> <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy", "hates men")>> <<set $activeSlave.energy = 10>> <<set $activeSlave.fetish = "none">> <<set $activeSlave.muscles = random(20,50)>> <<set $activeSlave.weight = random(-20,20)>> - is a fit young $activeSlave.race girl, and is far more watchful and alert than her fellow hares. She may be a @@.pink;disobedient slave@@ here because she was difficult to train.<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around her neck.<</if>> <<elseif $origin == "disobedient young dickgirl">> <<set $activeSlaveOneTimeMaxAge = 25>> <<set $oneTimeDisableDisability = 1>> @@ -133,7 +131,6 @@ The rules have been explained to the hares: they're to be freed if they can reac <<set $activeSlave.fetish = "none">> <<set $activeSlave.muscles = random(20,50)>> <<set $activeSlave.weight = random(-20,50)>> - is a strong young $activeSlave.race girl with who retains her cock and balls, and looks determined. Perhaps she's a @@.pink;resistant dickgirl@@ who's been difficult to turn into a good girl.<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around her cock.<</if>> <<elseif $origin == "huge balled">> <<set $activeSlaveOneTimeMaxAge = 25>> <<set $oneTimeDisableDisability = 1>> @@ -147,7 +144,6 @@ The rules have been explained to the hares: they're to be freed if they can reac <<set $activeSlave.analSkill = 0>> <<set $activeSlave.whoreSkill = 0>> <<set $activeSlave.weight = random(-50,100)>> - is <<if $activeSlave.race == "asian" || $activeSlave.race == "indo-aryan" || $activeSlave.race == "amerindian">>an<<else>>a<</if>> $activeSlave.race slave whose distinguishing characteristic is a dangling scrotum and a pair of @@.pink;huge balls.@@ This impediment bumps against her thighs as she's made ready.<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around her hefty testicles.<</if>> <<elseif $origin == "feminized">> <<set $activeSlaveOneTimeMaxAge = 25>> <<set $oneTimeDisableDisability = 1>> @@ -168,7 +164,22 @@ The rules have been explained to the hares: they're to be freed if they can reac <<set $activeSlave.attrXY = 100>> <<set $activeSlave.attrXX = 0>> <<set $activeSlave.weight = random(-100,200)>> - is <<if $activeSlave.race == "asian" || $activeSlave.race == "indo-aryan" || $activeSlave.race == "amerindian">>an<<else>>a<</if>> $activeSlave.race bitch with a tiny dick who has been @@.pink;heavily feminized,@@ yet seems terrified and very new to slavery. Her fake tits and girly behavior must be from her life before she was a slave.<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around her neck.<</if>> +<</if>> +<<setLocalPronouns $activeSlave 2>> +<<if $origin == "virgin">> + is an appealingly young $activeSlave.race $girl, and has V symbols drawn over _his2 cunt and on _his2 lower back, in the interests of fairness. _He2's a @@.pink;double virgin.@@<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around _his2 neck.<</if>> +<<elseif $origin == "heavily pregnant">> + is <<if $activeSlave.race == "asian" || $activeSlave.race == "indo-aryan" || $activeSlave.race == "amerindian">>an<<else>>a<</if>> $activeSlave.race $girl, young and healthy but @@.pink;heavily pregnant.@@ _He2's probably been selected to be a hare as a joke, or because someone hates _him2. <<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is attached to _his2 popped navel.<</if>> +<<elseif $origin == "housewife">> + is <<if $activeSlave.race == "asian" || $activeSlave.race == "indo-aryan" || $activeSlave.race == "amerindian">>an<<else>>a<</if>> $activeSlave.race $woman, no longer young, but attractive enough in a fake sort of way. _He2 has obviously been crying, and has probably been recently enslaved from a comfortable life, like that of a @@.pink;housewife or a trophy wife.@@<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around _his2 neck.<</if>> +<<elseif $origin == "disobedient young">> + is a fit young $activeSlave.race $girl, and is far more watchful and alert than _his2 fellow hares. _He2 may be a @@.pink;disobedient slave@@ here because _he2 was difficult to train.<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around _his2 neck.<</if>> +<<elseif $origin == "disobedient young dickgirl">> + is a strong young $activeSlave.race $girl with who retains _his2 cock and balls, and looks determined. Perhaps _he2's a @@.pink;resistant dickgirl@@ who's been difficult to turn into a good $girl.<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around _his2 cock.<</if>> +<<elseif $origin == "huge balled">> + is <<if $activeSlave.race == "asian" || $activeSlave.race == "indo-aryan" || $activeSlave.race == "amerindian">>an<<else>>a<</if>> $activeSlave.race slave whose distinguishing characteristic is a dangling scrotum and a pair of @@.pink;huge balls.@@ This impediment bumps against _his2 thighs as _he2's made ready.<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around _his2 hefty testicles.<</if>> +<<elseif $origin == "feminized">> + is <<if $activeSlave.race == "asian" || $activeSlave.race == "indo-aryan" || $activeSlave.race == "amerindian">>an<<else>>a<</if>> $activeSlave.race bitch with a tiny dick who has been @@.pink;heavily feminized,@@ yet seems terrified and very new to slavery. _His2 fake tits and girly behavior must be from _his2 life before _he2 was a slave.<<if !canSee($Lurcher)>> To accommodate your blind lurcher, a bell is fastened around _his2 neck.<</if>> <</if>> <<set $activeSlave.origin = "Your lurcher " + $Lurcher.slaveName + " caught her coursing; she was a " + $origin + " hare.">> @@ -178,65 +189,65 @@ The rules have been explained to the hares: they're to be freed if they can reac <<set $activeSlave.oldDevotion = $activeSlave.devotion>> <<if $activeSlave.weight > 190>> - She's practically all fat and no slave; she's half-expected to roll her way to the finish like an overfed slutty bowling ball. + _He2's practically all fat and no slave; she's half-expected to roll _his2 way to the finish like an overfed slutty bowling ball. <<set $hareSpeed -= 5>> <<elseif $activeSlave.weight > 160>> - She's a catastrophically fat slut of a slave, and may stand a better chance of getting away rolling than running. + _He2's a catastrophically fat slut of a slave, and may stand a better chance of getting away rolling than running. <<set $hareSpeed -= 3>> <<elseif $activeSlave.weight > 95>> - She's a ridiculously fat slut of a slave with plenty of flesh to grab on to; her constant jiggling will be a sight to behold, however. + _He2's a ridiculously fat slut of a slave with plenty of flesh to grab on to; _his2 constant jiggling will be a sight to behold, however. <<set $hareSpeed -= 2>> <<elseif $activeSlave.weight > 30>> - She's chubby enough that her weight will reduce her speed. + _He2's chubby enough that _his2 weight will reduce _his2 speed. <<set $hareSpeed -= 1>> <<elseif $activeSlave.weight < -95>> - She's so skinny that it's not likely she's physically fit enough to be quick. + _He2's so skinny that it's not likely she's physically fit enough to be quick. <<set $hareSpeed -= 1>> <</if>> <<if $activeSlave.muscles > 30>> - She's so heavily muscled that she's probably slower than she would be if she were merely fit. + _He2's so heavily muscled that she's probably slower than she would be if she were merely fit. <<set $hareSpeed -= 1>> <<elseif $activeSlave.muscles <= 5>> - She's soft, and her legs show no sign of tone at all. + _He2's soft, and _his2 legs show no sign of tone at all. <<set $hareSpeed -= 1>> <</if>> <<if $activeSlave.height >= 185>> - She's tall enough that her height will probably slow her down. + _He2's tall enough that _his2 height will probably slow _him2 down. <<set $hareSpeed -= 1>> <<elseif $activeSlave.height < 150>> - She's short enough that her short legs will probably slow her down. + _He2's short enough that _his2 short legs will probably slow _him2 down. <<set $hareSpeed -= 2>> <</if>> <<if $activeSlave.boobs >= 2000>> - She has absurd tits that will destroy any chance she has of getting away. + _He2 has absurd tits that will destroy any chance she has of getting away. <<set $hareSpeed -= 1>> <<elseif $activeSlave.boobs >= 800>> - She has huge boobs that will make it painful for her to run hard. + _He2 has huge boobs that will make it painful for _him2 to run hard. <<set $hareSpeed -= 1>> <</if>> <<if $activeSlave.butt >= 6>> - She has a monstrous bottom that won't help her gait. + _He2 has a monstrous bottom that won't help _his2 gait. <<set $hareSpeed -= 1>> <</if>> <<if $activeSlave.dick >= 5>> - Her big cock is going to bounce around cruelly. + _His2 big cock is going to bounce around cruelly. <<set $hareSpeed -= 1>> <</if>> <<if ($activeSlave.balls >= 5) && ($activeSlave.scrotum > 0)>> - Her balls are likely to hurt badly enough, running naked, to slow her down. + _His2 balls are likely to hurt badly enough, running naked, to slow _him2 down. <<set $hareSpeed -= 1>> <</if>> <<if $activeSlave.belly >= 60000>> - She's so massively pregnant it'll be lucky if she even makes it anywhere. + _He2's so massively pregnant it'll be lucky if she even makes it anywhere. <<set $hareSpeed -= 10>> <<elseif $activeSlave.belly >= 10000>> - Her pregnant belly will probably stop her from running at all. + _He2 pregnant belly will probably stop _him2 from running at all. <<set $hareSpeed -= 5>> <<elseif $activeSlave.belly >= 5000>> - She's visibly pregnant and likely to be cautious and unsure about running. + _He2's visibly pregnant and likely to be cautious and unsure about running. <<set $hareSpeed -= 3>> <<elseif $activeSlave.belly >= 1500>> - There is a slight roundness to her middle, likely an early pregnancy that will distract her. + There is a slight roundness to _his2 middle, likely an early pregnancy that will distract _him2. <<set $hareSpeed -= 1>> <</if>> @@ -262,40 +273,40 @@ You lead your lurcher $Lurcher.slaveName out on a leash, naked just like the har <<if ($Lurcher.dick > 0)>> <<if canPenetrate($Lurcher) && ($Lurcher.energy > 60) && ($Lurcher.devotion > 20)>> <<if ($Lurcher.dick > 4)>> - She's sporting an enormous half-erection, which has already been heavily lubricated to prevent permanent damage to the hares' holes. As you bring her up to the mark, she grabs its base and begins to slap it against her thigh, hard. The hares look around to see what the wet smacking noise is, and are understandably frightened; one of them begins to beg openly. Your fellow competitors @@.green;think this is hilarious.@@ + $He's sporting an enormous half-erection, which has already been heavily lubricated to prevent permanent damage to the hares' holes. As you bring $him up to the mark, $he grabs its base and begins to slap it against $his thigh, hard. The hares look around to see what the wet smacking noise is, and are understandably frightened; one of them begins to beg openly. Your fellow competitors @@.green;think this is hilarious.@@ <<set $rep += 50>> <<set $phallus = "huge dick">> <<else>> - She's ready to do her best. Since she's concentrating on the immediate challenge of catching rather than the secondary challenge of raping, she isn't hard yet, but she's not indifferent to the prospect of getting her dick wet. There's a bead of precum forming at her tip. + $He's ready to do $his best. Since $he's concentrating on the immediate challenge of catching rather than the secondary challenge of raping, $he isn't hard yet, but $he's not indifferent to the prospect of getting $his dick wet. There's a bead of precum forming at $his tip. <<set $phallus = "dick">> <</if>> <<elseif !canAchieveErection($Lurcher)>> - There's no way she's going to be able to achieve an erection, so she's holding a lubricated dildo in one hand. This is technically permitted under the rules, but your fellow competitors and the crowd gathering to spectate @@.red;consider it poor form.@@ + There's no way $he's going to be able to achieve an erection, so $he's holding a lubricated dildo in one hand. This is technically permitted under the rules, but your fellow competitors and the crowd gathering to spectate @@.red;consider it poor form.@@ <<set $rep -= 50>> <<set $phallus = "dildo">> <<elseif ($Lurcher.energy <= 60) || ($Lurcher.devotion <= 20)>> - She looks nervous, and obviously doesn't find the situation arousing. She knows she's to catch a slave and rape her, but may not be able to get hard enough to do the deed properly. Your fellow competitors and the crowd gathering to spectate @@.red;are unimpressed@@ by her lack of spirit. + $He looks nervous, and obviously doesn't find the situation arousing. $He knows $he's to catch and then rape a slave, but may not be able to get hard enough to do the deed properly. Your fellow competitors and the crowd gathering to spectate @@.red;are unimpressed@@ by $his lack of spirit. <<set $rep -= 50>> <<set $phallus = "fingers">> <<else>> - Her dick is not a fit instrument for sexual assault, so she's holding a lubricated dildo in one hand. This is technically permitted under the rules, but your fellow competitors and the crowd gathering to spectate @@.red;consider it poor form.@@ + $His dick is not a fit instrument for sexual assault, so $he's holding a lubricated dildo in one hand. This is technically permitted under the rules, but your fellow competitors and the crowd gathering to spectate @@.red;consider it poor form.@@ <<set $rep -= 50>> <<set $phallus = "dildo">> <</if>> <<elseif ($Lurcher.clit > 1) && ($Lurcher.energy > 60) && ($Lurcher.devotion > 20)>> - She's gently masturbating as you bring her up to the mark, her enormous clit becoming engorged and stiff. Your fellow competitors and the gathering crowd of spectators @@.green;are fascinated,@@ realizing that she intends to attempt rape with it. + $He's gently masturbating as you bring $him up to the mark, $his enormous clit becoming engorged and stiff. Your fellow competitors and the gathering crowd of spectators @@.green;are fascinated,@@ realizing that $he intends to attempt rape with it. <<set $rep += 50>> <<set $phallus = "clit">> <<elseif $seeDicks != 0>> - She's holding a lubricated dildo in one hand, since she's missing a natural phallus of her own. This is technically permitted under the rules, but your fellow competitors and the crowd gathering to spectate @@.red;consider it poor form.@@ + $He's holding a lubricated dildo in one hand, since $he's missing a natural phallus of $his own. This is technically permitted under the rules, but your fellow competitors and the crowd gathering to spectate @@.red;consider it poor form.@@ <<set $rep -= 50>> <<set $phallus = "dildo">> <<else>> - She's holding a lubricated dildo in one hand. As you bring her up to the mark, she begins to slap it against her thigh out of nervousness and eagerness to begin. The hares look around to see what the wet smacking noise is, and are understandably frightened; one of them begins to cry openly. + $He's holding a lubricated dildo in one hand. As you bring $him up to the mark, $he begins to slap it against $his thigh out of nervousness and eagerness to begin. The hares look around to see what the wet smacking noise is, and are understandably frightened; one of them begins to cry openly. <<set $phallus = "dildo">> <</if>> -<<if canSee($Lurcher)>>$Lurcher.slaveName looks at you questioningly, wondering which of the hares she should try to chase down and molest<<else>>$Lurcher.slaveName looks at you questioningly, wondering which of the dingling bells she should try to chase down and molest<</if>>. +<<if canSee($Lurcher)>>$Lurcher.slaveName looks at you questioningly, wondering which of the hares $he should try to chase down and molest<<else>>$Lurcher.slaveName looks at you questioningly, wondering which of the dingling bells $he should try to chase down and molest<</if>>. <br><br> diff --git a/src/uncategorized/seCoursingRace.tw b/src/uncategorized/seCoursingRace.tw index 7ee5f0fff00cb65abd21ec33af066fb3b27dcbc4..8c05bb90622d7e35abdb57814eec6d9024d102ab 100644 --- a/src/uncategorized/seCoursingRace.tw +++ b/src/uncategorized/seCoursingRace.tw @@ -1,148 +1,151 @@ :: SE coursing race [nobr] -You place your hand on the leash's quick release and whisper your direction into her ear without letting the other competitors or their lurchers hear. Then, you gently push her down into her starting crouch. The umpire trips the hares' releases, a few yards in front of you and $Lurcher.slaveName, and you instantly let your lurcher off her leash. +<<setLocalPronouns $Lurcher>> +<<setLocalPronouns $activeSlave 2>> + +You place your hand on the leash's quick release and <<if canHear($Lurcher)>>whisper your direction into $his ear without letting the other competitors or their lurchers hear<<else>>gently point $him towards the target hare without letting the other competitors or their lurchers see<</if>>. Then, you gently push $him down into $his starting crouch. The umpire trips the hares' releases, a few yards in front of you and $Lurcher.slaveName, and you instantly let your lurcher off $his leash. <<set _LurcherSpeed = 10>> <<if $Lurcher.devotion > 50>> - She's eager to do well for you, and immediately takes off. + $He's eager to do well for you, and immediately takes off. <<set _LurcherSpeed += 2>> <<elseif $Lurcher.trust < -20>> - She's frightened of failing you, and immediately takes off. + $He's frightened of failing you, and immediately takes off. <<set _LurcherSpeed += 1>> <<elseif $Lurcher.devotion < -20>> - She's disgusted by this, and is slow to start. + $He's disgusted by this, and is slow to start. <<set _LurcherSpeed -= 1>> <<else>> - She's a bit hesitant about this, but gets off reasonably well. + $He's a bit hesitant about this, but gets off reasonably well. <</if>> <<if $Lurcher.health > 60>> - Her shining health allows her to pour it on. + $His shining health allows $him to pour it on. <<set _LurcherSpeed += 1>> <<elseif $Lurcher.health < 0>> - Her poor health slows her down. + $His poor health slows $him down. <<set _LurcherSpeed -= 1>> <</if>> <<if !canSee($Lurcher)>> - Her inability to see causes her to be cautious of her footing, making her first several strides slow and uncertain. + $His inability to see causes $him to be cautious of $his footing, making $his first several strides slow and uncertain. <<set _LurcherSpeed -= 1>> <</if>> <<if $Lurcher.weight > 190>> - She's so fat that her run is nothing more than an out of breath waddle. + $He's so fat that $his run is nothing more than an out of breath waddle. <<set _LurcherSpeed -= 5>> <<elseif $Lurcher.weight > 160>> - It takes her a while to get her fat ass up to her, rather pathetic, top speed, such as it is. + It takes $him a while to get $his fat ass up to $his, rather pathetic, top speed, such as it is. <<set _LurcherSpeed -= 3>> <<elseif $Lurcher.weight > 95>> - It takes her a while to get her fat ass up to her top speed, such as it is. + It takes $him a while to get $his fat ass up to $his top speed, such as it is. <<set _LurcherSpeed -= 2>> <<elseif $Lurcher.weight > 30>> - It takes her a while to get her chubby body up to speed. + It takes $him a while to get $his chubby body up to speed. <<set _LurcherSpeed -= 1>> <<elseif $Lurcher.weight < -95>> - She's so thin that she lacks the vigor to run really well. + $He's so thin that $he lacks the vigor to run really well. <<set _LurcherSpeed -= 1>> <</if>> <<if $Lurcher.muscles > 30>> - She's muscle-bound, without the range of motion to move freely. + $He's muscle-bound, without the range of motion to move freely. <<set _LurcherSpeed -= 1>> <<elseif $Lurcher.muscles <= 5>> - She's soft, and is panting desperately within a few short strides. + $He's soft, and is panting desperately within a few short strides. <<set _LurcherSpeed -= 1>> <<elseif $Lurcher.muscles <= -30>> - She's very weak, and is panting desperately from just walking to the starting line. + $He's very weak, and is panting desperately from just walking to the starting line. <<set _LurcherSpeed -= 4>> <<elseif $Lurcher.muscles <= -95>> - She's physically frail, barely capable of walking let alone running. + $He's physically frail, barely capable of walking let alone running. <<set _LurcherSpeed -= 20>> <</if>> <<if $Lurcher.height >= 185>> - Her steps are long - too long, in fact, her long legs slowing her gait. + $His steps are long - too long, in fact: $his long legs slow $his gait. <<set _LurcherSpeed -= 1>> <<elseif $Lurcher.height < 150>> - Her stride is too short, but it's the best her little legs can manage. + $His stride is too short, but it's the best $his little legs can manage. <<set _LurcherSpeed -= 1>> <</if>> <<if $Lurcher.boobs >= 2000>> - Her naked breasts slosh around wildly, ruining her attempt at running. + $His naked breasts slosh around wildly, ruining $his attempt at running. <<set _LurcherSpeed -= 2>> <<elseif $Lurcher.boobs >= 800>> - Her big tits bounce energetically, looking quite nice but hurting her speed. + $His big tits bounce energetically, looking quite nice but hurting $his speed. <<set _LurcherSpeed -= 1>> <</if>> <<if $Lurcher.butt >= 6>> - She does her best to stay light on her feet despite her inconveniently huge buttocks. + $He does $his best to stay light on $his feet despite $his inconveniently huge buttocks. <<set _LurcherSpeed -= 1>> <</if>> <<if $Lurcher.dick >= 5>> - Her cock bounces up and down wildly; she does her best to ignore it, but it does get in the way. + $His cock bounces up and down wildly; $he does $his best to ignore it, but it does get in the way. <<set _LurcherSpeed -= 1>> <</if>> <<if $Lurcher.balls >= 5>> - As you watch her go, her testicles smack into her thigh, and she gasps with pain. + As you watch $him go, $his testicles smack into $his thigh, and $he gasps with pain. <<set _LurcherSpeed -= 1>> <</if>> <<if $Lurcher.preg >= 40>> - She seems terrified that her water might break if she tried to move too fast. + $He seems terrified that $his water might break if $he tried to move too fast. <<set _LurcherSpeed -= 10>> <<elseif $Lurcher.belly >= 120000>> - She can barely move herself, let alone consider chasing something with her titanic <<if $Lurcher.bellyImplant > 100>>belly implant<<else>>pregnant belly<</if>> in the way. + $He can barely move $himself, let alone consider chasing something with $his titanic <<if $Lurcher.bellyImplant > 100>>belly implant<<else>>pregnant belly<</if>> in the way. <<set _LurcherSpeed -= 20>> <<elseif $Lurcher.belly >= 60000>> - She can barely waddle with her <<if $Lurcher.bellyImplant > 100>>enormous belly implant<<else>>enormously pregnant belly<</if>>. + $He can barely waddle with $his <<if $Lurcher.bellyImplant > 100>>enormous belly implant<<else>>enormously pregnant belly<</if>>. <<set _LurcherSpeed -= 10>> <<elseif $Lurcher.belly >= 10000 && $Lurcher.bellyFluid < 2000>> - She can barely waddle along with her huge <<if $Lurcher.bellyImplant > 100>>belly implant<<else>>pregnant belly<</if>>. + $He can barely waddle along with $his huge <<if $Lurcher.bellyImplant > 100>>belly implant<<else>>pregnant belly<</if>>. <<set _LurcherSpeed -= 5>> <<elseif $Lurcher.bellyPreg >= 5000>> - She seems unwilling to really run while pregnant. + $He seems unwilling to really run while pregnant. <<set _LurcherSpeed -= 3>> <<elseif $Lurcher.bellyImplant >= 5000>> - Her big belly implant hinders her ability to run + $His big belly implant hinders $his ability to run <<set _LurcherSpeed -= 2>> <<elseif $Lurcher.belly >= 1500>> - She keeps one hand on her slightly swollen middle as she runs. + $He keeps one hand on $his slightly swollen middle as $he runs. <<set _LurcherSpeed -= 1>> <</if>> <<if $Lurcher.bellyFluid >= 10000>> - Her hugely bloated, <<print $Lurcher.inflationType>>-filled belly is taut and painful, forcing her to a slow waddle. + $His hugely bloated, <<print $Lurcher.inflationType>>-filled belly is taut and painful, forcing $him to a slow waddle. <<set _LurcherSpeed -= 5>> <<elseif $Lurcher.bellyFluid >= 5000>> - Her bloated, <<print $Lurcher.inflationType>>-stuffed belly is constantly jiggling and moving, making it extremely difficult to run. + $His bloated, <<print $Lurcher.inflationType>>-stuffed belly is constantly jiggling and moving, making it extremely difficult to run. <<set _LurcherSpeed -= 4>> <<elseif $Lurcher.bellyFluid >= 2000>> - Her distended, <<print $Lurcher.inflationType>>-belly is uncomfortable and heavy, slowing her down. + $His distended, <<print $Lurcher.inflationType>>-belly is uncomfortable and heavy, slowing $him down. <<set _LurcherSpeed -= 2>> <</if>> <<if _LurcherSpeed > 10>> - Her turn of speed is impressive. + $His turn of speed is impressive. <<elseif _LurcherSpeed > 8>> - She runs reasonably fast. + $He runs reasonably fast. <<elseif _LurcherSpeed > 6>> - In all, she runs slowly. + In all, $he runs slowly. <<elseif _LurcherSpeed > 4>> - In all, she barely manages a quick jog. + In all, $he barely manages a quick jog. <<else>> - In all, she can barely do more than stumble after the hares. + In all, $he can barely do more than stumble after the hares. <</if>> <<if $hareSpeed >= _LurcherSpeed>> <<if $origin == "virgin">> The virgin, however, <<elseif $origin == "heavily pregnant">> - Despite her pregnancy, the hare + Despite _his2 pregnancy, the hare <<elseif $origin == "housewife">> - Despite her fake boobs, the hare + Despite _his2 fake boobs, the hare <<elseif $origin == "disobedient young">> The fit young slave, however, <<elseif $origin == "disobedient young dickgirl">> The strong young slave, however, <<elseif $origin == "huge balled">> - Despite her ridiculous ballsack, the hare + Despite _his2 ridiculous ballsack, the hare <<else>> - Despite her fake boobs and exaggeratedly feminine gait, the hare + Despite _his2 fake boobs and exaggeratedly feminine gait, the hare <</if>> - <<if $hareSpeed > _LurcherSpeed>>immediately pulls away<<else>>manages to maintain her narrow head start<</if>>. Realizing that she stands no chance of catching her assigned target, $Lurcher.slaveName <<if canSee($Lurcher)>>looks around for a slower hare<<else>>listens for a nearby bell<</if>>. + <<if $hareSpeed > _LurcherSpeed>>immediately pulls away<<else>>manages to maintain _his2 narrow head start<</if>>. Realizing that $he stands no chance of catching $his assigned target, $Lurcher.slaveName <<if canSee($Lurcher)>>looks around for a slower hare<<else>>listens for a nearby bell<</if>>. <<if $hareSpeed2 < $hareSpeed3>> <<set $activeSlave = $hare2>> <<set $origin = $origin2>> @@ -152,152 +155,153 @@ You place your hand on the leash's quick release and whisper your direction into <<set $origin = $origin3>> <<set $hareSpeed = $hareSpeed3>> <</if>> - <<if canSee($Lurcher)>>Seeing that the $origin hare is slower<<else>>hearing the $origin hare's bell nearby<</if>>, she angles after her instead. + <<setLocalPronouns $activeSlave 2>> + <<if canSee($Lurcher)>>Seeing that the $origin hare is slower<<else>>hearing the $origin hare's bell nearby<</if>>, $he angles after _him2 instead. <<if $hareSpeed >= _LurcherSpeed>> - She does no better with her new target; her course is over. + $He does no better with $his new target; $his course is over. <<elseif random(1,2) == 1>> - One of her rival lurchers has the same idea, however, and tries to trip her up. + One of $his rival lurchers has the same idea, however, and tries to trip $him up. <<if !canSee($Lurcher)>> - Unable to see it coming, she goes down with a crash; her course is over. + Unable to see it coming, $he goes down with a crash; $his course is over. <<elseif $Lurcher.combatSkill == 1>> - She parries the attempt with contemptuous ease and catches up to her new target. + $He parries the attempt with contemptuous ease and catches up to $his new target. <<set _seed = 1>> <<elseif $Lurcher.muscles > 30>> - She muscles through the attempt and catches up to her new target. + $He muscles through the attempt and catches up to $his new target. <<set _seed = 1>> <<else>> - She goes down with a crash; her course is over. + $He goes down with a crash; $his course is over. <</if>> <<else>> - She manages to overtake her new target. + $He manages to overtake $his new target. <<set _seed = 1>> <</if>> <<else>> - She rapidly overtakes the $origin hare. + $He rapidly overtakes the $origin hare. <<set _seed = 1>> <</if>> <<if _seed == 1>> <<if $origin == "heavily pregnant">> - Her quarry is unwilling to be tackled, probably out of fear for her baby, and flings herself down as soon as $Lurcher.slaveName gets near.<<if !canSee($Lurcher)>> She screams as she sees $Lurcher.slaveName preparing to dive on her, alerting the blind lurcher that her prey has already surrendered.<</if>> + $His quarry is unwilling to be tackled, probably out of fear for _his2 baby, and flings _himself2 down as soon as $Lurcher.slaveName gets near.<<if !canSee($Lurcher)>> _He2 screams as _he2 sees $Lurcher.slaveName preparing to dive on _him2, alerting the blind lurcher that $his prey has already surrendered.<</if>> <<elseif !canSee($Lurcher) && random(1,3) == 1>> - Her prey takes advantage of her lack of eyesight, baiting $Lurcher.slaveName to dive in the wrong direction. As she rises to her feet, the slave is too far gone to make another lunge. $Lurcher.slaveName's course is over. + $His prey takes advantage of $his lack of eyesight, baiting $Lurcher.slaveName to dive in the wrong direction. As $he rises to $his feet, the slave is too far gone to make another lunge. $Lurcher.slaveName's course is over. <<elseif $Lurcher.combatSkill == 1>> - Her tackle is expert: she wraps her quarry up and pulls her down, falling on top of the struggling body. + $His tackle is expert: $he wraps $his quarry up and pulls _him2 down, falling on top of the struggling body. <<elseif $Lurcher.muscles > 30>> - She's burly enough that she tackles her quarry by simple force, an approach no less effective for its inelegance. + $He's burly enough that $he tackles $his quarry by simple force, an approach no less effective for its inelegance. <<elseif $origin == "virgin">> <<if random(1,3) == 1>> - The young slave manages to evade her inexpert tackle, however, and there is no space for another before she crosses the plaza. $Lurcher.slaveName's course is over. + The young slave manages to evade $his inexpert tackle, however, and there is no space for another before $he crosses the plaza. $Lurcher.slaveName's course is over. <<set _seed = 0>> <<else>> - Her tackle is inexpert, but the young slave stumbles and falls anyway. + $His tackle is inexpert, but the young slave stumbles and falls anyway. <</if>> <<elseif $origin == "housewife">> <<if random(1,4) == 1>> - The spoiled slave shows surprising agility, however, and evades $Lurcher.slaveName's inexpert attempts to tackle all the way across the plaza. Her course is over. + The spoiled slave shows surprising agility, however, and evades $Lurcher.slaveName's inexpert attempts to tackle all the way across the plaza. $His course is over. <<set _seed = 0>> <<else>> - Her tackle is inexpert, but the top-heavy bimbo goes down anyway. + $His tackle is inexpert, but the top-heavy bimbo goes down anyway. <</if>> <<elseif $origin == "feminized">> <<if random(1,4) == 1>> - The sissy bitch shows surprising agility, however, and evades $Lurcher.slaveName's inexpert attempts to tackle all the way across the plaza. Her course is over. + The sissy bitch shows surprising agility, however, and evades $Lurcher.slaveName's inexpert attempts to tackle all the way across the plaza. $His course is over. <<set _seed = 0>> <<else>> - Her tackle is inexpert, but the sissy bitch goes down with a wail. + $His tackle is inexpert, but the sissy bitch goes down with a wail. <</if>> <<elseif $origin == "huge balled">> <<if random(1,4) == 1>> - The slave shows surprising agility despite her flopping ballsack, and evades $Lurcher.slaveName's inexpert attempts to tackle all the way across the plaza. Her course is over. + The slave shows surprising agility despite _his2 flopping ballsack, and evades $Lurcher.slaveName's inexpert attempts to tackle all the way across the plaza. $His course is over. <<set _seed = 0>> <<else>> - Her tackle is inexpert, but the slave goes down, screaming with pain when her balls get trapped under their combined weight. + $His tackle is inexpert, but the slave goes down, screaming with pain when _his2 balls get trapped under their combined weight. <</if>> <<else>> <<if random(1,2) == 1>> - The determined young slave evades her inexpert attempts to tackle all the way across the plaza, however. $Lurcher.slaveName's course is over. + The determined young slave evades $his inexpert attempts to tackle all the way across the plaza, however. $Lurcher.slaveName's course is over. <<set _seed = 0>> <<else>> - Her tackle is inexpert, but the determined slave is unlucky, stumbling and going down anyway. + $His tackle is inexpert, but the determined slave is unlucky, stumbling and going down anyway. <</if>> <</if>> <</if>> <<if _seed == 1>> - The hare knows that once her knees touched the field, her chance at freedom was gone. She begins to cry + The hare knows that once _his2 knees touched the field, _his2 chance at freedom was gone. _He2 begins to cry <<if $phallus == "huge dick">> and then scream as $Lurcher.slaveName <<if $origin == "virgin">> - rapes her virgin ass. The lurcher has to fuck the slave to claim her for you, and she knows that a virgin pussy is more valuable than a virgin rosebud. She has to be very careful, since her cock is big enough to seriously hurt an anal virgin, but despite her care the racket is appallingly loud. + rapes _his2 virgin ass. The lurcher has to fuck the slave to claim _him2 for you, and $he knows that a virgin pussy is more valuable than a virgin rosebud. $He has to be very careful, since $his cock is big enough to seriously hurt an anal virgin, but despite $his care the racket is appallingly loud. <<elseif $origin == "heavily pregnant">> - fucks her cunt. As her belly attests, she's no virgin, but the lurcher's dick is big enough to reach her cervix. Her screams crescendo into shrieks as she experiences this internal torment. + fucks _his2 cunt. As _his2 belly attests, _he2's no virgin, but the lurcher's dick is big enough to reach _his2 cervix. _His2 screams crescendo into shrieks as _he2 experiences this internal torment. <<elseif $origin == "housewife">> - fucks her in the ass. A kept woman like her is probably no stranger to giving up her butthole to please a cock, but she apparently isn't used to dick quite this formidable. The lurcher leaves her sobbing disconsolately with a fresh load of cum leaking out of her backdoor. + fucks _him2 in the ass. A kept _woman2 like _him2 is probably no stranger to giving up _his2 butthole to please a cock, but _he2 apparently isn't used to dick quite this formidable. The lurcher leaves _him2 sobbing disconsolately with a fresh load of cum leaking out of _his2 backdoor. <<elseif $origin == "feminized">> - fucks her in the ass. The high-pitched shrieking produces some discussion in the crowd. If the slave didn't want huge cock up her girly anus, why did she feminize herself so thoroughly? A mystery. + fucks _him2 in the ass. The high-pitched shrieking produces some discussion in the crowd. If the slave didn't want huge cock up _his2 girly anus, why did _he2 feminize _himself2 so thoroughly? A mystery. <<elseif $origin == "huge balled">> - fucks her in the ass. The lurcher pounds her doggy style, taking nice long strokes that slide her formidable shaft almost all the way out of her victim's poor butthole before shoving it back in again. The slave's balls brush the field with each thrust. + fucks _him2 in the ass. The lurcher pounds _him2 doggy style, taking nice long strokes that slide $his formidable shaft almost all the way out of $his victim's poor butthole before shoving it back in again. The slave's balls brush the field with each thrust. <<else>> - fucks her in the ass. She never stops struggling, though this isn't much proof of undiminished resistance. After all, the lurcher's dick is so big that she'd probably fight to get it out of her butthole even if she weren't in need of breaking. + fucks _him2 in the ass. _He2 never stops struggling, though this isn't much proof of undiminished resistance. After all, the lurcher's dick is so big that _he2'd probably fight to get it out of _his2 butthole even if _he2 weren't in need of breaking. <</if>> <<elseif $phallus == "dick">> as $Lurcher.slaveName <<if $origin == "virgin">> - penetrates her virgin ass. The lurcher has to fuck the slave to claim her for you, and she knows that a virgin pussy is more valuable than a virgin rosebud. You see her back stiffen with overstimulation as she experiences the rare delight of raping an anal virgin. + penetrates _his2 virgin ass. The lurcher has to fuck the slave to claim _him2 for you, and $he knows that a virgin pussy is more valuable than a virgin rosebud. You see $his back stiffen with overstimulation as $he experiences the rare delight of raping an anal virgin. <<elseif $origin == "heavily pregnant">> - uses her cunt. The lurcher pulls the slave upright so she can cradle her pregnant belly while she fucks her. When she climaxes, she thrusts as deeply as she can manage, though more cum won't make the slave any more pregnant. + uses _his2 cunt. The lurcher pulls the slave upright so $he can cradle _his2 pregnant belly while $he fucks _him2. When _he2 climaxes, $he thrusts as deeply as $he can manage, though more cum won't make the slave any more pregnant. <<elseif $origin == "housewife">> - fucks her in the ass. Her tears seem to come more from disappointment than anal pain; a kept woman like her has probably put up with more than one buttfuck she didn't want. + fucks _him2 in the ass. _His2 tears seem to come more from disappointment than anal pain; a kept _woman2 like _him2 has probably put up with more than one buttfuck _he2 didn't want. <<elseif $origin == "feminized">> - fucks her in the ass. The whining produces some discussion in the crowd. If the slave didn't want cock up her girly anus, why did she feminize herself so thoroughly? A mystery. + fucks _him2 in the ass. The whining produces some discussion in the crowd. If the slave didn't want cock up _his2 girly anus, why did _he2 feminize _himself2 so thoroughly? A mystery. <<elseif $origin == "huge balled">> - uses her anus. With them facing away from you, the coupling takes the usual stacked symmetry of a dickgirl fucking a dickgirl, though the bottom's generous balls sway eye-catchingly back and forth with the rhythm of the assrape. + uses _his2 anus. With them facing away from you, the coupling takes the usual stacked symmetry of a dickgirl fucking a dickgirl, though the bottom's generous balls sway eye-catchingly back and forth with the rhythm of the assrape. <<else>> - fucks her in the ass. She never stops struggling, which is eloquent proof of the slave's undiminished resolve to resist her lot in life. She's probably been assraped more than once before today, but she fights this like it's the first time. + fucks _him2 in the ass. _He2 never stops struggling, which is eloquent proof of the slave's undiminished resolve to resist _his2 lot in life. _He2's probably been assraped more than once before today, but _he2 fights this like it's the first time. <</if>> <<elseif $phallus == "clit">> as $Lurcher.slaveName <<if $origin == "virgin">> - grinds herself against the hare to get her pseudophallic clit into her victim's virgin ass. The lurcher has to fuck the slave to claim her for you, and she knows that a virgin pussy is more valuable than a virgin rosebud. You see her back stiffen with overstimulation as her enormous bitch button slips up the slave's asshole. + grinds $himself against the hare to get $his pseudophallic clit into $his victim's virgin ass. The lurcher has to fuck the slave to claim _him2 for you, and $he knows that a virgin pussy is more valuable than a virgin rosebud. You see $his back stiffen with overstimulation as $his enormous bitch button slips up the slave's asshole. <<elseif $origin == "heavily pregnant">> - grinds herself against the hare to get her pseudophallic clit inside her victim's cunt. The lurcher has to force the hare down, legs spread, in order to work her enormous clit inside the slave, but she manages it and you see her back stiffen as her pseudophallus, small by the standards of penises but much more sensitive, slides inside. + grinds $himself against the hare to get $his pseudophallic clit inside $his victim's cunt. The lurcher has to force the hare down, legs spread, in order to work $his enormous clit inside the slave, but $he manages it and you see $his back stiffen as $his pseudophallus, small by the standards of penises but much more sensitive, slides inside. <<elseif $origin == "housewife">> - grinds herself against the hare to get her pseudophallic clit inside her victim's cunt. The slave doesn't seem to know what to make of this. Being raped by a huge clit is very probably a novel experience for her, but it isn't really painful. She closes her eyes and visibly tries to pretend it's a small penis. + grinds $himself against the hare to get $his pseudophallic clit inside $his victim's cunt. The slave doesn't seem to know what to make of this. Being raped by a huge clit is very probably a novel experience for _him2, but it isn't really painful. _He2 closes _his2 eyes and visibly tries to pretend it's a small penis. <<elseif $origin == "feminized">> - grinds herself against the hare to get her pseudophallic clit inside her victim's experienced anus. The slave stiffens with shock. She's obviously had quite a variety of things pushed up her girly butthole, but apparently this is her first time being fucked by a clit. + grinds $himself against the hare to get $his pseudophallic clit inside $his victim's experienced anus. The slave stiffens with shock. _He2's obviously had quite a variety of things pushed up _his2 girly butthole, but apparently this is _his2 first time being fucked by a clit. <<elseif $origin == "huge balled">> - grinds herself against the hare to get her pseudophallic clit inside her victim's asshole. The slave stiffens with shock. Though it's huge by the standards of clitorises, the pseudophallus isn't big enough to make assrape painful, but the extreme inversion of gender roles makes up for it, to go by the slave's horror. + grinds $himself against the hare to get $his pseudophallic clit inside $his victim's asshole. The slave stiffens with shock. Though it's huge by the standards of clitorises, the pseudophallus isn't big enough to make assrape painful, but the extreme inversion of gender roles makes up for it, to go by the slave's horror. <<else>> - grinds herself against the hare to get her pseudophallic clit inside her victim's asshole. The slave never stops struggling, which is eloquent proof of the slave's undiminished resolve to resist her lot in life. She's probably been assraped by much larger phalli, but she fights it anyway. + grinds $himself against the hare to get $his pseudophallic clit inside $his victim's asshole. The slave never stops struggling, which is eloquent proof of the slave's undiminished resolve to resist _his2 lot in life. _He2's probably been assraped by much larger phalli, but _he2 fights it anyway. <</if>> <<elseif $phallus == "dildo">> as $Lurcher.slaveName <<if $origin == "virgin">> - inserts her dildo into the slave's virgin ass. The lurcher has to fuck the slave to claim her for you, and she knows that a virgin pussy is more valuable than a virgin rosebud. The dildo is reasonably sized and well lubricated, but the poor slave shrieks with anal pain anyway. + inserts $his dildo into the slave's virgin ass. The lurcher has to fuck the slave to claim _him2 for you, and $he knows that a virgin pussy is more valuable than a virgin rosebud. The dildo is reasonably sized and well lubricated, but the poor slave shrieks with anal pain anyway. <<elseif $origin == "heavily pregnant">> - pushes her dildo inside the slave's fertile cunt. Desperate to preserve her baby, the slave complies as best she can. Taking the cue, your lurcher caresses her, producing a grotesque parody of loving pregnant sex that holds the crowd's attention. + pushes $his dildo inside the slave's fertile cunt. Desperate to preserve _his2 baby, the slave complies as best _he2 can. Taking the cue, your lurcher caresses _him2, producing a grotesque parody of loving pregnant sex that holds the crowd's attention. <<elseif $origin == "housewife">> - pushes her dildo up the slave's ass. A kept woman like her is not likely to be any stranger to sex toys, but to go by her reaction, she probably prefers to put them in her cunt. + pushes $his dildo up the slave's ass. A kept _woman2 like _him2 is not likely to be any stranger to sex toys, but to go by _his2 reaction, _he2 probably prefers to put them in _his2 cunt. <<elseif $origin == "feminized">> - pushes her dildo up the slave's sissy ass. The whining produces some discussion in the crowd. Why would a girl who feminized herself so thoroughly have any problem with something being shoved inside her rear pussy? A mystery. + pushes $his dildo up the slave's sissy ass. The whining produces some discussion in the crowd. Why would a _girl2 who feminized _himself2 so thoroughly have any problem with something being shoved inside _his2 rear pussy? A mystery. <<elseif $origin == "huge balled">> - pushes her dildo up the slave's ass. Knowing that she should do her best to create a spectacle, she takes the slave's dangling balls in one hand, squeezing them to force her bottom to be a good little butthole bitch, and then stimulating them until the slave achieves a shameful anal orgasm. + pushes $his dildo up the slave's ass. Knowing that $he should do $his best to create a spectacle, $he takes the slave's dangling balls in one hand, squeezing them to force $his bottom to be a good little butthole bitch, and then stimulating them until the slave achieves a shameful anal orgasm. <<else>> - pushes her dildo up the slave's ass. The slave never stops struggling, which is eloquent proof of the slave's undiminished resolve to resist her lot in life. She's probably had several dildos pushed up her disobedient asshole, but it seems she's determined to learn nothing. + pushes $his dildo up the slave's ass. The slave never stops struggling, which is eloquent proof of the slave's undiminished resolve to resist _his2 lot in life. _He2's probably had several dildos pushed up _his2 disobedient asshole, but it seems _he2's determined to learn nothing. <</if>> <<else>> - as $Lurcher.slaveName hesitates over her. The lurcher realizes that she won't be able to get hard. Desperate to avoid failure, she + as $Lurcher.slaveName hesitates over _him2. The lurcher realizes that $he won't be able to get hard. Desperate to avoid failure, $he <<if $origin == "virgin">> - shoves a couple of fingers into the slave's virgin ass. She has to fuck the slave to claim her for you, and she knows that a virgin pussy is more valuable than a virgin rosebud. + shoves a couple of fingers into the slave's virgin ass. $He has to fuck the slave to claim _him2 for you, and $he knows that a virgin pussy is more valuable than a virgin rosebud. <<elseif $origin == "heavily pregnant">> - gives up and fingerfucks the pregnant girl. Desperate to preserve her baby, the slave complies as best she can, producing a contest between her attempts to go along and the lurcher's attempts to make it unpleasant. This degenerates into a sobbing cunt fisting session. + gives up and fingerfucks the pregnant _girl2. Desperate to preserve _his2 baby, the slave complies as best _he2 can, producing a contest between _his2 attempts to go along and the lurcher's attempts to make it unpleasant. This degenerates into a sobbing cunt fisting session. <<elseif $origin == "housewife">> - shoves a couple of fingers up the slave's ass. A kept woman like her is not likely to be any stranger to a little anal play, but she doesn't seem to be much of a fan. She does her best to relax, but it's obvious that she doesn't appreciate having her asshole fingered. + shoves a couple of fingers up the slave's ass. A kept _woman2 like _him2 is not likely to be any stranger to a little anal play, but _he2 doesn't seem to be much of a fan. _He2 does _his2 best to relax, but it's obvious that _he2 doesn't appreciate having _his2 asshole fingered. <<elseif $origin == "feminized">> - shoves her fingers up the slave's sissy ass. It's so loose that this fails to have the desired effect. Afraid that she has to produce some sort of reaction, the lurcher shoves her entire fist up there, producing a wail of anal anguish. + shoves $his fingers up the slave's sissy ass. It's so loose that this fails to have the desired effect. Afraid that $he has to produce some sort of reaction, the lurcher shoves $his entire fist up there, producing a wail of anal anguish. <<elseif $origin == "huge balled">> - shoves a couple of fingers up the slave's ass. Casting about for something to do to distract from her inadequacy, the lurcher seizes the slave's dangling balls and shoves one of them up her loosened butt. This produces a shriek of pain and surprise, followed by a long fight to get the other one up there. + shoves a couple of fingers up the slave's ass. Casting about for something to do to distract from $his inadequacy, the lurcher seizes the slave's dangling balls and shoves one of them up _his2 loosened butt. This produces a shriek of pain and surprise, followed by a long fight to get the other one up there. <<else>> shoves a couple of fingers up the slave's ass. The slave never stops struggling, producing nothing more interesting than an extended wrestling match in which one of the parties has some fingers inside the other's butthole. <</if>> @@ -307,21 +311,21 @@ You place your hand on the leash's quick release and whisper your direction into <<if ($Lurcher.fetish == "sadist")>> @@.hotpink;What is finest in life,@@ in the mind of your sadistic lurcher? <<if $origin == "virgin">> - To sodomize a virgin asshole, and to hear screams of anal pain. + To sodomize a virgin asshole, and to <<if canHear($Lurcher)>>hear<<else>>feel<</if>> screams of anal pain. <<elseif $origin == "heavily pregnant">> - To molest a pregnant slut, and hear her sob with fear. + To molest a pregnant slut, and <<if canHear($Lurcher)>>hear<<else>>see<</if>> _him2 sob with fear. <<elseif $origin == "housewife">> - To rape a stuck-up bitch, and hear her cry with anal pain. + To rape a stuck-up bitch, and <<if canHear($Lurcher)>>hear<<else>>see<</if>> _him2 cry with anal pain. <<elseif $origin == "feminized">> - To rape a sissy's asspussy, and hear her squeal. + To rape a sissy's asspussy, and <<if canHear($Lurcher)>>hear<<else>>see<</if>> _him2 squeal. <<elseif $origin == "huge balled">> To abuse defenseless testicles, and make their owner scream. <<else>> - To rape a struggling victim, and taste her tears of defeat. + To rape a struggling victim, and taste _his2 tears of defeat. <</if>> <<set $Lurcher.devotion += 5>> <<elseif $Lurcher.fetish == "pregnancy" && $origin == "heavily pregnant">> - You lurcher is @@.hotpink;thrilled@@ to have had the privilege of chasing down and raping a pregnant woman. + You lurcher is @@.hotpink;thrilled@@ to have had the privilege of chasing down and raping a pregnant _woman2. <<set $Lurcher.devotion += 5>> <</if>> <</if>> @@ -329,11 +333,12 @@ You place your hand on the leash's quick release and whisper your direction into <<run newSlave($activeSlave)>> /* skip New Slave Intro */ <<else>> <<if $Lurcher.devotion > 50>> - She makes her way back to you dejectedly, hanging her head. + $He makes $his way back to you dejectedly, hanging $his head. <<else>> - She makes her way back to you slowly, doing her best to look contrite. + $He makes $his way back to you slowly, doing $his best to look contrite. <</if>> - On the other side of the plaza, there is a scream of triumph followed by tears of joy as one of the hares successfully wins her freedom. This cheerful noise mixes strangely with screams of a very different sort and the slap of flesh on flesh as a more successful lurcher rapes her capture. + <<setNonlocalPronouns $seeDicks>> + On the other side of the plaza, there is a scream of triumph followed by tears of joy as one of the hares successfully wins _hisU freedom. This cheerful noise mixes strangely with screams of a very different sort and the slap of flesh on flesh as a more successful lurcher rapes _hisU capture. <</if>> <<set $slaves[$slaveIndices[$Lurcher.ID]] = $Lurcher>> <<unset $origin, $origin1, $origin2, $origin3, $hareSpeed, $hareSpeed1, $hareSpeed2, $hareSpeed3, $hare1, $hare2, $hare3>> diff --git a/src/uncategorized/siblingsWorkaround.tw b/src/uncategorized/siblingsWorkaround.tw index ef5763064efd05dc778f4a36d1677305b8153b11..3c3035f7774b971cc72bfcb0294a4861695a657b 100644 --- a/src/uncategorized/siblingsWorkaround.tw +++ b/src/uncategorized/siblingsWorkaround.tw @@ -39,17 +39,17 @@ Your new pair of slaves look frightened and uncertain, but seem encouraged by ea <<set _secondSlave.attrXY = Math.clamp(_secondSlave.attrXY, 0, 100)>> <<set _secondSlave.energy += random(-20,20)>> <<set _secondSlave.fetishStrength = random(0,90)>> -<<set _secondSlave.fetish = either("none", "none", "none", "none", "none", "none", "submissive", "cumslut", "humiliation", "buttslut", "pregnancy", "sadist", "dom", "masochist")>> -<<set _secondSlave.behavioralFlaw = either("none", "none", "none", "arrogant", "bitchy", "odd", "hates men", "hates women", "hates women", "anorexic", "masochist", "gluttonous", "devout", "liberated")>> +<<set _secondSlave.fetish = either("buttslut", "cumslut", "dom", "humiliation", "masochist", "none", "none", "none", "none", "none", "none", "pregnancy", "sadist", "submissive")>> +<<set _secondSlave.behavioralFlaw = either("anorexic", "arrogant", "bitchy", "devout", "gluttonous", "hates men", "hates women", "hates women", "liberated", "masochist", "none", "none", "none", "odd")>> <<if (_secondSlave.behavioralFlaw == "devout")>> - <<set _secondSlave.sexualFlaw = either("none", "repressed", "shamefast", "apathetic")>> + <<set _secondSlave.sexualFlaw = either("apathetic", "none", "repressed", "shamefast")>> <<else>> - <<set _secondSlave.sexualFlaw = either("none", "none", "none", "none", "hates oral", "hates anal", "hates penetration", "repressed", "idealistic", "shamefast", "apathetic", "crude", "judgemental")>> + <<set _secondSlave.sexualFlaw = either("apathetic", "crude", "hates anal", "hates oral", "hates penetration", "idealistic", "judgemental", "none", "none", "none", "none", "repressed", "shamefast")>> <</if>> <<if $familyTesting == 0>> -<<set _secondSlave.relation = "sister">> -<<set _secondSlave.relationTarget = _secondSlave.ID - 1000>> + <<set _secondSlave.relation = "sister">> + <<set _secondSlave.relationTarget = _secondSlave.ID - 1000>> <</if>> <<if _secondSlave.actualAge < $minimumSlaveAge>> diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw index b180b3a89870bfd9b57dd6c03c0f7ed96590d138..e10a1d10288d1168446dc0dd803cd2d692bffb61 100644 --- a/src/uncategorized/slaveInteract.tw +++ b/src/uncategorized/slaveInteract.tw @@ -37,7 +37,7 @@ <</switch>> <</if>> -<<set $encyclopedia = either("Drugs and Their Effects", "From Rebellious to Devoted", "Costs Summary", "Disease in the Free Cities", "Slave Couture", "Nymphomania", "Gender", "Independent Slaves", "Modern Anal")>> +<<set $encyclopedia = either("Costs Summary", "Disease in the Free Cities", "Drugs and Their Effects", "From Rebellious to Devoted", "Gender", "Independent Slaves", "Modern Anal", "Nymphomania", "Slave Couture")>> <<if $activeSlave.dick > 0>><<set $showEncyclopedia = 1, $encyclopedia = "Gender">><</if>> <<include "Place In Line">> @@ -443,7 +443,7 @@ <span id="fucktoypref"> <<if ($activeSlave.assignment == "please you") || ($activeSlave.assignment == "serve in the master suite") || ($activeSlave.assignment == "be your Concubine")>> Fucktoy use preference: <strong><span id="hole">$activeSlave.toyHole</span></strong>. - <<link "Mouth">><<set $activeSlave.toyHole = "mouth">><<replace "#hole">>$activeSlave.toyHole<</replace>><</link>> + <<link "Mouth">><<set $activeSlave.toyHole = "mouth">><<replace "#hole">>$activeSlave.toyHole<</replace>><</link>> | <<link "Tits">><<set $activeSlave.toyHole = "boobs">><<replace "#hole">>$activeSlave.toyHole<</replace>><</link>> <<if ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>> | <<link "Pussy">><<set $activeSlave.toyHole = "pussy">><<replace "#hole">>$activeSlave.toyHole<</replace>><</link>> diff --git a/src/uncategorized/slaveMarkets.tw b/src/uncategorized/slaveMarkets.tw index 4bca317b9339e90485e167b6e9dce7e5b54b771f..85328a79883399232d08fd56c206966cbbbc2167 100644 --- a/src/uncategorized/slaveMarkets.tw +++ b/src/uncategorized/slaveMarkets.tw @@ -28,7 +28,7 @@ You visit the slave markets off the arcology plaza. It's always preferable to ex <<case "wetware">> - You're in the corner of the slave market occupied by scientists and programmers, pioneers in perfecting the skills of slaves by removing all external stimuli and subjecting them to an inhumane regimen of simulated sexual and career training. Although their bodies are ruined, these slaves are guarranteed to be intelligent, skilled and trained in a variety of jobs. If you're willing to perform extensive repairs<<if $bodyswapAnnounced>>, or have a spare body ready<</if>>, these slaves have high potential in almost any role in your arcology. + You're in the corner of the slave market occupied by scientists and programmers, pioneers in perfecting the skills of slaves by removing all external stimuli and subjecting them to an inhumane regimen of simulated sexual and career training. Although their bodies are ruined, these slaves are guaranteed to be intelligent, skilled and trained in a variety of jobs. If you're willing to perform extensive repairs<<if $bodyswapAnnounced>>, or have a spare body ready<</if>>, these slaves have high potential in almost any role in your arcology. <<set _wetware = random(1,4)>> <<if _wetware == 1>> @@ -194,17 +194,18 @@ You visit the slave markets off the arcology plaza. It's always preferable to ex <<set $slaveCost = 500*Math.trunc($slaveCost/500)>> The offered price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +<<setLocalPronouns $activeSlave>> <<if $cash >= $slaveCost>> - <br>[[Buy her and check out other slaves to order|Slave Markets][$cash -= $slaveCost, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] + <br>[["Buy " + $him + " and check out other slaves to order"|Slave Markets][$cash -= $slaveCost, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] <<if $newSlaves.length == 0>> - <br>[[Buy her slave contract|New Slave Intro][$cash -= $slaveCost,$nextButton = "Continue",$nextLink = "AS Dump",$returnTo = "Main"]] + <br>[["Buy " + $his + " slave contract"|New Slave Intro][$cash -= $slaveCost,$nextButton = "Continue",$nextLink = "AS Dump",$returnTo = "Main"]] <<else>> - <br>[[Buy her and Finish your order of slaves|Bulk Slave Intro][$cash -= $slaveCost, $newSlaves.push($activeSlave)]] + <br>[["Buy " + $him + " and finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $newSlaves.push($activeSlave)]] <</if>> <<else>> //You lack the necessary funds to buy this slave.// <</if>> -<br>[[Decline to purchase her and check out another slave|Slave Markets][$slavesSeen += 1]] +<br>[["Decline to purchase " + $him + " and check out another slave"|Slave Markets][$slavesSeen += 1]] <<if $newSlaves.length > 0>> <br>[[Finish your order of slaves|Bulk Slave Intro]] <</if>> diff --git a/src/uncategorized/slaveShelter.tw b/src/uncategorized/slaveShelter.tw index 758ef6a40973a0738da0c677d6e9256166f91c27..81b5bee6ee7e6c218e036c918e42c2054cdb8ecb 100644 --- a/src/uncategorized/slaveShelter.tw +++ b/src/uncategorized/slaveShelter.tw @@ -22,7 +22,7 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is <</if>> <</if>> <<if random(1,100) <= $seeDicks>> - <<set _possibleOrigins.push("geldling", "dickpain")>> + <<set _possibleOrigins.push("gelding", "dickpain")>> <</if>> <<if random(0,99) >= $seeDicks>> <<set _possibleOrigins.push("plugs", "used whore", "reaction")>> @@ -34,7 +34,6 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is <<set _possibleOrigins.push("degraded DoL")>> <</if>> - <<set _origin = _possibleOrigins.random()>> <<switch _origin>> @@ -69,8 +68,8 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is <<set $shelterSlave.devotion = random(-100,-90)>> <<set $shelterSlave.trust = random(-100,-90)>> <<set $shelterSlave.health = random(-80,-60)>> - <<set $shelterSlave.behavioralFlaw = either("odd", "hates men", "hates women")>> - <<set $shelterSlave.sexualFlaw = either("hates anal", "hates oral", "hates penetration", "apathetic")>> + <<set $shelterSlave.behavioralFlaw = either("hates men", "hates women", "odd")>> + <<set $shelterSlave.sexualFlaw = either("apathetic", "hates anal", "hates oral", "hates penetration")>> <<case "blind">> <<set $activeSlaveOneTimeMinAge = $minimumSlaveAge>> <<set $activeSlaveOneTimeMaxAge = 22>> @@ -148,9 +147,9 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is <<set $shelterSlave.foreskin = 0>> <<set $shelterSlave.balls = 0>> <<set $shelterSlave.scrotum = 0>> - <<set $shelterSlave.behavioralFlaw = either("odd", "anorexic", "anorexic", "anorexic")>> + <<set $shelterSlave.behavioralFlaw = either("anorexic", "anorexic", "anorexic", "odd")>> <<set $shelterSlave.sexualFlaw = either("apathetic", "neglectful", "self hating")>> - <<set $shelterSlave.fetish = either("none", "none", "masochist")>> + <<set $shelterSlave.fetish = either("masochist", "none", "none")>> <<set $shelterSlave.customDesc = "The scars from her crudely performed self-castration are still visible on her lower groin.">> <<case "cannibal victim female">> <<if $pedo_mode == 1>> @@ -171,9 +170,9 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is <<set $shelterSlave.boobs = 0>> <<set $shelterSlave.boobsImplant = 0>> <<set $shelterSlave.nipples = "tiny">> - <<set $shelterSlave.behavioralFlaw = either("odd", "anorexic", "anorexic", "anorexic")>> + <<set $shelterSlave.behavioralFlaw = either("anorexic", "anorexic", "anorexic", "odd")>> <<set $shelterSlave.sexualFlaw = either("apathetic", "neglectful", "self hating")>> - <<set $shelterSlave.fetish = either("none", "none", "masochist")>> + <<set $shelterSlave.fetish = either("masochist", "none", "none")>> <<set $shelterSlave.customDesc = "Her chest is covered by an ugly mess of scar tissue.">> <<case "degraded DoL">> <<set $activeSlaveOneTimeMinAge = 14>> @@ -186,13 +185,13 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is <<set $shelterSlave.devotion = random(-100,-90)>> <<set $shelterSlave.trust = random(-100,-90)>> <<set $shelterSlave.health = random(-90,-70)>> - <<set $shelterSlave.slaveName = either('Cumbucket', 'Sluttypig', 'Fuckpuppet', 'Cumgulper', 'Cumdoll', 'Cumbitch', 'Whorelips', 'Spunkswallow', 'Fuckslut', 'Fucktoy', 'Spunkbucket', 'Fuckhole', 'Fuckmeat', 'Rapemeat')>> + <<set $shelterSlave.slaveName = either("Cumbitch", "Cumbucket", "Cumdoll", "Cumgulper", "Fuckhole", "Fuckmeat", "Fuckpuppet", "Fuckslut", "Fucktoy", "Rapemeat", "Sluttypig", "Spunkbucket", "Spunkswallow", "Whorelips")>> <<set $shelterSlave.slaveSurname = 0>> <<set $shelterSlave.minorInjury = either("black eye", "bruise", "split lip", 0)>> <<set $shelterSlave.weight = random(-90,-30)>> <<set $shelterSlave.muscles = random(-75,0)>> <<set $shelterSlave.energy = random(0,30)>> - <<set $shelterSlave.fetish = either("none", "none", "submissive", "masochist", "humiliation", "humiliation")>> + <<set $shelterSlave.fetish = either("humiliation", "humiliation", "masochist", "none", "none", "submissive")>> <<set $shelterSlave.boobsTat = either("degradation", "rude words", "none")>> <<set $shelterSlave.buttTat = either("degradation", "rude words", 0)>> <<set $shelterSlave.lipsTat = either("degradation", "rude words", 0)>> @@ -220,7 +219,7 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is <<if $shelterSlave.dick > 1>> <<set $shelterSlave.dickTat = either("degradation", "rude words", 0)>> <</if>> -<<case "geldling">> +<<case "gelding">> <<set $activeSlaveOneTimeMinAge = 20>> <<set $activeSlaveOneTimeMaxAge = 42>> <<set $oneTimeDisableDisability = 1>> @@ -241,8 +240,8 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is <<set $shelterSlave.entertainSkill = 0>> <<set $shelterSlave.combatSkill = 0>> <<set $shelterSlave.attrXY = random(40,60)>> - <<set $shelterSlave.behavioralFlaw = either("odd", "hates men", "anorexic", "gluttonous")>> - <<set $shelterSlave.sexualFlaw = either("hates anal", "apathetic")>> + <<set $shelterSlave.behavioralFlaw = either("anorexic", "gluttonous", "hates men", "odd")>> + <<set $shelterSlave.sexualFlaw = either("apathetic", "hates anal")>> <<case "dickpain">> <<set $activeSlaveOneTimeMinAge = 20>> <<set $activeSlaveOneTimeMaxAge = 42>> @@ -265,7 +264,7 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is <<set $shelterSlave.combatSkill = 0>> <<set $shelterSlave.energy = random(5,10)>> <<set $shelterSlave.attrXX = 0>> - <<set $shelterSlave.behavioralFlaw = either("odd", "hates women")>> + <<set $shelterSlave.behavioralFlaw = either("hates women", "odd")>> <<set $shelterSlave.sexualFlaw = either("apathetic")>> <<case "plugs">> <<set $activeSlaveOneTimeMinAge = 20>> @@ -286,8 +285,8 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is <<set $shelterSlave.whoreSkill = 0>> <<set $shelterSlave.entertainSkill = 0>> <<set $shelterSlave.combatSkill = 0>> - <<set $shelterSlave.behavioralFlaw = either("odd", "anorexic", "gluttonous")>> - <<set $shelterSlave.sexualFlaw = either("hates penetration", "hates anal", "hates oral")>> + <<set $shelterSlave.behavioralFlaw = either("anorexic", "gluttonous", "odd")>> + <<set $shelterSlave.sexualFlaw = either("hates anal", "hates oral", "hates penetration")>> <<case "breeder">> <<if $pedo_mode == 1>> <<set $activeSlaveOneTimeMinAge = ($fertilityAge + 6)>> @@ -315,8 +314,8 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is <<set $shelterSlave.whoreSkill = 0>> <<set $shelterSlave.entertainSkill = 0>> <<set $shelterSlave.combatSkill = 0>> - <<set $shelterSlave.behavioralFlaw = either("odd", "hates men", "gluttonous")>> - <<set $shelterSlave.sexualFlaw = either("hates penetration", "apathetic", "repressed")>> + <<set $shelterSlave.behavioralFlaw = either("gluttonous", "hates men", "odd")>> + <<set $shelterSlave.sexualFlaw = either("apathetic", "hates penetration", "repressed")>> <<case "used whore">> <<set $activeSlaveOneTimeMinAge = 32>> <<set $activeSlaveOneTimeMaxAge = 42>> @@ -339,8 +338,8 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is <<set $shelterSlave.whoreSkill = 35>> <<set $shelterSlave.entertainSkill = 15>> <<set $shelterSlave.combatSkill = 0>> - <<set $shelterSlave.behavioralFlaw = either("odd", "hates men", "gluttonous", "anorexic")>> - <<set $shelterSlave.sexualFlaw = either("hates penetration", "hates oral", "hates anal", "apathetic")>> + <<set $shelterSlave.behavioralFlaw = either("anorexic", "gluttonous", "hates men", "odd")>> + <<set $shelterSlave.sexualFlaw = either("apathetic", "hates anal", "hates oral", "hates penetration")>> <<case "reaction">> <<set $oneTimeDisableDisability = 1>> <<include "Generate New Slave">> @@ -363,13 +362,15 @@ You contact the Slave Shelter to review the profile of the slave the Shelter is <<if (random(1,3) == 1)>> <<set $shelterSlave.butt += random(3,5)>> <</if>> - <<set $shelterSlave.behavioralFlaw = either("odd", "gluttonous", "anorexic")>> - <<set $shelterSlave.sexualFlaw = either("hates penetration", "hates oral", "hates anal", "apathetic")>> + <<set $shelterSlave.behavioralFlaw = either("anorexic", "gluttonous", "odd")>> + <<set $shelterSlave.sexualFlaw = either("apathetic", "hates anal", "hates oral", "hates penetration")>> <</switch>> <<set $shelterSlave.origin = "You got her at the Slave Shelter. " + $shelterSlave.origin>> <</if>> <<set $slaveCost = 1000>> +<<setLocalPronouns $shelterSlave>> + The placement fee is <<print cashFormat($slaveCost)>>. <br><br> @@ -385,7 +386,7 @@ The placement fee is <<print cashFormat($slaveCost)>>. <span id="result"> <<if $cash >= $slaveCost>> - <<link "Buy her slave contract">> + <<link "Buy $his slave contract">> <<replace "#result">> <<set $cash -= $slaveCost, $shelterSlaveBought = 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main">> <<include "New Slave Intro">> diff --git a/src/uncategorized/slaveSold.tw b/src/uncategorized/slaveSold.tw index 999a83701f03e3db444855332c5222f09eceb57c..4c87e9d6d08b61d534f70cabd786c53cc36c02a0 100644 --- a/src/uncategorized/slaveSold.tw +++ b/src/uncategorized/slaveSold.tw @@ -2,9 +2,11 @@ <<set $nextButton = "Back to Main", $nextLink = "Main", $returnTo = "Main", $showEncyclopedia = 1, $encyclopedia = "Personal Assistant">> +<<setLocalPronouns $activeSlave>> + <<set $display = 0>> -<<if !["elite auction", "tentacle bred", "womb filler", "organ crafter", "abortion TV", "repopulationist arcology", "eugenics arcology", "peacekeepers"].includes($buyer) && ((($activeSlave.actualAge < $retirementAge-1) && $PhysicalRetirementAgePolicy != 1) || (($activeSlave.physicalAge < $retirementAge-1) && $PhysicalRetirementAgePolicy == 1))>> /* organ crafter is not viable now, the elite won't part so easily with a prize, some take place x months later when the event's max is 15 weeks, and the rest are snuff events. You don't want that slave back. */ +<<if !["abortion TV", "elite auction", "eugenics arcology", "organ crafter", "peacekeepers", "repopulationist arcology", "tentacle bred", "womb filler"].includes($buyer) && ((($activeSlave.actualAge < $retirementAge-1) && $PhysicalRetirementAgePolicy != 1) || (($activeSlave.physicalAge < $retirementAge-1) && $PhysicalRetirementAgePolicy == 1))>> /* organ crafter is not viable now, the elite won't part so easily with a prize, some take place x months later when the event's max is 15 weeks, and the rest are snuff events. You don't want that slave back. */ <<if !$boomerangSlave || $boomerangWeeks > 15>> <<if $activeSlave.fuckdoll == 0>> <<if canWalk($activeSlave)>> @@ -94,43 +96,44 @@ <<if $familyTesting == 1>> <<for _ss = 0; _ss < $slaves.length; _ss++>> + <<setLocalPronouns $slaves[_ss] 2>> <<if $activeSlave.mother == $slaves[_ss].ID>> - $slaves[_ss].slaveName is @@.mediumorchid;grieved@@ that you are selling her daughter. + $slaves[_ss].slaveName is @@.mediumorchid;grieved@@ that you are selling _his2 daughter. <<run clearSummaryCache($slaves[_ss])>> <br><br> <<set $slaves[_ss].devotion -= 20>> <</if>> <<if $activeSlave.father == $slaves[_ss].ID>> - $slaves[_ss].slaveName is @@.mediumorchid;disappointed@@ that you are selling her daughter. + $slaves[_ss].slaveName is @@.mediumorchid;disappointed@@ that you are selling _his2 daughter. <<run clearSummaryCache($slaves[_ss])>> <br><br> <<set $slaves[_ss].devotion -= 10>> <</if>> <<if $activeSlave.ID == $slaves[_ss].father>> - $slaves[_ss].slaveName is @@.mediumorchid;saddened@@ that you are selling her father. + $slaves[_ss].slaveName is @@.mediumorchid;saddened@@ that you are selling _his2 father. <<run clearSummaryCache($slaves[_ss])>> <br><br> <<set $slaves[_ss].devotion -= 10>> <</if>> <<if $activeSlave.ID == $slaves[_ss].mother>> - $slaves[_ss].slaveName is @@.mediumorchid;grieved@@ that you are selling her mother. + $slaves[_ss].slaveName is @@.mediumorchid;grieved@@ that you are selling _his2 mother. <<run clearSummaryCache($slaves[_ss])>> <br><br> <<set $slaves[_ss].devotion -= 20>> <</if>> <<switch areSisters($activeSlave, $slaves[_ss])>> <<case 1>> - $slaves[_ss].slaveName is @@.mediumorchid;devastated@@ that you are selling her twin. + $slaves[_ss].slaveName is @@.mediumorchid;devastated@@ that you are selling _his2 twin. <<run clearSummaryCache($slaves[_ss])>> <br><br> <<set $slaves[_ss].devotion -= 30>> <<case 2>> - $slaves[_ss].slaveName is @@.mediumorchid;grieved@@ that you are selling her sister. + $slaves[_ss].slaveName is @@.mediumorchid;grieved@@ that you are selling _his2 sister. <<run clearSummaryCache($slaves[_ss])>> <br><br> <<set $slaves[_ss].devotion -= 20>> <<case 3>> - $slaves[_ss].slaveName is @@.mediumorchid;disheartened@@ that you are selling her half-sister. + $slaves[_ss].slaveName is @@.mediumorchid;disheartened@@ that you are selling _his2 half-sister. <<run clearSummaryCache($slaves[_ss])>> <br><br> <<set $slaves[_ss].devotion -= 10>> @@ -140,7 +143,8 @@ <<if $activeSlave.relation != 0>> <<set _ss = $slaveIndices[$activeSlave.relationTarget]>> <<if def _ss && $slaves[_ss].fetish != "mindbroken">> - $slaves[_ss].slaveName is @@.mediumorchid;grieved@@ that you are selling her $activeSlave.relation. + <<setLocalPronouns $slaves[_ss] 2>> + $slaves[_ss].slaveName is @@.mediumorchid;grieved@@ that you are selling _his2 $activeSlave.relation. <<run clearSummaryCache($slaves[_ss])>> <br><br> <<set $slaves[_ss].devotion -= 20>> @@ -151,7 +155,8 @@ <<if $activeSlave.relationship > 0>> <<set _ss = $slaveIndices[$activeSlave.relationshipTarget]>> <<if def _ss && $slaves[_ss].fetish != "mindbroken">> - $slaves[_ss].slaveName is @@.mediumorchid;grieved@@ that you are selling her best source of comfort and companionship in a life of bondage. + <<setLocalPronouns $slaves[_ss] 2>> + $slaves[_ss].slaveName is @@.mediumorchid;grieved@@ that you are selling _his2 best source of comfort and companionship in a life of bondage. <<run clearSummaryCache($slaves[_ss])>> <br><br> <<set $slaves[_ss].devotion -= $slaves[_ss].relationship*10>> @@ -172,7 +177,8 @@ <<if $activeSlave.rivalry != 0>> <<set _ss = $slaveIndices[$activeSlave.rivalryTarget]>> <<if def _ss && $slaves[_ss].fetish != "mindbroken">> - $slaves[_ss].slaveName is @@.hotpink;pleased@@ that she won't have to see her rival any more. + <<setLocalPronouns $slaves[_ss] 2>> + $slaves[_ss].slaveName is @@.hotpink;pleased@@ that _he2 won't have to see _his2 rival any more. <<run clearSummaryCache($slaves[_ss])>> <br><br> <<set $slaves[_ss].devotion += $slaves[_ss].rivalry*3>> @@ -184,7 +190,7 @@ <<switch $buyer>> <<case "housekeeper">> - $activeSlave.slaveName settles into her new life in a humbler part of $arcologies[0].name, and can occasionally be seen accompanying her master in public. + $activeSlave.slaveName settles into $his new life in a humbler part of $arcologies[0].name, and can occasionally be seen accompanying $his master in public. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].trust >= -20)>> <<if ($slaves[_ss].physicalAge > 30)>> @@ -199,7 +205,7 @@ <</if>> <<case "buttbreaker">> - In short order, $activeSlave.slaveName is heard out on the promenade, sobbing and screaming as her new owner breaks in her virgin butt in public. + In short order, $activeSlave.slaveName is heard out on the promenade, sobbing and screaming as $his new owner breaks in $his virgin butt in public. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].anus == 0)>> <<run clearSummaryCache($slaves[_ss])>> @@ -212,7 +218,7 @@ <</if>> <<case "cheap brothel">> - $activeSlave.slaveName is soon seen on shift outside a seedy establishment in the lower arcology, mechanically offering her holes to passersby and flinching whenever her superiors come out to check on her. + $activeSlave.slaveName is soon seen on shift outside a seedy establishment in the lower arcology, mechanically offering $his holes to passersby and flinching whenever $his superiors come out to check on $him. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].assignment == "whore") || ($slaves[_ss].assignment == "work in the brothel")>> <<run clearSummaryCache($slaves[_ss])>> @@ -225,7 +231,7 @@ <</if>> <<case "nice brothel">> - $activeSlave.slaveName disappears for a time as her training is perfected, but she reappears in the refined brothel, wearing classy clothes and flirting gracefully with patrons of her body. + $activeSlave.slaveName disappears for a time as $his training is perfected, but $he reappears in the refined brothel, wearing classy clothes and flirting gracefully with patrons of $his body. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].assignment == "whore") || ($slaves[_ss].assignment == "work in the brothel")>> <<run clearSummaryCache($slaves[_ss])>> @@ -238,7 +244,7 @@ <</if>> <<case "factory farm">> - $activeSlave.slaveName is never again seen in public, but her fate is obvious: she's chained to a milking rack somewhere in a cavernous factory farm, with milk draining from her tits<<if $activeSlave.balls > 0>> and an electroshock stimulator up her butt to force her to cum<<elseif $activeSlave.ovaries > 0>> and a new baby in her belly every ten months<</if>>. + $activeSlave.slaveName is never again seen in public, but $his fate is obvious: $he's chained to a milking rack somewhere in a cavernous factory farm, with milk draining from $his tits<<if $activeSlave.balls > 0>> and an electroshock stimulator up $his butt to force $him to cum<<elseif $activeSlave.ovaries > 0>> and a new baby in $his belly every ten months<</if>>. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].devotion <= 50)>> <<run clearSummaryCache($slaves[_ss])>> @@ -251,7 +257,7 @@ <</if>> <<case "elite auction">> - $activeSlave.slaveName is quickly escorted out by her new master. She is rarely seen in public anymore, but her records show she is settling well into being her new owner's breeder. + $activeSlave.slaveName is quickly escorted out by $his new master. She is rarely seen in public anymore, but $his records show she is settling well into being $his new owner's breeder. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].breedingMark != 1 && $propOutcome == 1)>> <<run clearSummaryCache($slaves[_ss])>> @@ -301,11 +307,11 @@ <</if>> <</for>> <<if (_slaveImpact == 1)>> - Your slaves with pregnancy fetishes envy her, and @@.mediumaquamarine;trust that even if you decide to sell them,@@ they'll find themselves in a sexually satisfying life. + Your slaves with pregnancy fetishes envy $him, and @@.mediumaquamarine;trust that even if you decide to sell them,@@ they'll find themselves in a sexually satisfying life. <</if>> <<case "nipple fetishist">> - $activeSlave.slaveName's new mistress is an exhibitionist as well as a nipple fetishist, and before long, she's seen in the club, riding $activeSlave.slaveName's chest with her wet pussy. The slave is expected to keep her nipples erect for her at all times. + $activeSlave.slaveName's new mistress is an exhibitionist as well as a nipple fetishist, and before long, $he's seen in the club, riding $activeSlave.slaveName's chest with $his wet pussy. The slave is expected to keep $his nipples erect for $him at all times. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetish == "boobs")>> <<if ($slaves[_ss].fetishKnown == 1)>> @@ -316,7 +322,7 @@ <</if>> <</for>> <<if (_slaveImpact == 1)>> - Your slaves with breast fetishes envy her, and @@.mediumaquamarine;trust that even if you decide to sell them,@@ they'll find themselves in a sexually satisfying life. + Your slaves with breast fetishes envy $him, and @@.mediumaquamarine;trust that even if you decide to sell them,@@ they'll find themselves in a sexually satisfying life. <</if>> <<case "nipple fucker">> @@ -348,11 +354,11 @@ <</if>> <</for>> <<if (_slaveImpact == 1)>> - Your buttsluts envy her, and @@.mediumaquamarine;trust that even if you decide to sell them,@@ they'll find themselves orgasming with dicks up their asses anyway. + Your buttsluts envy $him, and @@.mediumaquamarine;trust that even if you decide to sell them,@@ they'll find themselves orgasming with dicks up their asses anyway. <</if>> <<case "oral fetishist">> - The next time $activeSlave.slaveName is seen in public, she's obediently accompanying her new master. After doing some business on the promenade, he pulls her into an alcove and lets her masturbate as he uses her throat. + The next time $activeSlave.slaveName is seen in public, $he's obediently accompanying $his new master. After doing some business on the promenade, he pulls $him into an alcove and lets $him masturbate as he uses $his throat. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetish == "cumslut")>> <<if ($slaves[_ss].fetishKnown == 1)>> @@ -363,11 +369,11 @@ <</if>> <</for>> <<if (_slaveImpact == 1)>> - Your cumsluts envy her, and @@.mediumaquamarine;trust that even if you decide to sell them,@@ they'll find themselves filled with cum every day. + Your cumsluts envy $him, and @@.mediumaquamarine;trust that even if you decide to sell them,@@ they'll find themselves filled with cum every day. <</if>> <<case "pain fetishist">> - $activeSlave.slaveName is not seen again in public for a long time, but the crack of leather on flesh and the resultant hoarse female howling that issues from her new mistress's apartment is well-known. + $activeSlave.slaveName is not seen again in public for a long time, but the crack of leather on flesh and the resultant hoarse female howling that issues from $his new mistress's apartment is well-known. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetish == "masochist")>> <<if ($slaves[_ss].fetishKnown == 1)>> @@ -378,11 +384,11 @@ <</if>> <</for>> <<if (_slaveImpact == 1)>> - Your masochists envy her, and @@.mediumaquamarine;trust that even if you decide to sell them,@@ they'll never lack for the abuse they need. + Your masochists envy $him, and @@.mediumaquamarine;trust that even if you decide to sell them,@@ they'll never lack for the abuse they need. <</if>> <<case "sadism fetishist">> - $activeSlave.slaveName rarely leaves her new mistress's apartments, but the slave rumor mill bears stories about her to your penthouse anyway. Her mistress uses her as a rapist on demand, and her dumbly obedient brutality is renowned. + $activeSlave.slaveName rarely leaves $his new mistress's apartments, but the slave rumor mill bears stories about $him to your penthouse anyway. $His mistress uses $him as a rapist on demand, and $his dumbly obedient brutality is renowned. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetish == "sadist")>> <<if ($slaves[_ss].fetishKnown == 1)>> @@ -397,7 +403,7 @@ <</if>> <<case "dom fetishist">> - $activeSlave.slaveName wins herself a leadership position with her new master, who repays her hard work by allowing her to use his slaves at will. + $activeSlave.slaveName wins herself a leadership position with $his new master, who repays $his hard work by allowing her to use his slaves at will. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetish == "dom")>> <<if ($slaves[_ss].fetishKnown == 1)>> @@ -408,11 +414,11 @@ <</if>> <</for>> <<if (_slaveImpact == 1)>> - Your sexually dominant slaves do their best to follow her success, and @@.mediumaquamarine;trust that if you decide to sell them,@@ they'll stand a chance of winning a place in which they can fuck as well as get fucked. + Your sexually dominant slaves do their best to follow $his success, and @@.mediumaquamarine;trust that if you decide to sell them,@@ they'll stand a chance of winning a place in which they can fuck as well as get fucked. <</if>> <<case "sub fetishist">> - The back of $activeSlave.slaveName's head becomes a well-known sight in business circles, since her mistress rarely lets it out from between her legs. + The back of $activeSlave.slaveName's head becomes a well-known sight in business circles, since $his mistress rarely lets it out from between her legs. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetish == "submissive")>> <<if ($slaves[_ss].fetishKnown == 1)>> @@ -423,7 +429,7 @@ <</if>> <</for>> <<if (_slaveImpact == 1)>> - Your sexually submissive slaves secretly envy her simple life, and @@.mediumaquamarine;trust that if you decide to sell them,@@ there are places where a sub can be valuable and safe. + Your sexually submissive slaves secretly envy $his simple life, and @@.mediumaquamarine;trust that if you decide to sell them,@@ there are places where a sub can be valuable and safe. <</if>> <<case "supremacist arcology">> @@ -440,7 +446,7 @@ <</if>> <<case "subjugationist arcology">> - $activeSlave.slaveName is shipped off to help produce a race of $activeSlave.race idiots to perform eternal servitude. She is not perceptive enough to fear her upcoming life as a downtrodden breeder. + $activeSlave.slaveName is shipped off to help produce a race of $activeSlave.race idiots to perform eternal servitude. $He is not perceptive enough to fear $his upcoming life as a downtrodden breeder. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].intelligence+$slaves[_ss].intelligenceImplant > 15)>> <<run clearSummaryCache($slaves[_ss])>> @@ -453,7 +459,7 @@ <</if>> <<case "gender radicalist arcology">> - $activeSlave.slaveName is shipped off, but her buyer is so unwilling to waste any time that the shipment container includes hormonal injectors to get her started on an intensive feminization regime as quickly as possible. + $activeSlave.slaveName is shipped off, but $his buyer is so unwilling to waste any time that the shipment container includes hormonal injectors to get $him started on an intensive feminization regime as quickly as possible. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].dick > 0)>> <<if ($slaves[_ss].devotion <= 20)>> @@ -477,11 +483,11 @@ <</if>> <</for>> <<if (_slaveImpact == 1)>> - Most of your slaves could scarcely care less, but your most intelligent girls are @@.mediumorchid;privately skeptical of her fate;@@ she's become one more cookie cutter bimbo in a place that uses and discards such sluts. + Most of your slaves could scarcely care less, but your most intelligent girls are @@.mediumorchid;privately skeptical of $his fate;@@ $he's become one more cookie cutter bimbo in a place that uses and discards such sluts. <</if>> <<case "paternalist arcology">> - $activeSlave.slaveName is shipped off to be improved into a happy, educated slave at the best pace her new owner can manage. + $activeSlave.slaveName is shipped off to be improved into a happy, educated slave at the best pace $his new owner can manage. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].devotion < -20)>> <<if ($slaves[_ss].intelligence+$slaves[_ss].intelligenceImplant < -15)>> @@ -492,11 +498,11 @@ <</if>> <</for>> <<if (_slaveImpact == 1)>> - Your unbroken, uneducated slaves who hear about this are @@.mediumorchid;quietly resentful,@@ not understanding that she was only sold to a paternalist arcology because she was obedient. + Your unbroken, uneducated slaves who hear about this are @@.mediumorchid;quietly resentful,@@ not understanding that $he was only sold to a paternalist arcology because $he was obedient. <</if>> <<case "degradationist arcology">> - Stories about the place she's going have reached $arcologies[0].name, and $activeSlave.slaveName suspects the fate she's been condemned to when she's loaded into a shipping container expressly designed to keep the inmate awake and uncomfortable. + Stories about the place $he's going have reached $arcologies[0].name, and $activeSlave.slaveName suspects the fate $he's been condemned to when $he's loaded into a shipping container expressly designed to keep the inmate awake and uncomfortable. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].devotion > 20)>> <<run clearSummaryCache($slaves[_ss])>> @@ -509,7 +515,7 @@ <</if>> <<case "slimness enthusiast arcology">> - $activeSlave.slaveName is taken away to join the tribe of squealing, slim forms that populate the arcology of her new owner. + $activeSlave.slaveName is taken away to join the tribe of squealing, slim forms that populate the arcology of $his new owner. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].intelligence+$slaves[_ss].intelligenceImplant > 50)>> <<run clearSummaryCache($slaves[_ss])>> @@ -548,7 +554,7 @@ <</if>> <<case "abortion TV">> - $activeSlave.slaveName is soon seen on live TV, restrained and still grotesquely pregnant. She screams into her restraints as the host approaches with a comically large syringe of abortifacients and drives it deep into her womb. Within minutes, a flood of liquid and fetuses are pouring from her gaping cunt, all the while he times how long it takes her overburdened womb to drain of all its contents. + $activeSlave.slaveName is soon seen on live TV, restrained and still grotesquely pregnant. $He screams into $his restraints as the host approaches with a comically large syringe of abortifacients and drives it deep into her womb. Within minutes, a flood of liquid and fetuses are pouring from $his gaping cunt, all the while he times how long it takes her overburdened womb to drain of all its contents. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if $slaves[_ss].bellyPreg >= 300000>> <<run clearSummaryCache($slaves[_ss])>> @@ -561,7 +567,7 @@ <</if>> <<case "womb filler">> - $activeSlave.slaveName is seen in a drug report nine months later; she is unrecognizable. Her gaunt body is completely bloated by her enormous womb, leaving <<if $activeSlave.amp != 1>>what's left of her arms and legs dangling<<else>>her torso teetering<</if>> pathetically atop its quivering mass. The headline reads "New drug allows for upwards of seven hundred children carried at once". Live on stream, her body loses stability and ruptures, flooding the room with fluid and children. + $activeSlave.slaveName is seen in a drug report nine months later; $he is unrecognizable. $His gaunt body is completely bloated by $his enormous womb, leaving <<if $activeSlave.amp != 1>>what's left of $his arms and legs dangling<<else>>$his torso teetering<</if>> pathetically atop its quivering mass. The headline reads "New drug allows for upwards of seven hundred children carried at once". Live on stream, $his body loses stability and ruptures, flooding the room with fluid and children. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].vagina == 0)>> <<if isFertile($slaves[_ss])>> @@ -576,7 +582,7 @@ <</if>> <<case "repopulationist arcology">> - $activeSlave.slaveName is seen nine months later with an enormous pregnancy and the most content look on her face. She <<if $activeSlave.amp != 1>>gently pats her quadruplet filled belly and lets off a moan as her children kick in response<<else>>moans lewdly as her children kick away in her womb<</if>>. + $activeSlave.slaveName is seen nine months later with an enormous pregnancy and the most content look on $his face. $He <<if $activeSlave.amp != 1>>gently pats $his quadruplet filled belly and lets off a moan as $his children kick in response<<else>>moans lewdly as $his children kick away in $his womb<</if>>. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].vagina == 0)>> <<if isFertile($slaves[_ss])>> @@ -593,7 +599,7 @@ <</if>> <<case "eugenics arcology">> - $activeSlave.slaveName is seen nearly a year later, happy and healthy, along with her owner and newborn son. They are quite a good looking family. + $activeSlave.slaveName is seen nearly a year later, happy and healthy, along with $his owner and newborn son. They are quite a good looking family. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].intelligence+$slaves[_ss].intelligenceImplant < -15)>> <<if isFertile($slaves[_ss])>> @@ -608,7 +614,7 @@ <</if>> <<case "hedonistic decadence arcology">> - $activeSlave.slaveName is taken away to join a quivering mass of plump, pampered ladies that crowd the bedroom of her new owner. + $activeSlave.slaveName is taken away to join a quivering mass of plump, pampered ladies that crowd the bedroom of $his new owner. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if $slaves[_ss].behavioralFlaw == "gluttonous">> <<run clearSummaryCache($slaves[_ss])>> @@ -621,7 +627,7 @@ <</if>> <<case "stuffer chef">> - $activeSlave.slaveName's new owner is quite fond of his work and typically sends out photos of his progress. This is no exception; you are treated to a series of images featuring $activeSlave.slaveName being force fed until her stomach bulges. Day after day, you watch her handle more and more food until her belly is big enough to fill her lap even when empty. + $activeSlave.slaveName's new owner is quite fond of his work and typically sends out photos of his progress. This is no exception; you are treated to a series of images featuring $activeSlave.slaveName being force fed until $his stomach bulges. Day after day, you watch $him handle more and more food until $his belly is big enough to fill $his lap even when empty. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if $slaves[_ss].weight < 10>> <<run clearSummaryCache($slaves[_ss])>> @@ -634,7 +640,7 @@ <</if>> <<case "transformation fetishist arcology">> - A purchasing agent arrives for $activeSlave.slaveName; he uses a lull in the proceedings to use a permanent marker to begin mapping out surgical sites across her body. There are a lot of them. + A purchasing agent arrives for $activeSlave.slaveName; he uses a lull in the proceedings to use a permanent marker to begin mapping out surgical sites across $his body. There are a lot of them. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].devotion <= 20)>> <<run clearSummaryCache($slaves[_ss])>> @@ -643,11 +649,11 @@ <</if>> <</for>> <<if (_slaveImpact == 1)>> - Your unbroken slaves who hear about how severely she's about to be cut up are @@.gold;somewhat afraid@@ that they will suffer similar surgical invasion. + Your unbroken slaves who hear about how severely $he's about to be cut up are @@.gold;somewhat afraid@@ that they will suffer similar surgical invasion. <</if>> <<case "physical idealist arcology">> - Stories about the arcology $activeSlave.slaveName is headed to have circulated among slaves. Most intelligent girls see a life of workouts as relatively harmless. + Stories about the arcology $activeSlave.slaveName is headed to have circulated among slaves. Most intelligent slaves see a life of workouts as relatively harmless. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].weight > 10)>> <<if ($slaves[_ss].intelligence+$slaves[_ss].intelligenceImplant < -15)>> @@ -662,7 +668,7 @@ <</if>> <<case "pastoralist arcology">> - $activeSlave.slaveName is subjected to a stock assay and then packed off to take her place as a prize heifer. + $activeSlave.slaveName is subjected to a stock assay and then packed off to take $his place as a prize heifer. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].lactation == 0)>> <<if ($slaves[_ss].devotion <= 20)>> @@ -673,11 +679,11 @@ <</if>> <</for>> <<if (_slaveImpact == 1)>> - Your slaves who are already lactating know that her role is to be a relatively easy and decent one, and your obedient girls accept it regardless. Others however @@.gold;fear being transformed into livestock@@ a little. + Your slaves who are already lactating know that $his role is to be a relatively easy and decent one, and your obedient slaves accept it regardless. Others, however, @@.gold;fear being transformed into livestock@@ a little. <</if>> <<case "chattel religionist arcology">> - $activeSlave.slaveName is terrified of her impending religious life; perhaps she's heard the new text that reads 'no woman come of age is holy unless she performs the act as many times per day as she has years less than forty.' + $activeSlave.slaveName is terrified of $his impending religious life; perhaps $he's heard the new text that reads 'no woman come of age is holy unless she performs the act as many times per day as she has years less than forty.' <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].analCount < 200)>> <<run clearSummaryCache($slaves[_ss])>> @@ -686,11 +692,11 @@ <</if>> <</for>> <<if (_slaveImpact == 1)>> - Your sexually experienced slaves are too inured to industrial lovemaking to be affected by her fate, but your more innocent slaves @@.gold;fear being required to fuck@@ at that pace. + Your sexually experienced slaves are too inured to industrial lovemaking to be affected by $his fate, but your more innocent slaves @@.gold;fear being required to fuck@@ at that pace. <</if>> <<case "roman revivalist arcology">> - $activeSlave.slaveName is shipped to a new arcology, and culturally, across the centuries. Her skill at arms is well enough known that her impending role as a gladiatrix is easily deduced. + $activeSlave.slaveName is shipped to a new arcology, and culturally, across the centuries. Her skill at arms is well enough known that $his impending role as a gladiatrix is easily deduced. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].combatSkill > 0)>> <<run clearSummaryCache($slaves[_ss])>> @@ -703,7 +709,7 @@ <</if>> <<case "aztec revivalist arcology">> - $activeSlave.slaveName is transported after losing a military engagement. Though her will remains strong, she's @@.gold;filled with fear@@ when she sees the rivers of blood that flow through the city. + $activeSlave.slaveName is transported after losing a military engagement. Though $his will remains strong, $he's @@.gold;filled with fear@@ when $he sees the rivers of blood that flow through the city. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].combatSkill > 0)>> <<run clearSummaryCache($slaves[_ss])>> @@ -712,11 +718,11 @@ <</if>> <</for>> <<if (_slaveImpact == 1)>> - Her willingness to obey will be tested. Her life will be forfeit, a fate many others @@.gold;fear might befall them@@, if she does not perform. + Her willingness to obey will be tested. Her life will be forfeit, a fate many others @@.gold;fear might befall them@@, if $he does not perform. <</if>> <<case "egyptian revivalist arcology">> - $activeSlave.slaveName's journey to her new home is respectful, even celebratory, as far as you can see. She is gravely informed by the purchasing agent that many slaves await her learned instruction. + $activeSlave.slaveName's journey to $his new home is respectful, even celebratory, as far as you can see. $He is gravely informed by the purchasing agent that many slaves await $his learned instruction. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].intelligence+$slaves[_ss].intelligenceImplant < -50)>> <<run clearSummaryCache($slaves[_ss])>> @@ -725,11 +731,11 @@ <</if>> <</for>> <<if (_slaveImpact == 1)>> - Most of your slaves quietly envy her good fortune. The stupidest however tend to resent their intellectual superiors and @@.mediumorchid;actively resent@@ how obvious her advantage over them proved to be. + Most of your slaves quietly envy $his good fortune. The stupidest however tend to resent their intellectual superiors and @@.mediumorchid;actively resent@@ how obvious $his advantage over them proved to be. <</if>> <<case "virgin trader">> - $activeSlave.slaveName is seen in a shipment of slaves leaving the arcology a month later, with just the slightest hint of a gravid belly and a worn-down expression on her face. + $activeSlave.slaveName is seen in a shipment of slaves leaving the arcology a month later, with just the slightest hint of a gravid belly and a worn-down expression on $his face. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].vagina == 0)>> <<if ($slaves[_ss].ovaries == 1)>> @@ -744,7 +750,7 @@ <</if>> <<case "body purist arcology">> - $activeSlave.slaveName is shipped to her new owner's arcology to have her implants extracted and the resultant damage addressed. + $activeSlave.slaveName is shipped to $his new owner's arcology to have $his implants extracted and the resultant damage addressed. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].devotion <= 50)>> <<if ($slaves[_ss].boobsImplant > 1000)>> @@ -759,7 +765,7 @@ <</if>> <<case "trainer staffing">> - $activeSlave.slaveName is soon well-known among the slaves of the arcology, as many of them are sold after passing under her hands in training. She performs effectively, imparting good sex slave ethics in a generation of sluts. + $activeSlave.slaveName is soon well-known among the slaves of the arcology, as many of them are sold after passing under $his hands in training. $He performs effectively, imparting good sex slave ethics in a generation of sluts. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].intelligence+$slaves[_ss].intelligenceImplant > 15)>> <<run clearSummaryCache($slaves[_ss])>> @@ -772,7 +778,7 @@ <</if>> <<case "teaching trainer">> - $activeSlave.slaveName is not pleased by her change in circumstances, since she is soon subjected to training rigor that she did not experience while your property. + $activeSlave.slaveName is not pleased by $his change in circumstances, since $he is soon subjected to training rigor that $he did not experience while your property. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].intelligenceImplant < 15)>> <<run clearSummaryCache($slaves[_ss])>> @@ -785,7 +791,7 @@ <</if>> <<case "implanting trainer">> - A few weeks later, $activeSlave.slaveName is seen in a shipment of slaves heading out of the arcology. She has new fake tits, a bigger butt, lip implants, and even some facial bone structure alterations, but her balloon breasts are the most shocking change. + A few weeks later, $activeSlave.slaveName is seen in a shipment of slaves heading out of the arcology. $He has new fake tits, a bigger butt, lip implants, and even some facial bone structure alterations, but $his balloon breasts are the most shocking change. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].boobsImplant == 0)>> <<run clearSummaryCache($slaves[_ss])>> @@ -798,7 +804,7 @@ <</if>> <<case "purifying trainer">> - A few weeks later, $activeSlave.slaveName is seen in a shipment of slaves heading out of the arcology. She is almost unrecognizable, having been quickly returned to as natural an appearance as skillful removal of her implants could manage. + A few weeks later, $activeSlave.slaveName is seen in a shipment of slaves heading out of the arcology. $He is almost unrecognizable, having been quickly returned to as natural an appearance as skillful removal of $his implants could manage. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].boobsImplant > 800)>> <<run clearSummaryCache($slaves[_ss])>> @@ -811,7 +817,7 @@ <</if>> <<case "D virgin asspussy">> - $activeSlave.slaveName's buyer takes charge of her, and cannot resist immediately running a hand between her buttocks to sink a couple of groping fingers into her soft asspussy. + $activeSlave.slaveName's buyer takes charge of her, and cannot resist immediately running a hand between $his buttocks to sink a couple of groping fingers into $his soft asspussy. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetish == "buttslut")>> <<run clearSummaryCache($slaves[_ss])>> @@ -824,7 +830,7 @@ <</if>> <<case "D startled the witch">> - $activeSlave.slaveName heads off to form part of whatever great design her new master is pursuing; all you know is that it apparently requires lots of lithe, sharp toothed slave girls. + $activeSlave.slaveName heads off to form part of whatever great design $his new master is pursuing; all you know is that it apparently requires lots of lithe, sharp toothed slave girls. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].devotion <= 20)>> <<run clearSummaryCache($slaves[_ss])>> @@ -833,11 +839,11 @@ <</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 she won't frighten them@@ any more. They thought she was scary. + 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 "D milf staffing">> - $activeSlave.slaveName becomes a common sight around the arcology, training slaves for her new master. They're usually seen hanging close by her as she manages them with an air at once protective and frankly sexual. + $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++>> <<if ($slaves[_ss].actualAge > 35)>> <<run clearSummaryCache($slaves[_ss])>> @@ -846,11 +852,11 @@ <</if>> <</for>> <<if (_slaveImpact == 1)>> - Your older slaves are @@.mediumaquamarine;happy for her,@@ since it isn't always easy for older ladies. + Your older slaves are @@.mediumaquamarine;happy for $him,@@ since it isn't always easy for older ladies. <</if>> <<case "D hucow">> - $activeSlave.slaveName becomes quite a fixture at social events hosted by her new master; he enjoys showing off how healthy, happy and productive his cow is. + $activeSlave.slaveName becomes quite a fixture at social events hosted by $his new master; he enjoys showing off how healthy, happy and productive his cow is. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].lactation > 0)>> <<run clearSummaryCache($slaves[_ss])>> @@ -859,7 +865,7 @@ <</if>> <</for>> <<if (_slaveImpact == 1)>> - Your other milkers are sometimes concerned about being sold to a cruel stockyard, and her pleasant life encourages them to @@.mediumaquamarine;stop being so worried.@@ + Your other milkers are sometimes concerned about being sold to a cruel stockyard, and $his pleasant life encourages them to @@.mediumaquamarine;stop being so worried.@@ <</if>> <<case "D r9k">> @@ -889,7 +895,7 @@ <</if>> <<case "broadening trainer">> - $activeSlave.slaveName is only rarely seen around the arcology, since her new owners force her to spend most of her time sleeping, eating and looking after herself. But her belly, painfully distended with food, makes her situation obvious. + $activeSlave.slaveName is only rarely seen around the arcology, since $his new owners force her to spend most of $his time sleeping, eating and looking after herself. But $his belly, painfully distended with food, makes $his situation obvious. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].weight > 10)>> <<run clearSummaryCache($slaves[_ss])>> @@ -902,7 +908,7 @@ <</if>> <<case "cow trainer">> - $activeSlave.slaveName is last seen somewhat later, packed into a shipment of cows heading out of the arcology. She looks rather ill from the drugs she's been filled with, and her now-distended breasts are marred by unsightly stretch marks. + $activeSlave.slaveName is last seen somewhat later, packed into a shipment of cows heading out of the arcology. She looks rather ill from the drugs she's been filled with, and $his now-distended breasts are marred by unsightly stretch marks. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].lactation == 0)>> <<run clearSummaryCache($slaves[_ss])>> @@ -915,7 +921,7 @@ <</if>> <<case "clipping trainer">> - $activeSlave.slaveName is frequently seen in public over the next few weeks, since she's being trained to improve her feminine deportment. She grows visibly more feminine as time passes, as the hormonal effects of having her balls cut off become apparent. + $activeSlave.slaveName is frequently seen in public over the next few weeks, since she's being trained to improve $his feminine deportment. She grows visibly more feminine as time passes, as the hormonal effects of having $his balls cut off become apparent. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].balls > 0)>> <<run clearSummaryCache($slaves[_ss])>> @@ -941,7 +947,7 @@ <</if>> <<case "arcade">> - The upper half of $activeSlave.slaveName's body is never seen again. Her butt, on the other hand, is periodically visible in a lower-level arcade, her orifices gradually showing the wear and her price gradually decreasing, until finally she is seen no more. + The upper half of $activeSlave.slaveName's body is never seen again. $His butt, on the other hand, is periodically visible in a lower-level arcade, $his orifices gradually showing the wear and $his price gradually decreasing, until finally she is seen no more. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].devotion < 10)>> <<run clearSummaryCache($slaves[_ss])>> @@ -968,14 +974,14 @@ <</for>> <<case "D amazon hunter">> - When $activeSlave.slaveName's buyer appears, the big girl is almost bashful. He tries to resist the impulse, but quickly breaks down and sweeps her into a tight hug. She accepts the embrace meekly. Your other slaves find this @@.mediumaquamarine;very romantic.@@ + When $activeSlave.slaveName's buyer appears, the big girl is almost bashful. He tries to resist the impulse, but quickly breaks down and sweeps her into a tight hug. $He accepts the embrace meekly. Your other slaves find this @@.mediumaquamarine;very romantic.@@ <<run clearSummaryCache()>> <<for _ss = 0; _ss < $slaves.length; _ss++>> <<set $slaves[_ss].trust += 1>> <</for>> <<case "D oral servants">> - $activeSlave.slaveName is an occasional sight around the arcology; she's never seen outside the company of her new slave superior. This is one of her new master's more favored slaves. She has a huge cock, and $activeSlave.slaveName usually crouches down, hugging one of her superior's legs and keeping her mouth obediently near that dick. Your cumsluts are @@.mediumaquamarine;rather envious.@@ + $activeSlave.slaveName is an occasional sight around the arcology; $he's never seen outside the company of $his new slave superior. This is one of $his new master's more favored slaves. $He has a huge cock, and $activeSlave.slaveName usually crouches down, hugging one of $his superior's legs and keeping $his mouth obediently near that dick. Your cumsluts are @@.mediumaquamarine;rather envious.@@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetishKnown == 1)>> <<if ($slaves[_ss].fetish == "cumslut")>> @@ -986,7 +992,7 @@ <</for>> <<case "D trap lover">> - $activeSlave.slaveName becomes a frequent sight around the arcology, accompanying her new master. She's clearly happy, and is frequently seen to offer her butt to him with a smile. Your girls with dicks who've accepted their lot in life find this @@.mediumaquamarine;encouraging.@@ + $activeSlave.slaveName becomes a frequent sight around the arcology, accompanying $his new master. $He's clearly happy, and is frequently seen to offer $his butt to him with a smile. Your girls with dicks who've accepted their lot in life find this @@.mediumaquamarine;encouraging.@@ <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].dick > 0)>> <<if ($slaves[_ss].devotion > 20)>> @@ -997,7 +1003,7 @@ <</for>> <<case "D butt bury">> - $activeSlave.slaveName's buyer arrives promptly; he seems pleased with his new slave's bountiful bottom, so far off the ground. Your buttsluts giggle over what he's got in store for her, and @@.mediumaquamarine;envy@@ her new owner a little. + $activeSlave.slaveName's buyer arrives promptly; he seems pleased with his new slave's bountiful bottom, so far off the ground. Your buttsluts giggle over what he's got in store for her, and @@.mediumaquamarine;envy@@ $his new owner a little. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetish == "buttslut")>> <<if ($slaves[_ss].fetishKnown == 1)>> @@ -1008,7 +1014,7 @@ <</for>> <<case "D milky herm">> - $activeSlave.slaveName's buyer arrives and seems pleased with her lovely feminine appearance; he verifies her lactation and her ability to achieve erection despite her lack of visible balls. Your other feminine girls with dicks @@.mediumaquamarine;trust@@ they'll go to owners that will value them, should they be sold. + $activeSlave.slaveName's buyer arrives and seems pleased with $his lovely feminine appearance; he verifies $his lactation and $his ability to achieve erection despite $his lack of visible balls. Your other feminine girls with dicks @@.mediumaquamarine;trust@@ they'll go to owners that will value them, should they be sold. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].dick > 0)>> <<if ($slaves[_ss].boobs > 400)>> @@ -1019,7 +1025,7 @@ <</for>> <<case "D shorty breeder">> - $activeSlave.slaveName's lithe, muscular form is rarely seen after her buyer takes charge of her, since she seems to spend most of her time at home making babies. Your slaves with pregnancy fetishes @@.mediumaquamarine;almost want to be sold@@ since there's a chance they'll be purchased by him, too. + $activeSlave.slaveName's lithe, muscular form is rarely seen after $his buyer takes charge of her, since $he seems to spend most of $his time at home making babies. Your slaves with pregnancy fetishes @@.mediumaquamarine;almost want to be sold@@ since there's a chance they'll be purchased by him, too. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if ($slaves[_ss].fetish == "pregnancy")>> <<if ($slaves[_ss].fetishKnown == 1)>> @@ -1030,7 +1036,7 @@ <</for>> <<case "D waifu">> - $activeSlave.slaveName is rarely seen after her buyer takes charge of her, since he prefers to keep his beloved at home. Though she seems to be well treated, arcology society finds him repellent enough that your other slaves do not envy her. + $activeSlave.slaveName is rarely seen after $his buyer takes charge of $him, since he prefers to keep his beloved at home. Though $he seems to be well treated, arcology society finds him repellent enough that your other slaves do not envy $him. <<case "fuckdoll">> Though $activeSlave.slaveName's fate as a living fucktoy is not obvious, since most of her body will forever after be encased in thick latex, rumors of what happens to girls who @@.gold;fail to be valuable to you@@ pass among your slaves. @@ -1040,7 +1046,7 @@ <</for>> <<case "porn studio">> - $activeSlave.slaveName becomes a frequent sight in $activeSlave.pornFameType smut and attracts huge crowds with each public appearance. Your other aspiring porn stars @@.mediumaquamarine;try harder than ever@@ in the hopes of following in her prestigious footsteps. + $activeSlave.slaveName becomes a frequent sight in $activeSlave.pornFameType smut and attracts huge crowds with each public appearance. Your other aspiring porn stars @@.mediumaquamarine;try harder than ever@@ in the hopes of following in $his prestigious footsteps. <<run clearSummaryCache()>> <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if $slaves[_ss].pornPrestige > 0 && $slaves[_ss].pornPrestige < 3>> @@ -1052,7 +1058,7 @@ <</for>> <<case "obsessed fan">> - $activeSlave.slaveName is rarely seen after her buyer takes charge of her, since he prefers to keep his prize safe and sound at home. Your other borderline unheard of sluts @@.mediumaquamarine;hope that someone like him would consider whisking them away,@@ but most of your slaves are skeptical at what his intent may be. + $activeSlave.slaveName is rarely seen after $his buyer takes charge of her, since he prefers to keep his prize safe and sound at home. Your other borderline unheard of sluts @@.mediumaquamarine;hope that someone like him would consider whisking them away,@@ but most of your slaves are skeptical at what his intent may be. <<run clearSummaryCache()>> <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if $slaves[_ss].pornPrestige == 1>> @@ -1063,9 +1069,8 @@ <</if>> <</for>> - <<case "tentacle bred">> - Sometime later, a snuff film starring $activeSlave.slaveName as a heroine captured, raped, and fatally bred by tentacles is released. It receives rave reviews for the scene involving $activeSlave.slaveName, depicting her aphrodisiac filled body being penetrated in all her holes by tentacles. Their thrusting into her increases until large bulges of cum pass through the ones filling her stretched cunt, visibly bloating her belly. She then collapses to the ground, her swollen belly rapidly growing with the tentacle spawn gestating within her. As they bulge against the straining walls of her implant-filled middle; she lets out a final moan as her belly ruptures, releasing her "spawn" to hunt down the other heroines. + Sometime later, a snuff film starring $activeSlave.slaveName as a heroine captured, raped, and fatally bred by tentacles is released. It receives rave reviews for the scene involving $activeSlave.slaveName, depicting $his aphrodisiac-filled body being penetrated in all $his holes by tentacles. Their thrusting into her increases until large bulges of cum pass through the ones filling $his stretched cunt, visibly bloating $his belly. She then collapses to the ground, $his swollen belly rapidly growing with the tentacle spawn gestating within her. As they bulge against the straining walls of $his implant-filled middle; $he lets out a final moan as $his belly ruptures, releasing $his "spawn" to hunt down the other heroines. <<for _ss = 0; _ss < $slaves.length; _ss++>> <<if canSee($slaves[_ss])>> <<if $slaves[_ss].intelligence+$slaves[_ss].intelligenceImplant < -15>> @@ -1084,70 +1089,70 @@ <<if $peacekeepers.tastes == 0>> <<if $slaveCost > random(10000,50000) || $peacekeepers.attitude > 90>><<set _influential = 1>><<else>><<set _influential = 0>><</if>> <<if _influential && $activeSlave.balls > 0 && $activeSlave.scrotum > 0 && $activeSlave.dick > 0 && $activeSlave.vagina > -1 && $activeSlave.energy > 50>> - with dicks in her mouth, pussy, and ass. She's totally covered in cum, and a lot of it is hers. There's a note attached, stating superfluously that she's very popular. General $peacekeepers.generalName's buyer is going to be looking for more lusty futas in the future. + with dicks in $his mouth, pussy, and ass. She's totally covered in cum, and a lot of it is $hers. There's a note attached, stating superfluously that she's very popular. General $peacekeepers.generalName's buyer is going to be looking for more lusty futas in the future. <<set $peacekeepers.tastes = "lusty futanari">> <<elseif _influential && $activeSlave.fetish == "cumslut" && $activeSlave.fetishStrength > 95 && $activeSlave.sexualFlaw == "cum addict">> - on her knees, sucking dick. That's where she's at home, of course, and as soon as the man she's blowing cums down her throat and steps away, another immediately replaces him. $activeSlave.slaveName keeps guzzling penis without hesitation. There's a note attached, stating superfluously that her apparently bottomless appetite for cum has made her very popular. General $peacekeepers.generalName's buyer is going to be looking for more cum addicts in the future. + on $his knees, sucking dick. That's where she's at home, of course, and as soon as the man she's blowing cums down $his throat and steps away, another immediately replaces him. $activeSlave.slaveName keeps guzzling penis without hesitation. There's a note attached, stating superfluously that $his apparently bottomless appetite for cum has made her very popular. General $peacekeepers.generalName's buyer is going to be looking for more cum addicts in the future. <<set $peacekeepers.tastes = "cum addicts">> <<elseif _influential && $activeSlave.physicalAge > 34 && $activeSlave.visualAge > 34 && $activeSlave.energy > 80>> - energetically bouncing atop one young man while a muscular young woman standing over her rides her face. She's got dicks in both of her hands, and is stroking them eagerly. There's a note attached, stating superfluously that she's very popular. General $peacekeepers.generalName's buyer is going to be looking for more horny MILFs in the future. + energetically bouncing atop one young man while a muscular young woman standing over $him rides $his face. $He's got dicks in both of $his hands, and is stroking them eagerly. There's a note attached, stating superfluously that she's very popular. General $peacekeepers.generalName's buyer is going to be looking for more horny MILFs in the future. <<set $peacekeepers.tastes = "horny MILFs">> <<elseif _influential && $activeSlave.boobs > 2000 && $activeSlave.lactation > 1>> - standing obediently in a comfort station in one of their rear area facilities, while a huge group of muscular men and women take turns drinking straight from her nipples as a break from using the other whores. Someone's fucking her from behind. There's a note attached, stating superfluously that she's very popular. General $peacekeepers.generalName's buyer is going to be looking for more big-breasted cows in the future. + standing obediently in a comfort station in one of their rear area facilities, while a huge group of muscular men and women take turns drinking straight from $his nipples as a break from using the other whores. Someone's fucking her from behind. There's a note attached, stating superfluously that she's very popular. General $peacekeepers.generalName's buyer is going to be looking for more big-breasted cows in the future. <<set $peacekeepers.tastes = "big-breasted cows">> <<elseif _influential && $activeSlave.physicalAge < 25 && $activeSlave.visualAge < 25 && $activeSlave.face > 95>> striking a come-hither pose for an enormous crowd of cheering soldiers. There's a note attached, stating superfluously that she's very popular. It's not surprising; she's young, very beautiful, and able to handle a lot of devoted attention. General $peacekeepers.generalName's buyer is going to be looking for more beautiful young sex slaves in the future. <<set $peacekeepers.tastes = "beautiful young sex slaves">> <<elseif _influential && $activeSlave.vagina == 0 && isFertile($activeSlave)>> - happily taking it vaginally while teasing the growing crowd eager to cum in her needy pussy. There's a note attached, stating superfluously that she's very popular. It's not surprising; she has a burning need that they are dutifully fulfilling. General $peacekeepers.generalName's buyer is going to be looking for more eager virgins in the future. + happily taking it vaginally while teasing the growing crowd eager to cum in $his needy pussy. There's a note attached, stating superfluously that she's very popular. It's not surprising; she has a burning need that they are dutifully fulfilling. General $peacekeepers.generalName's buyer is going to be looking for more eager virgins in the future. <<set $peacekeepers.tastes = "fertile virgins">> <<elseif _influential && $activeSlave.preg > 10 && $activeSlave.energy > 50>> - eagerly bouncing atop one young man while a muscular young woman standing over her rides her face. She's got dicks in both of her hands, and is stroking them eagerly, encouraging their owners to cum on her rounded middle. There's a note attached, stating superfluously that she's very popular. General $peacekeepers.generalName's buyer is going to be looking for more horny preggos in the future. + eagerly bouncing atop one young man while a muscular young woman standing over her rides $his face. She's got dicks in both of $his hands, and is stroking them eagerly, encouraging their owners to cum on $his rounded middle. There's a note attached, stating superfluously that she's very popular. General $peacekeepers.generalName's buyer is going to be looking for more horny preggos in the future. <<set $peacekeepers.tastes = "lusty preggos">> <<elseif _influential && $activeSlave.preg > 10 && $activeSlave.fetish == "pregnancy" && $activeSlave.sexualFlaw == "breeder">> - on her back, getting fucked while teasing her growing baby bump. That's where she's at home, of course, and as soon as the man she's taking cums in her <<if $activeSlave.mpreg > 0>>asspussy<<else>>pussy<</if>> and steps away, another immediately replaces him. $activeSlave.slaveName keeps spreading her legs without hesitation. There's a note attached, stating superfluously that her apparently bottomless appetite for bareback sex has made her very popular. General $peacekeepers.generalName's buyer is going to be looking for more baby obsessed breeders in the future. + on $his back, getting fucked while teasing $his growing baby bump. That's where she's at home, of course, and as soon as the man she's taking cums in $his <<if $activeSlave.mpreg > 0>>asspussy<<else>>pussy<</if>> and steps away, another immediately replaces him. $activeSlave.slaveName keeps spreading $his legs without hesitation. There's a note attached, stating superfluously that $his apparently bottomless appetite for bareback sex has made her very popular. General $peacekeepers.generalName's buyer is going to be looking for more baby obsessed breeders in the future. <<set $peacekeepers.tastes = "baby obsessed breeders">> <<elseif _influential && $activeSlave.belly >= 300000>> <<set _belly = bellyAdjective($activeSlave)>> - smiling as her _belly belly is used as the center of a large bukkake party. You can just barely make out the figure of someone taking her from behind beyond her immensity. There's a note attached, stating superfluously that her exotic feature makes her very popular. General $peacekeepers.generalName's buyer is going to be looking for more massive bellied girls in the future. + smiling as $his _belly belly is used as the center of a large bukkake party. You can just barely make out the figure of someone taking her from behind beyond $his immensity. There's a note attached, stating superfluously that $his exotic feature makes her very popular. General $peacekeepers.generalName's buyer is going to be looking for more massive bellied girls in the future. <<set $peacekeepers.tastes = "bellies with girls attached">> <<elseif _influential && $activeSlave.boobs > 20000 && $activeSlave.butt > 10>> - standing obediently in a comfort station in one of their rear area facilities, while a huge group of muscular men tit fuck her near endless cleavage and another, smaller group use her gigantic asscheeks. There's a note attached, stating superfluously that her mind-blowing assets make her very popular. General $peacekeepers.generalName's buyer is going to be looking for more slaves with bountiful T&A in the future. + standing obediently in a comfort station in one of their rear area facilities, while a huge group of muscular men tit fuck her near endless cleavage and another, smaller group use $his gigantic asscheeks. There's a note attached, stating superfluously that $his mind-blowing assets make her very popular. General $peacekeepers.generalName's buyer is going to be looking for more slaves with bountiful T&A in the future. <<set $peacekeepers.tastes = "flesh balloons">> <<else>> - <<if $activeSlave.devotion > 20>><<if $activeSlave.energy > 80>>eagerly<<else>>willingly<</if>> offering herself outside<<else>>restrained for use inside<</if>> a comfort station at one of their rear area facilities, together with a note stating that she's satisfactory. She's sufficient but not remarkable enough to have a major impact. + <<if $activeSlave.devotion > 20>><<if $activeSlave.energy > 80>>eagerly<<else>>willingly<</if>> offering herself outside<<else>>restrained for use inside<</if>> a comfort station at one of their rear area facilities, together with a note stating that $he's satisfactory. $He's sufficient but not remarkable enough to have a major impact. <</if>> <<else>> <<switch $peacekeepers.tastes>> <<case "lusty futanari">> - getting gangbanged at a comfort station at one of their rear area facilities, where she's become the star attraction due to the erstwhile peacekeepers' preference for chicks with dicks. + getting gangbanged at a comfort station at one of their rear area facilities, where $he's become the star attraction due to the erstwhile peacekeepers' preference for chicks with dicks. <<if $peacekeepers.attitude < 100>><<set $peacekeepers.attitude++>><</if>> <<case "cum addicts">> - providing incessant oral service at a comfort station at one of their rear area facilities, where she's become the star attraction due to her ability to eagerly suck dick for as long as there's cum available. + providing incessant oral service at a comfort station at one of their rear area facilities, where $he's become the star attraction due to $his ability to eagerly suck dick for as long as there's cum available. <<if $peacekeepers.attitude < 100>><<set $peacekeepers.attitude++>><</if>> <<case "horny MILFs">> - getting gangbanged at a comfort station at one of their rear area facilities, where she's become the star attraction due to the erstwhile peacekeepers' preference for older women who really know how to take cocks. + getting gangbanged at a comfort station at one of their rear area facilities, where $he's become the star attraction due to the erstwhile peacekeepers' preference for older women who really know how to take cocks. <<if $peacekeepers.attitude < 100>><<set $peacekeepers.attitude++>><</if>> <<case "big-breasted cows">> - being hand-milked at a comfort station at one of their rear area facilities, where she's become the most valued piece of human livestock due to the peacekeepers' growing taste for human milk. + being hand-milked at a comfort station at one of their rear area facilities, where $he's become the most valued piece of human livestock due to the peacekeepers' growing taste for human milk. <<if $peacekeepers.attitude < 100>><<set $peacekeepers.attitude++>><</if>> <<case "beautiful young sex slaves">> - getting gangbanged at a comfort station at one of their rear area facilities, where she's become the star attraction due to the erstwhile peacekeepers' preference for beautiful young girls with those special Free Cities skills. + getting gangbanged at a comfort station at one of their rear area facilities, where $he's become the star attraction due to the erstwhile peacekeepers' preference for beautiful young girls with those special Free Cities skills. <<if $peacekeepers.attitude < 100>><<set $peacekeepers.attitude++>><</if>> <<case "fertile virgins">> - getting gangbanged at a comfort station at one of their rear area facilities, where she's become the main attraction due to her eagerness to get pregnant. Since that won't take long, they'll likely be back looking for more shortly. + getting gangbanged at a comfort station at one of their rear area facilities, where $he's become the main attraction due to $his eagerness to get pregnant. Since that won't take long, they'll likely be back looking for more shortly. <<if $peacekeepers.attitude < 100>><<set $peacekeepers.attitude++>><</if>> <<case "lusty preggos">> - getting gangbanged at a comfort station at one of their rear area facilities, where she's become the star attraction due to the erstwhile peacekeepers' preference for pregnant women with a bottomless lust for cocks. + getting gangbanged at a comfort station at one of their rear area facilities, where $he's become the star attraction due to the erstwhile peacekeepers' preference for pregnant women with a bottomless lust for cocks. <<if $peacekeepers.attitude < 100>><<set $peacekeepers.attitude++>><</if>> <<case "baby obsessed breeders">> - getting gangbanged at a comfort station at one of their rear area facilities, where she's become the star attraction due to the erstwhile peacekeepers' preference for knocking women up. + getting gangbanged at a comfort station at one of their rear area facilities, where $he's become the star attraction due to the erstwhile peacekeepers' preference for knocking women up. <<if $peacekeepers.attitude < 100>><<set $peacekeepers.attitude++>><</if>> <<case "bellies with girls attached">> - suspended in a comfort station at one of their rear area facilities, where she's become the star attraction due to the erstwhile peacekeepers' preference for gigantically gravid girls. + suspended in a comfort station at one of their rear area facilities, where $he's become the star attraction due to the erstwhile peacekeepers' preference for gigantically gravid girls. <<if $peacekeepers.attitude < 100>><<set $peacekeepers.attitude++>><</if>> <<case "flesh balloons">> - getting gangbanged at a comfort station at one of their rear area facilities, where she's become the star attraction due to the erstwhile peacekeepers' preference for absolutely enormous assets + getting gangbanged at a comfort station at one of their rear area facilities, where $he's become the star attraction due to the erstwhile peacekeepers' preference for absolutely enormous assets <<if $peacekeepers.attitude < 100>><<set $peacekeepers.attitude++>><</if>> <</switch>> <</if>> diff --git a/src/uncategorized/slaveSummary.tw b/src/uncategorized/slaveSummary.tw index 29b846d728a56adb786b5050f56c441aa364625e..6db0eed4b853b2bc3ed7f0ff36418a939b61ccfb 100644 --- a/src/uncategorized/slaveSummary.tw +++ b/src/uncategorized/slaveSummary.tw @@ -105,12 +105,12 @@ <<set _tableCount = _tableCount || 0>> <<set _tableCount++>> /* - * we want <button data-quick-index="<<= _tableCount>>"> ... + * we want <button data-quick-index="<<= _tableCount>>"> ... */ <<set _buttonAttributes = { 'data-quick-index': _tableCount }>> <<htag _buttonAttributes 'button'>>Quick Index<</htag>> /* - * we want <div id="list_index3" class=" hidden">... + * we want <div id="list_index3" class=" hidden">... */ <<set _divAttributes = { id: 'list_index' + _tableCount, class: 'hidden'}>> <<htag _divAttributes>> diff --git a/src/uncategorized/spa.tw b/src/uncategorized/spa.tw index 0f90e9373b11c6aa6ac0109d0e90b6bb11a5e80e..ba8fb6c5f4ff7dad5f9535b10451a6d51b43e0fa 100644 --- a/src/uncategorized/spa.tw +++ b/src/uncategorized/spa.tw @@ -2,6 +2,10 @@ <<set $nextButton = "Back to Main", $nextLink = "Main", $returnTo = "Spa", $showEncyclopedia = 1, $encyclopedia = "Spa", $spaSlaves = $SpaiIDs.length>> +<<if $Attendant != 0>> + <<setLocalPronouns $Attendant>> +<</if>> + <<if $spaName != "the Spa">> <<set $spaNameCaps = $spaName.replace("the ", "The ")>> <</if>> @@ -65,7 +69,7 @@ $spaNameCaps <<elseif $spaSlaves > 0>> It's sparsely populated; though the few slaves here have little company they like having the water to themselves. <<elseif $Attendant != 0>> - $Attendant.slaveName is alone here, and has nothing to do but keep the place (and her own soft, wet body) spotlessly clean. + $Attendant.slaveName is alone here, and has nothing to do but keep the place (and $his own soft, wet body) spotlessly clean. <<else>> It's empty and quiet. [[Decommission the Spa|Main][$spa = 0, $spaDecoration = "standard", $spaUpgrade = 0, $spaFix = 0]] <</if>> @@ -101,15 +105,15 @@ $spaNameCaps <<if $Attendant != 0>> <br> <<if $spaFix == 2>> - $Attendant.slaveName is focusing only on the health and wellness of the slaves under her care, obeying your orders to avoid attempting to right mental flaws. + $Attendant.slaveName is focusing only on the health and wellness of the slaves under $his care, obeying your orders to avoid attempting to right mental flaws. [[Order her to only fix mindbroken slaves|Spa][$spaFix = 1]] | [[Let her tend as she sees fit|Spa][$spaFix = 0]] <<elseif $spaFix == 1>> - $Attendant.slaveName is focusing on the health and wellness of the slaves under her care, as well as trying to bring mindbroken slaves back, while ignoring any mental hangups a slave may have. + $Attendant.slaveName is focusing on the health and wellness of the slaves under $his care, as well as trying to bring mindbroken slaves back, while ignoring any mental hangups a slave may have. [[Order her to not fix flaws|Spa][$spaFix = 2]] | [[Let her tend as she sees fit|Spa][$spaFix = 0]] <<else>> - $Attendant.slaveName is not following any special orders and is tending to your slaves as she sees fit. + $Attendant.slaveName is not following any special orders and is tending to your slaves as $he sees fit. [[Order her to not fix any flaws|Spa][$spaFix = 2]] | [[Order her to only fix mindbroken slaves|Spa][$spaFix = 1]] <</if>> diff --git a/src/uncategorized/stClaverPreparatory.tw b/src/uncategorized/stClaverPreparatory.tw index 9577ec08342f2632b33b3d0e7ab0f326ab936ec7..bee475a6fcdb892516aaf9ca9887680c9c407b7c 100644 --- a/src/uncategorized/stClaverPreparatory.tw +++ b/src/uncategorized/stClaverPreparatory.tw @@ -22,17 +22,18 @@ <br><br>The price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +<<setLocalPronouns $activeSlave>> <<if $cash >= $slaveCost>> - <br>[[Buy her and check out other slaves to order|St. Claver Preparatory][$cash -= $slaveCost, $SCP.schoolSale = 0, $SCP.studentsBought += 1, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] + <br>[["Buy " + $him + " and check out other slaves to order"|St. Claver Preparatory][$cash -= $slaveCost, $SCP.schoolSale = 0, $SCP.studentsBought += 1, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] <<if $newSlaves.length == 0>> - <br>[[Buy her slave contract|New Slave Intro][$cash -= $slaveCost, $SCP.schoolSale = 0, $SCP.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]] + <br>[["Buy " + $his + " slave contract"|New Slave Intro][$cash -= $slaveCost, $SCP.schoolSale = 0, $SCP.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]] <<else>> - <br>[[Buy her and Finish your order of slaves|Bulk Slave Intro][$cash -= $slaveCost, $SCP.schoolSale = 0, $SCP.studentsBought += 1, $newSlaves.push($activeSlave)]] + <br>[["Buy " + $him + " and finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $SCP.schoolSale = 0, $SCP.studentsBought += 1, $newSlaves.push($activeSlave)]] <</if>> <<else>> //You lack the necessary funds to buy this slave.// <</if>> -<br>[[Decline to purchase her and check out another slave|St. Claver Preparatory][$slavesSeen += 1]] +<br>[["Decline to purchase " + $him + " and check out another slave"|St. Claver Preparatory][$slavesSeen += 1]] <<if $newSlaves.length > 0>> <br>[[Finish your order of slaves|Bulk Slave Intro]] <</if>> diff --git a/src/uncategorized/stewardessWorkaround.tw b/src/uncategorized/stewardessWorkaround.tw index 7efd7ede9c6f08f6007e9e3a663a9deae01a8030..99c517aa1df49bda08582aa8d438d569a6f9c8ed 100644 --- a/src/uncategorized/stewardessWorkaround.tw +++ b/src/uncategorized/stewardessWorkaround.tw @@ -10,4 +10,3 @@ <</if>> <<goto "Servants' Quarters">> - diff --git a/src/uncategorized/storyCaption.tw b/src/uncategorized/storyCaption.tw index 24806ae00944f774c40655437e51bf28be24d909..23807ff987fdb179c8be67835e3ea7afb903dcc1 100644 --- a/src/uncategorized/storyCaption.tw +++ b/src/uncategorized/storyCaption.tw @@ -27,7 +27,7 @@ <span id="cost"><<SlaveCostDescription>></span> <<elseif $ui == "disclaimer">>\ -<span id="nextButton"><strong><<link [[($nextButton)|($nextLink)]]>><</link>></strong></span> + <span id="nextButton"><strong><<link [[($nextButton)|($nextLink)]]>><</link>></strong></span> <<elseif $ui != "start">>\ <<nobr>> @@ -148,7 +148,7 @@ <<set $rep = Math.clamp(Math.trunc($rep), 0, 20000)>> <span id="rep"> <<if $rep > 19000>> - @@color:rgb(0,145,0);worshipped@@ + @@color:rgb(0,145,0);worshiped@@ <<elseif $rep > 18000>> @@color:rgb(0,150,0);great@@ <<elseif $rep > 17000>> @@ -204,7 +204,7 @@ <<set $rep = Math.clamp(Math.trunc(Number($rep) || _TRep), 0, 20000), $cheater = 1>> <<replace "#rep">> <<if $rep > 19000>> - @@color:rgb(0,145,0);worshipped@@ + @@color:rgb(0,145,0);worshiped@@ <<elseif $rep > 18000>> @@color:rgb(0,150,0);great@@ <<elseif $rep > 17000>> diff --git a/src/uncategorized/surgeryDegradation.tw b/src/uncategorized/surgeryDegradation.tw index 437a2ada7b229d3695c6ebcbb91e09ba59057a19..51e5d34c4ce4bd1b29b57ef38fbe2f34990dcfeb 100644 --- a/src/uncategorized/surgeryDegradation.tw +++ b/src/uncategorized/surgeryDegradation.tw @@ -477,7 +477,7 @@ As the remote surgery's long recovery cycle completes, <<replace "#seed">> You simply take $him on the spot, using $him to your liking and shooting a load deep into $his receptive pussy. The implant rewards $him upon successful fertilization, so $his moans of pleasure as you pull out of $him inform you $he'll soon <<if $activeSlave.broodmother == 2>>be greatly swollen<<else>>grow heavy<</if>> with @@.lime;your brood.@@ <<set $activeSlave.pregSource = -1>> - <<set WombImpregnate($activeSlave, 1, -1, 1)>> /* to ensure player fatherinity we need actual fetus here */ + <<set WombImpregnate($activeSlave, 1, -1, 1)>> /* to ensure player paternity we need actual fetus here */ <<= VaginalVCheck()>> <</replace>> <</link>> @@ -486,7 +486,7 @@ As the remote surgery's long recovery cycle completes, <<case "preg1hack">> The hacking process is brief, being little more than inserting the actuator into $his vagina, and leaves $him with @@.red;nothing more than minor health effects@@ from the altered implant functions. $He leaves the surgery without any specific feeling, but $he knows that something has been done to $his implant. - <<set $activeSlave.broodmotherFetuses = either(2,2,2,2,3,3,4)>> /*My testing show that 2 or 3 relatively safe for generic adult slave with effective curvatives or clinic, 4 - high risk of bursting. So there is a catch with it.*/ + <<set $activeSlave.broodmotherFetuses = either(2, 2, 2, 2, 3, 3, 4)>> /*My testing show that 2 or 3 relatively safe for generic adult slave with effective curvatives or clinic, 4 - high risk of bursting. So there is a catch with it.*/ <<if $activeSlave.fetish == "mindbroken">> /*nothing*/ <<elseif ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>> @@ -879,13 +879,13 @@ As the remote surgery's long recovery cycle completes, <<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>> When $he exits the room, $he feels that $his face is numb, <<if $activeSlave.devotion > 50>> - $he <<if canSee($activeSlave)>>throws a glance at the mirror<<else>>listens closely to your description<</if>>, and seems to be @@.hotpink;in awe@@ of how much $his face has been beautified by a small scar. + $he <<if canSee($activeSlave)>>throws a glance at the mirror<<elseif canHear($activeSlave)>>listens closely to your description<<else>>gets the feel of $his facial alteration<</if>>, and seems to be @@.hotpink;in awe@@ of how much $his face has been beautified by a small scar. <<set $activeSlave.devotion += 5>> <<elseif $activeSlave.devotion > 20>> - and when $he <<if canSee($activeSlave)>>looks at the mirror<<else>>listens to your description<</if>>, $he seems @@.hotpink;pleased@@ with $his new exotic scar. + and when $he <<if canSee($activeSlave)>>looks at the mirror<<elseif canHear($activeSlave)>>listens to your description<<else>>gets the feel of $his facial alteration<</if>>, $he seems @@.hotpink;pleased@@ with $his new exotic scar. <<set $activeSlave.devotion += 5>> <<else>> - and, <<if canSee($activeSlave)>>looking at $himself in the mirror<<else>>listening to the description of $his new look<</if>>, $he seems @@.hotpink;thankful@@ for the distinguishing scar, but @@.gold;scared@@ that it might only be some way to brand $him. + and, <<if canSee($activeSlave)>>looking at $himself in the mirror<<elseif canHear($activeSlave)>>listening to the description of $his new look<<else>>getting the feel of $his facial alteration<</if>>, $he seems @@.hotpink;thankful@@ for the distinguishing scar, but @@.gold;scared@@ that it might only be some way to brand $him. <<set $activeSlave.devotion += 5>> <<set $activeSlave.trust -= 5>> <</if>> @@ -1849,7 +1849,7 @@ As the remote surgery's long recovery cycle completes, <</if>> <<case "cyberPLimbs">> - $His Limb upgrades were performed in the surgery, since its manipulators are well suited to delicate work on their circuitry as well as on flesh. $He exits the surgery marvelling <<if canSee($activeSlave)>>at the shiny artificial skin of $his new arms and legs<<else>>at the feel of the artificial skin of $his new arms and legs under $his new fingers<</if>>. + $His Limb upgrades were performed in the surgery, since its manipulators are well suited to delicate work on their circuitry as well as on flesh. $He exits the surgery marveling <<if canSee($activeSlave)>>at the shiny artificial skin of $his new arms and legs<<else>>at the feel of the artificial skin of $his new arms and legs under $his new fingers<</if>>. <<if $activeSlave.fetish != "mindbroken" && $activeSlave.fuckdoll == 0>> <<if $activeSlave.devotion <= 20>> $He's @@.gold;frightened,@@ once $he discovers what $he can do, and what $he is. $His cybernetic limbs are restricted by the arcology systems, for now, but $he quickly realizes what they are. $He is not, to say the least, thrilled by the revelation that $he is now a living weapon, and is kept awake by thoughts of what you might be planning for $him. @@ -1961,7 +1961,7 @@ As the remote surgery's long recovery cycle completes, $He was already an anal slut, but $he can now experience anal pleasure along an entirely new dimension. $He's @@.hotpink;extremely grateful,@@ and @@.lightsalmon;a more eager buttslut than ever.@@ <<set $activeSlave.devotion += 5, $activeSlave.fetishStrength = Math.clamp($activeSlave.fetishStrength+20,0,100)>> <<else>> - As a sex slave, $he has of course heard of the pleasure of prostate stimulation,<<if $activeSlave.genes == "XY">> not to mention having once had one $himself,<</if>> and $he's @@.hotpink;duly grateful@@ that you've altered $him in a way that will make sexual duties more enjoyable. + As a sex slave, $he <<if canHear($activeSlave)>>has of course heard of<<else>>is of course familiar with<</if>> the pleasure of prostate stimulation,<<if $activeSlave.genes == "XY">> not to mention having once had one $himself,<</if>> and $he's @@.hotpink;duly grateful@@ that you've altered $him in a way that will make sexual duties more enjoyable. <</if>> <<set $activeSlave.devotion += 5>> <<elseif ($activeSlave.devotion > 20)>> @@ -2487,7 +2487,7 @@ As the remote surgery's long recovery cycle completes, <<else>> _physicalChanges[0] <</if>> - <<set _reaction = either('comes as a bit of a surprise', 'comes as quite a shock', "doesn't seem to phase " + $him, "confirms " + $his + " suspicions", $he + ' finds interesting', $he + " can't get over") + '.'>> + <<set _reaction = either('comes as a bit of a surprise', 'comes as quite a shock', "confirms " + $his + " suspicions", "doesn't seem to phase " + $him, $he + ' finds interesting', $he + " can't get over") + '.'>> which _reaction <</if>> <<if _statusChanges.length > 0>> @@ -2525,9 +2525,9 @@ As the remote surgery's long recovery cycle completes, <</switch>> -<<if ($PC.medicine >= 100) && !["basicPLimbs", "sexPLimbs", "beautyPLimbs", "combatPLimbs", "cyberPLimbs"].includes($surgeryType)>> +<<if ($PC.medicine >= 100) && !["basicPLimbs", "beautyPLimbs", "combatPLimbs", "cyberPLimbs", "sexPLimbs"].includes($surgeryType)>> <br><br> - <<if !["insemination", "braces", "removeBraces", "chem castrate", "body hair removal", "hair removal", "eyebrow removal"].includes($surgeryType)>> + <<if !["body hair removal", "braces", "chem castrate", "eyebrow removal", "hair removal", "insemination", "removeBraces"].includes($surgeryType)>> Since you @@.springgreen;performed the surgery yourself,@@ and you do artist's work, $his health is @@.green;less affected@@ by the surgery than it would have been if you'd paid some hack to do it remotely. <<set $activeSlave.health += 5>> <</if>> @@ -2543,7 +2543,7 @@ As the remote surgery's long recovery cycle completes, $He is @@.mediumorchid;even more hateful@@ of you afterward than $he would otherwise be. It must seem to $him that $he's nothing more than a test subject to you. <<set $activeSlave.devotion -= 5>> <</if>> - <<elseif !["insemination", "braces", "removeBraces"].includes($surgeryType)>> + <<elseif !["braces", "insemination", "removeBraces"].includes($surgeryType)>> <<if ($activeSlave.devotion > 50)>> Since $he's happy with the results, $he's almost beside $himself with @@.hotpink;gratitude,@@ and filled with @@.mediumaquamarine;admiration@@ of your skill. <<set $activeSlave.devotion += 4, $activeSlave.trust += 4>> diff --git a/src/uncategorized/theFutanariSisters.tw b/src/uncategorized/theFutanariSisters.tw index f55d8058a7d602b19ef3609f83c5b03ff0aa70af..7e1444389cbe4198dab5bc140216e15eaa276af3 100644 --- a/src/uncategorized/theFutanariSisters.tw +++ b/src/uncategorized/theFutanariSisters.tw @@ -117,17 +117,18 @@ The Sisters offer a member selected for sale into slavery for inspection via vid The price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +<<setLocalPronouns $activeSlave>> <<if $cash >= $slaveCost>> - <br>[[Buy her and check out other slaves to order|The Futanari Sisters][$cash -= $slaveCost, $TFS.schoolSale = 0, $TFS.studentsBought += 1, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] + <br>[["Buy " + $him + " and check out other slaves to order"|The Futanari Sisters][$cash -= $slaveCost, $TFS.schoolSale = 0, $TFS.studentsBought += 1, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] <<if $newSlaves.length == 0>> - <br>[[Buy her slave contract|New Slave Intro][$cash -= $slaveCost, $TFS.schoolSale = 0, $TFS.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]] + <br>[["Buy " + $his + " slave contract"|New Slave Intro][$cash -= $slaveCost, $TFS.schoolSale = 0, $TFS.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]] <<else>> - <br>[[Buy her and Finish your order of slaves|Bulk Slave Intro][$cash -= $slaveCost, $TFS.schoolSale = 0, $TFS.studentsBought += 1, $newSlaves.push($activeSlave)]] + <br>[["Buy " + $him + " and finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $TFS.schoolSale = 0, $TFS.studentsBought += 1, $newSlaves.push($activeSlave)]] <</if>> <<else>> //You lack the necessary funds to buy this slave.// <</if>> -<br>[[Decline to purchase her and check out another slave|The Futanari Sisters][$slavesSeen += 1]] +<br>[["Decline to purchase " + $him + " and check out another slave"|The Futanari Sisters][$slavesSeen += 1]] <<if $newSlaves.length > 0>> <br>[[Finish your order of slaves|Bulk Slave Intro]] <</if>> diff --git a/src/uncategorized/theGymnasiumAcademy.tw b/src/uncategorized/theGymnasiumAcademy.tw index 5910c32cc526e0ac043a6aaef2ea01a213a3dd0f..5194021fe2773a115c9da7d16acf417bdb2dc570 100644 --- a/src/uncategorized/theGymnasiumAcademy.tw +++ b/src/uncategorized/theGymnasiumAcademy.tw @@ -22,17 +22,18 @@ <br><br>The price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +<<setLocalPronouns $activeSlave>> <<if $cash >= $slaveCost>> - <br>[[Buy her and check out other slaves to order|The Gymnasium-Academy][$cash -= $slaveCost, $TGA.schoolSale = 0, $TGA.studentsBought += 1, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] + <br>[["Buy " + $him + " and check out other slaves to order"|The Gymnasium-Academy][$cash -= $slaveCost, $TGA.schoolSale = 0, $TGA.studentsBought += 1, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] <<if $newSlaves.length == 0>> - <br>[[Buy her slave contract|New Slave Intro][$cash -= $slaveCost, $TGA.schoolSale = 0, $TGA.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]] + <br>[["Buy " + $his + " slave contract"|New Slave Intro][$cash -= $slaveCost, $TGA.schoolSale = 0, $TGA.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]] <<else>> - <br>[[Buy her and Finish your order of slaves|Bulk Slave Intro][$cash -= $slaveCost, $TGA.schoolSale = 0, $TGA.studentsBought += 1, $newSlaves.push($activeSlave)]] + <br>[["Buy " + $him + " and finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $TGA.schoolSale = 0, $TGA.studentsBought += 1, $newSlaves.push($activeSlave)]] <</if>> <<else>> //You lack the necessary funds to buy this slave.// <</if>> -<br>[[Decline to purchase her and check out another slave|The Gymnasium-Academy][$slavesSeen += 1]] +<br>[["Decline to purchase " + $him + " and check out another slave"|The Gymnasium-Academy][$slavesSeen += 1]] <<if $newSlaves.length > 0>> <br>[[Finish your order of slaves|Bulk Slave Intro]] <</if>> diff --git a/src/uncategorized/theSlavegirlSchool.tw b/src/uncategorized/theSlavegirlSchool.tw index 05e39de1f6e743d7dd52dd98974bd0e9fb6ac32a..35886014b8cf5221f98104125db370774f57effc 100644 --- a/src/uncategorized/theSlavegirlSchool.tw +++ b/src/uncategorized/theSlavegirlSchool.tw @@ -20,22 +20,22 @@ <</if>> <<if $slavesSeen > $slaveMarketLimit>><<set $slaveCost += Math.trunc($slaveCost*(($slavesSeen-$slaveMarketLimit)*0.1))>><</if>> - <br><br>The price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLimit>> You have cast such a wide net for slaves this week that it is becoming more expensive to find more for sale. Your reputation helps determine your reach within the slave market.<</if>> +<<setLocalPronouns $activeSlave>> <<if $cash >= $slaveCost>> - <br>[[Buy her and check out other slaves to order|The Slavegirl School][$cash -= $slaveCost, $TSS.schoolSale = 0, $TSS.studentsBought += 1, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] + <br>[["Buy " + $him + " and check out other slaves to order"|The Slavegirl School][$cash -= $slaveCost, $TSS.schoolSale = 0, $TSS.studentsBought += 1, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]] <<if $newSlaves.length == 0>> - <br>[[Buy her slave contract|New Slave Intro][$cash -= $slaveCost, $TSS.schoolSale = 0, $TSS.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]] + <br>[["Buy " + $his + " slave contract"|New Slave Intro][$cash -= $slaveCost, $TSS.schoolSale = 0, $TSS.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]] <<else>> - <br>[[Buy her and Finish your order of slaves|Bulk Slave Intro][$cash -= $slaveCost, $TSS.schoolSale = 0, $TSS.studentsBought += 1, $newSlaves.push($activeSlave)]] + <br>[["Buy " + $him + " and finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $TSS.schoolSale = 0, $TSS.studentsBought += 1, $newSlaves.push($activeSlave)]] <</if>> <<else>> //You lack the necessary funds to buy this slave.// <</if>> -<br>[[Decline to purchase her and check out another slave|The Slavegirl School][$slavesSeen += 1]] +<br>[["Decline to purchase " + $him + " and check out another slave|The Slavegirl School][$slavesSeen += 1]] <<if $newSlaves.length > 0>> - <br>[[Finish your order of slaves|Bulk Slave Intro]] + <br>[[Finish your order of slaves"|Bulk Slave Intro]] <</if>> <br><br> diff --git a/src/uncategorized/toychest.tw b/src/uncategorized/toychest.tw index 559147c9d7dc2954ca619f3d2ff1331291fc7c24..a881d30206b506ad69c3bb899f9bc8e39aedbce3 100644 --- a/src/uncategorized/toychest.tw +++ b/src/uncategorized/toychest.tw @@ -1,5 +1,7 @@ :: Toychest [nobr] +<<setLocalPronouns $slaves[$i]>> + //$slaves[$i].slaveName <<if $slaves[$i].fuckdoll > 0>> @@ -12,25 +14,25 @@ <</if>> <<elseif $slaves[$i].devotion > 50>> <<if $slaves[$i].toyHole == "mouth">> - has positioned herself nearby with her mouth conveniently <<if $PC.dick == 1>>at cock level<<else>>level with your pussy<</if>>. + has positioned $himself nearby with $his mouth conveniently <<if $PC.dick == 1>>at cock level<<else>>level with your pussy<</if>>. <<elseif $slaves[$i].toyHole == "boobs">> - is kneeling nearby with her chest thrust out as far as it will go. + is kneeling nearby with $his chest thrust out as far as it will go. <<elseif ($slaves[$i].toyHole == "pussy") && ($slaves[$i].amp != 1)>> - is kneeling on the couch with legs apart to present her pussy. + is kneeling on the couch with legs apart to present $his pussy. <<elseif $slaves[$i].toyHole == "pussy">> - is lying on the couch with her pussy ready for you. + is lying on the couch with $his pussy ready for you. <<elseif ($slaves[$i].toyHole == "ass") && ($slaves[$i].amp != 1)>> - is lying on the couch with her legs up and back to present her butthole. + is lying on the couch with $his legs up and back to present $his butthole. <<elseif $slaves[$i].toyHole == "ass">> - is lying on the couch with her butt ready for you. + is lying on the couch with $his butt ready for you. /*check*/ <<elseif $slaves[$i].toyHole == "dick">> - is lying on the couch with her dick at the ready for you. + is lying on the couch with $his dick at the ready for you. <<else>> - is nearby, eagerly presenting herself. + is nearby, eagerly presenting $himself. <</if>> <<elseif $slaves[$i].trust < -20>> - is waiting nearby in terror, hoping obedience will save her from punishment. + is waiting nearby in terror, hoping obedience will save $him from punishment. <<elseif $slaves[$i].devotion < -90>> is hogtied nearby for sexual abuse. <<elseif $slaves[$i].devotion < -50>> @@ -40,186 +42,190 @@ <<elseif $slaves[$i].devotion <= 20>> is obediently waiting nearby for sexual use. <<elseif $slaves[$i].devotion <= 50>> - has positioned herself nearby to offer you her body. + has positioned $himself nearby to offer you $his body. <</if>> <<set _pose = random(1,100)>> <<if $slaves[$i].fuckdoll > 0>> - Its holes are, as always, available. + $His holes are, as always, available. <<elseif $slaves[$i].fetish == "mindbroken">> - She ignores her clothing, regarding it as an impediment to her purpose. + $He ignores $his clothing, regarding it as an impediment to $his purpose. <<else>> <<switch $slaves[$i].clothes>> <<case "shibari ropes">> - You've tied her shibari bindings so that she's forced to thrust out her chest. + You've tied $his shibari bindings so that $he's forced to thrust out $his chest. <<case "uncomfortable straps">> <<if _pose > 75>> - Her leather straps are forcing her to thrust out her tits. + $His leather straps are forcing $him to thrust out $his tits. <<elseif _pose > 50>> - Her leather straps are uncomfortably pressing her breasts and asscrack. + $His leather straps are uncomfortably pressing $his breasts and asscrack. <<elseif _pose > 25>> - The rings in her leather straps over each nipple and hole make her look like a perfect fucktoy. + The rings in $his leather straps over each nipple and hole make $him look like a perfect fucktoy. <<else>> - Her uncomfortable straps force her to constantly present her holes. + $His uncomfortable straps force $him to constantly present $his holes. <</if>> <<case "restrictive latex" "a latex catsuit">> - Her complete suit of latex makes her a nice, artistic display, a plastic work of art in the shape of a female form. + $His complete suit of latex makes $him a nice, artistic display, a plastic work of art in the shape of a female form. <<case "a military uniform">> - Her uniformed presence lends your office the air of a military command center. + $His uniformed presence lends your office the air of a military command center. <<case "a schutzstaffel uniform">> - Her uniformed presence lends your office the air of a military command center. + $His uniformed presence lends your office the air of a military command center. <<case "a slutty schutzstaffel uniform">> - Her uniformed presence lends your office the air of a military command center. + $His uniformed presence lends your office the air of a military command center. <<case "a red army uniform">> - Her uniformed presence lends your office the air of a military command center. + $His uniformed presence lends your office the air of a military command center. <<case "a long qipao">> - Her elegant qipao lends your office an air of traditional opulence and prestige. + $His elegant qipao lends your office an air of traditional opulence and prestige. <<case "battlearmor">> - Her armored presence lends your office the air of a battlefield command center. + $His armored presence lends your office the air of a battlefield command center. <<case "a mounty outfit">> - Her uniformed presence lends your office the air of a police command center. + $His uniformed presence lends your office the air of a police command center. <<case "a dirndl">> - Her dirndl lends a traditional atmosphere to your office. + $His dirndl lends a traditional atmosphere to your office. <<case "lederhosen">> - Her lederhosen lends a traditional atmosphere to your office. + $His lederhosen lends a traditional atmosphere to your office. <<case "a biyelgee costume">> - Her biyelgee costume lends a festive atmosphere to your office. + $His biyelgee costume lends a festive atmosphere to your office. <<case "a mini skirt">> - Her flattering mini dress makes her the perfect office ornament for the modern captain of industry. + $His flattering mini dress makes $him the perfect office ornament for the modern captain of industry. <<case "a nice nurse outfit">> - Her proper nurse's outfit gives the office a clinical air. + $His proper nurse's outfit gives the office a clinical air. <<case "a fallen nuns habit">> - Her latex parody of a nuns habit gives the office a sacrilegious air. + $His latex parody of a nuns habit gives the office a sacrilegious air. <<case "a chattel habit">> - Her chattel habit makes the office look like what it is: the inner sanctum of a new and deeply sensual faith. + $His chattel habit makes the office look like what it is: the inner sanctum of a new and deeply sensual faith. <<case "a penitent nuns habit">> - Her sackcloth habit gives the office a somber air. + $His sackcloth habit gives the office a somber air. <<case "attractive lingerie">> - She's wearing classy lingerie, making her an unusually refined ornament to the office. + $He's wearing classy lingerie, making $him an unusually refined ornament to the office. <<case "kitty lingerie">> - Her cat-themed lingerie gives the office a bizarrely innocent air of perversion. + $His cat-themed lingerie gives the office a bizarrely innocent air of perversion. <<case "a succubus outfit">> - She's dressed to look like a succubus. There is a <<if $PC.title == 1>>demon in this office, and she serves him<<else>>demoness in this office, and she serves her<</if>>. + $He's dressed to look like a succubus. There is a <<if $PC.title == 1>>demon in this office, and $he serves him<<else>>demoness in this office, and $he serves her<</if>>. <<case "spats and a tank top">> - She's wearing spats and a tank top, giving the office the active air of a gym. + $He's wearing spats and a tank top, giving the office the active air of a gym. <<case "a string bikini">> - She's wearing a string bikini, making her a sexy, enticing office ornament. + $He's wearing a string bikini, making $him a sexy, enticing office ornament. <<case "a scalemail bikini">> - Her scalemail bikini gives the office a medieval air. + $His scalemail bikini gives the office a medieval air. <<case "striped panties" "a striped bra" "striped underwear">> - She's wearing cute underwear, making her a sexy, innocent-looking office ornament. + $He's wearing cute underwear, making $him a sexy, innocent-looking office ornament. <<case "attractive lingerie for a pregnant woman">> - Her breasts gently spill out of her slightly to small top. + $His breasts gently spill out of $his slightly too small top. <<if $slaves[$i].lactation > 0>> - Her leaking nipples have rendered her top see-through. + $His leaking nipples have rendered $his top see-through. <</if>> <<case "a maternity dress">> - Her low cut dress reveals ample cleavage. + $His low cut dress reveals ample cleavage. <<case "stretch pants and a crop-top">> - Her comfortable clothes give your office a laid back air and are easy to slip off when the mood strikes. + $His comfortable clothes give your office a laid back air and are easy to slip off when the mood strikes. <<case "a cheerleader outfit">> - She's wearing a slutty cheerleader outfit, making it look like she's here to fuck before team practice. + $He's wearing a slutty cheerleader outfit, making it look like $he's here to fuck before team practice. <<case "clubslut netting">> - She's wearing slutty netting and headphones so she can dance to music without annoying visitors. + $He's wearing slutty netting and headphones so $he can dance to music without annoying visitors. <<case "cutoffs and a t-shirt">> - She's wearing cutoffs and a t-shirt, making her a fun, clean office ornament. + $He's wearing cutoffs and a t-shirt, making $him a fun, clean office ornament. <<case "a slutty nurse outfit">> - She's wearing a slutty nurse outfit, and looks more than ready to minister to any patient's needs. + $He's wearing a slutty nurse outfit, and looks more than ready to minister to any patient's needs. <<case "a schoolgirl outfit">> - She's wearing a slutty schoolgirl outfit, and looks ready to do whatever it takes to improve her grades. + $He's wearing a slutty schoolgirl outfit, and looks ready to do whatever it takes to improve $his grades. <<case "a kimono">> - She's wearing a kimono, lending your office an air of elegance, though she lacks some of the air of the true yamato nadeshiko. + $He's wearing a kimono, lending your office an air of elegance, though $he lacks some of the air of the true yamato nadeshiko. <<case "a burkini">> - She's wearing a colorful burkini, lending your office a vague air of conservatism. + $He's wearing a colorful burkini, lending your office a vague air of conservatism. <<case "a hijab and blouse">> - She's wearing a modest hijab and blouse, lending your office a certain air of conservatism. + $He's wearing a modest hijab and blouse, lending your office a certain air of conservatism. <<case "a hijab and abaya">> - She's wearing a modest hijab and abaya, lending your office a certain air of conservatism. + $He's wearing a modest hijab and abaya, lending your office a certain air of conservatism. <<case "a niqab and abaya">> - She's wearing a niqab and abaya, lending your office an air of conservatism. + $He's wearing a niqab and abaya, lending your office an air of conservatism. <<case "a klan robe" "a slutty klan robe">> - She's wearing a ku klux klan robe, lending your office an air of conservatism. + $He's wearing a ku klux klan robe, lending your office an air of conservatism. <<case "a burqa">> - She's wearing an all-concealing burqa, lending your office an intense air of conservatism. + $He's wearing an all-concealing burqa, lending your office an intense air of conservatism. <<case "battledress">> - She's wearing skimpy battledress, making your office seem a little like the ideal bunker for a survivalist. + $He's wearing skimpy battledress, making your office seem a little like the ideal bunker for a survivalist. <<case "a slutty outfit">> <<if $slaves[$i].actualAge < 21>> - She's wearing a schoolgirl uniform and sucking on hard candy, giving her a delectably youthful appearance. + $He's wearing a schoolgirl uniform and sucking on hard candy, giving $him a delectably youthful appearance. <<elseif $slaves[$i].actualAge < 30>> - She's chosen to wear a slutty nurse outfit, and looks more than ready to minister to any patient's needs. + $He's chosen to wear a slutty nurse outfit, and looks more than ready to minister to any patient's needs. <<elseif $slaves[$i].actualAge < 40>> - She's wearing a schoolgirl uniform and sucking on hard candy, a delightfully perverse outfit for a slave in her thirties. + $He's wearing a schoolgirl uniform and sucking on hard candy, a delightfully perverse outfit for a slave in $his thirties. <<else>> - She's wearing a wifely apron that covers her front, but leaves her backside bare, an appropriate outfit for a slave in her forties. + $He's wearing a wifely apron that covers $his front, but leaves $his backside bare, an appropriate outfit for a slave in $his forties. <</if>> <<case "a halter top dress">> - The gorgeous halter top dress she's wearing is almost a work of art. + The gorgeous halter top dress $he's wearing is almost a work of art. <<case "a ball gown">> - The fabulous silken ball gown she's wearing lifts the entire atmosphere. + The fabulous silken ball gown $he's wearing lifts the entire atmosphere. <<case "a slave gown">> - The gorgeous gown she's wearing lends an air of class to the office. + The gorgeous gown $he's wearing lends an air of class to the office. <<case "slutty business attire">> - The suit she's wearing would make it look like she's here to do business, if not for the extreme shortness of the skirt and her acre of cleavage. + The suit $he's wearing would make it look like $he's here to do business, if not for the extreme shortness of the skirt and $his acre of cleavage. <<case "nice business attire">> - The suit she's wearing makes it look like she's here to do business, not fuck. + The suit $he's wearing makes it look like $he's here to do business, not fuck. <<case "a comfortable bodysuit">> - The bodysuit she's wearing displays her every fuckable curve. + The bodysuit $he's wearing displays $his every fuckable curve. <<case "a leotard">> - The leotard she's wearing is tight enough to advertise every detail. + The leotard $he's wearing is tight enough to advertise every detail. <<case "a monokini">> - Her topless swimsuit gives the office a perverted yet cultured aura. + $His topless swimsuit gives the office a perverted yet cultured aura. <<case "an apron">> - Her apron makes the office an intimate air, especially since she's nude underneath it. + $His apron makes the office an intimate air, especially since $he's nude underneath it. <<case "a cybersuit">> - Her cybersuit lends to an impersonal but sexual atmosphere, as her delicious curves are prominently displayed. + $His cybersuit lends to an impersonal but sexual atmosphere, as $his delicious curves are prominently displayed. <<case "a bunny outfit">> - The bunny outfit she's wearing makes her look ready to serve drinks and suck dick. + The bunny outfit $he's wearing makes $him look ready to serve drinks and suck dick. <<case "a slutty maid outfit">> - Her maid outfit makes her look useful and sexually easy. + $His maid outfit makes $him look useful and sexually easy. <<case "a nice maid outfit">> - Her maid outfit makes her servitude obvious while not looking too lewd. + $His maid outfit makes $his servitude obvious while not looking too lewd. <<case "harem gauze">> - Her harem girl outfit lends her corner of your office an Eastern opulence. + $His harem girl outfit lends $his corner of your office an Eastern opulence. <<case "slutty jewelry">> - The bangles she's wearing make little noises every time she moves, serving as a constant reminder of her sexual availability. + The bangles $he's wearing make little noises every time $he moves, serving as a constant reminder of $his sexual availability. <<case "conservative clothing">> - Her clothes make it look like she's here for some other purpose than sexual slavery. + $His clothes make it look like $he's here for some other purpose than sexual slavery. <<case "chains">> - Her chains make it obvious that she's here as an office sex toy. + $His chains make it obvious that $he's here as an office sex toy. <<case "Western clothing">> - Her Western clothing is comically out of place in a modern office. + $His Western clothing is comically out of place in a modern office. <<case "body oil">> - Her body oil makes her muscles a lovely ornament to the office, and makes all her holes nice and inviting. + $His body oil makes $his muscles a lovely ornament to the office, and makes all $his holes nice and inviting. <<case "a toga" "a hanbok">> - Her toga lends an air of antiquity to the office. + $His toga lends an air of antiquity to the office. <<case "a huipil">> - Her revealing huipil is a delightfully exotic novelty in your office. + $His revealing huipil is a delightfully exotic novelty in your office. <<case "a slutty qipao">> - Her lovely qipao is a delicious contradiction of conservative silk patterns and scandalously high cuts. + $His lovely qipao is a delicious contradiction of conservative silk patterns and scandalously high cuts. <<case "a tube top and thong" "a button-up shirt and panties" "a bra" "a button-up shirt" "a sweater" "a tank-top" "a thong" "a tube top" "a t-shirt" "a sweater and panties" "a tank-top and panties" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "a t-shirt and jeans" "boyshorts" "cutoffs" "panties" "leather pants and pasties" "leather pants" "a t-shirt and panties" "panties and pasties" "jeans" "a sweater and cutoffs" "leather pants and a tube top">> - Her purpose as your office sex toy is prominently displayed by her revealing outfit. + $His purpose as your office sex toy is prominently displayed by $his revealing outfit. <<case "a gothic lolita dress">> - Her gothic lolita dress lends a cute but dark old world charm to your office. + $His gothic lolita dress lends a cute but dark old world charm to your office. <<case "a police uniform">> - Her police uniform lends an air of security and authority to your office. + $His police uniform lends an air of security and authority to your office. <<case "a one-piece swimsuit">> - Her one-piece swimsuit lends your office a more casual atmosphere. + $His one-piece swimsuit lends your office a more casual atmosphere. <<case "a nice pony outfit" "a slutty pony outfit">> - Her bondage pony outfit reinforces the atmosphere of submission to your will. + $His bondage pony outfit reinforces the atmosphere of submission to your will. <<case "a sports bra" "sport shorts and a t-shirt" "sport shorts and a sports bra" "sport shorts">> +<<<<<<< HEAD Her athletic clothing gives the office a more youthful vibe. +======= + $His athletic clothing gives the office a more youthful vibe. +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 <<case "a skimpy loincloth">> - Her skimpy loincloth gives the office a more barbaric and raw atmosphere. + $His skimpy loincloth gives the office a more barbaric and raw atmosphere. <<default>> <<if ($slaves[$i].vaginalAccessory == "chastity belt")>> - Her chastity belt covers and protects her, but leaves her breasts naked, her mouth available, and her asshole vulnerable. + $His chastity belt covers and protects $his pussy, but leaves $his breasts naked, $his mouth available, and $his asshole vulnerable. <<elseif ($slaves[$i].vaginalAccessory == "anal chastity")>> - Her chastity belt covers and protects her anus, but leaves her breasts naked, her mouth available, and her pussy vulnerable. + $His chastity belt covers and protects $his anus, but leaves $his breasts naked, $his mouth available, and $his pussy vulnerable. <<elseif ($slaves[$i].vaginalAccessory == "combined chastity")>> - Her chastity belt covers and protects both her vagina and anus, but leaves her breasts naked and her mouth available. + $His chastity belt covers and protects both $his vagina and anus, but leaves $his breasts naked and $his mouth available. <<else>> - She's nude and ready to be fucked. + $He's nude and ready to be fucked. <</if>> <</switch>> <</if>>// diff --git a/src/uncategorized/walkPast.tw b/src/uncategorized/walkPast.tw index 97aba6db2ffa0cc0052b72997b1f5189cacd3cf8..76ffc47f3e69bbe875f640e4e22effa34a377fa1 100644 --- a/src/uncategorized/walkPast.tw +++ b/src/uncategorized/walkPast.tw @@ -171,7 +171,7 @@ <</if>> <<set $activeSlave.oralCount++, $oralTotal++>> <<case "submissive">> - wrestling <<if $activeSlave.livingRules == "luxurious">>in the nice little room they share.<<elseif ($activeSlave.ID == $HeadGirl.ID) && ($HGSuite == 1)>>in $activeSlave.ID's suite.<<else>>out in the open in the slave dormitory.<</if>> $activeSlave.slaveName is such a submissive that $he wants it rough all the time, and _partnerSlave.slaveName does _his2 best to give _his2 _activeSlaveRel the constant abuse $he loves. $activeSlave.slaveName is down on $his knees in front of _partnerSlave.slaveName, worshipping + wrestling <<if $activeSlave.livingRules == "luxurious">>in the nice little room they share.<<elseif ($activeSlave.ID == $HeadGirl.ID) && ($HGSuite == 1)>>in $activeSlave.ID's suite.<<else>>out in the open in the slave dormitory.<</if>> $activeSlave.slaveName is such a submissive that $he wants it rough all the time, and _partnerSlave.slaveName does _his2 best to give _his2 _activeSlaveRel the constant abuse $he loves. $activeSlave.slaveName is down on $his knees in front of _partnerSlave.slaveName, worshiping <<if (_partnerSlave.dick > 1) && canPenetrate(_partnerSlave)>> _his2 cock <<set _partnerSlave.penetrativeCount++, $penetrativeTotal++>> @@ -821,7 +821,7 @@ <<if $activeSlave.butt > 10>> $His stretch pants tightly cling to $his rear as $he moves. While the writing adorning it may catch your eye, the huge expanse of wobbling ass cleavage is far more distracting. <<else>> - $His stretch pants tightly cling to $his rear as $he moves; the writing on $his bottom gives you plenty of excuses to oggle it. + $His stretch pants tightly cling to $his rear as $he moves; the writing on $his bottom gives you plenty of excuses to ogle it. <</if>> <<case "restrictive latex">> As some of the only islands in the sea of black latex, $his holes are eye-catching. @@ -856,7 +856,7 @@ <<case "clubslut netting">> As $he moves, $his clubslut netting moves with $him, leaving nothing to the imagination. <<case "a cheerleader outfit">> - As $he moves, $his pleated cheerleader bounces up and down flirtily. + As $he moves, $his pleated cheerleader bounces up and down flirtatiously. <<case "cutoffs and a t-shirt">> As $he moves, $his cutoffs hug $his butt. <<case "spats and a tank top">> diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw index 324d24ca9d17b269cc9334ac4aabde0053e03fd3..d15231d7edddb76b63f07d840e9e21da00f5db3a 100644 --- a/src/utility/descriptionWidgetsFlesh.tw +++ b/src/utility/descriptionWidgetsFlesh.tw @@ -1352,7 +1352,7 @@ $His <<case "a monokini")>> Since $he is topless, they're plainly visible. <<default>> - <<if !["tiny", "inverted", "partially inverted", "fuckable"].includes($activeSlave.nipples)>> + <<if !["fuckable", "inverted", "partially inverted", "tiny"].includes($activeSlave.nipples)>> <<switch $activeSlave.clothes>> <<case "cutoffs and a t-shirt")>> Since $he isn't wearing a bra, they tent the front of $his t-shirt. diff --git a/src/utility/descriptionWidgetsTattoos.tw b/src/utility/descriptionWidgetsTattoos.tw index 6df673d2f4160f36eedcfe07d68ca73430a8a128..0a4ba2a44536628ee07aa933ebd7ccef58184a2d 100644 --- a/src/utility/descriptionWidgetsTattoos.tw +++ b/src/utility/descriptionWidgetsTattoos.tw @@ -403,7 +403,7 @@ $activeSlave.buttTat <</switch>> <</if>> -<<if ($activeSlave.brand != 0) && ["left buttock", "right buttock", "buttocks", "left thigh", "right thigh", "thighs"].includes($activeSlave.brandLocation)>> +<<if ($activeSlave.brand != 0) && ["buttocks", "left buttock", "left thigh", "right buttock", "right thigh", "thighs"].includes($activeSlave.brandLocation)>> <<brandDescription>> <</if>> <</widget>> diff --git a/src/utility/optionsWidgets.tw b/src/utility/optionsWidgets.tw index 95a91c36ce96aefd37e8888ab8eb0fd9c116175f..d0a82ce68b5d6d018c1340a226a9040ef39abb5c 100644 --- a/src/utility/optionsWidgets.tw +++ b/src/utility/optionsWidgets.tw @@ -446,6 +446,7 @@ Drugs and addiction are <</widget>> /% +<<<<<<< HEAD Call as <<OptionAbbreviateHormoneBalance>> Should be placed in a <span> with id = "OptionAbbreviateHormoneBalance" %/ @@ -497,6 +498,8 @@ Hormone balance is <</widget>> /% +======= +>>>>>>> 50d01d58abcc8efad3c7baa23b5e4a74439b5047 Call as <<OptionAbbreviateGenitalia>> Should be placed in a <span> with id = "OptionAbbreviateGenitalia" %/ diff --git a/src/utility/slaveCreationWidgets.tw b/src/utility/slaveCreationWidgets.tw index dc0855b51da043500a0fae2e203f3a1e5d13e09b..04630178a8581f3163a5787bf3fe904ddf42321a 100644 --- a/src/utility/slaveCreationWidgets.tw +++ b/src/utility/slaveCreationWidgets.tw @@ -788,7 +788,7 @@ <<widget "ToggleFetish">> <<if ($args[0] == 0)>> - <<set $activeSlave.fetish = either("none", "none", "none", "none", "none", "none", "none", "none", "none", "none", "submissive", "cumslut", "humiliation", "buttslut", "boobs", "pregnancy", "dom", "sadist", "masochist"), $activeSlave.fetishKnown = 0>> + <<set $activeSlave.fetish = either("boobs", "buttslut", "cumslut", "dom", "humiliation", "masochist", "none", "none", "none", "none", "none", "none", "none", "none", "none", "none", "pregnancy", "sadist", "submissive"), $activeSlave.fetishKnown = 0>> <<replace "#fetishblock">> //Not known.// <<link "Known">> @@ -2545,7 +2545,7 @@ <<set $activeSlave.behavioralFlaw = "gluttonous">> <</if>> <<if $activeSlave.fetish == "none">> - <<set $activeSlave.fetish = either("submissive", "cumslut", "humiliation", "buttslut", "boobs", "pregnancy", "dom", "sadist", "masochist")>> + <<set $activeSlave.fetish = either("boobs", "buttslut", "cumslut", "dom", "humiliation", "masochist", "pregnancy", "sadist", "submissive")>> <</if>> <<set $activeSlave.fetishStrength = random(60,90)>> <<if random(1,100) <= 5 && $activeSlave.fetish != "mindbroken">> @@ -2743,7 +2743,7 @@ <<set $activeSlave.nationality = "Stateless">> <<set $activeSlave.devotion = 40>> <<set $activeSlave.trust = -100>> - <<set $activeSlave.career = either("a politician", "a college scout", "a business owner", "a house DJ", "a soldier", "a prison guard", "a doctor", "a counselor", "a dairy worker", "a secretary", "a teacher")>> + <<set $activeSlave.career = either("a business owner", "a college scout", "a counselor", "a dairy worker", "a doctor", "a house DJ", "a politician", "a prison guard", "a secretary", "a soldier", "a teacher")>> <<set $activeSlave.intelligence = Intelligence.random({limitIntelligence: [20,100]})>> <<set $activeSlave.intelligenceImplant = 30>> <<set $activeSlave.health = random(-99,-50)>> @@ -2893,8 +2893,8 @@ <<set $activeSlave.analSkill = random(15,100)>> <<set $activeSlave.anus = random(1,3)>> <<set $activeSlave.weight = Math.clamp(-25, 25, $activeSlave.weight)>> - <<set $activeSlave.behavioralFlaw = either("arrogant", "bitchy", "odd", "hates men", "hates women", "hates women", "anorexic", "gluttonous", "devout", "liberated")>> - <<set $activeSlave.sexualFlaw = either("hates oral", "hates anal", "hates penetration", "repressed", "idealistic", "shamefast", "apathetic", "crude", "judgemental")>> + <<set $activeSlave.behavioralFlaw = either("anorexic", "arrogant", "bitchy", "devout", "gluttonous", "hates men", "hates women", "hates women", "liberated", "odd")>> + <<set $activeSlave.sexualFlaw = either("apathetic", "crude", "hates anal", "hates oral", "hates penetration", "idealistic", "judgemental", "repressed", "shamefast")>> <<if random(1,2) == 1>> <<set _slaveGen = random(2,8)*200>> <<set $activeSlave.boobs += _slaveGen>> @@ -3292,8 +3292,8 @@ <<set $activeSlave.pubicHStyle = "waxed">> <<set $activeSlave.underArmHStyle = "waxed">> <<set $activeSlave.birthWeek = 0>> - <<set $activeSlave.sexualFlaw = either("none", "apathetic")>> - <<set $activeSlave.behavioralFlaw = either("none", "arrogant", "odd")>> + <<set $activeSlave.sexualFlaw = either("apathetic", "none")>> + <<set $activeSlave.behavioralFlaw = either("arrogant", "none", "odd")>> <<set $activeSlave.hStyle = "short">> <<set $activeSlave.hLength = 2>> <<set $activeSlave.customTat = "She has the baroque crest of the Gymnasium-Academy that trained her branded into her left cheek.">> @@ -3452,7 +3452,7 @@ <</if>> <<set $activeSlave.origin = "You bought her from the enigmatic Futanari Sisters after they sold her into slavery.">> <<set $activeSlave.career = "a Futanari Sister">> - <<set $activeSlave.faceShape = either("sensual", "exotic")>> + <<set $activeSlave.faceShape = either("exotic", "sensual")>> <<set $activeSlave.pubertyXY = 1>> <<set _sisterAge = random(1,5)>> <<if _sisterAge == 1>> @@ -3514,7 +3514,7 @@ <<set $activeSlave.waist = random(-30,10)>> <<set $activeSlave.vagina = 2>> <<set $activeSlave.anus = 2>> - <<set $activeSlave.fetish = either("submissive", "buttslut", "cumslut")>> + <<set $activeSlave.fetish = either("buttslut", "cumslut", "submissive")>> <<elseif _sisterAge == 3>> <<set $activeSlave.intelligence = 0>> <<set $activeSlave.hips = 2>>