diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt index 469d6e6a471b20ffbf1e82e986ba7b2d94f01b92..b958405990dbfce750568e14ad936e1966bb7673 100644 --- a/devNotes/VersionChangeLog-Premod+LoliMod.txt +++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt @@ -2,9 +2,15 @@ 0.10.7.1-1.5.x +01/11/2019 + + 6 + -now with even more fixes and cleaning + -tweaked preg biometrics to require ovaries of some sort + 01/09/2019 - 4 + 5 -more fixes and cleaning 01/08/2019 diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt index 5f20f3ef7dd20ebd0a9ef26a469f71ef40ea8163..0f4b66d89748cdc077632e7712e0f2cea717c3e8 100644 --- a/devNotes/twine JS.txt +++ b/devNotes/twine JS.txt @@ -1262,6 +1262,44 @@ window.isItemAccessible = function(string) { } }; +/*:: relationshipChecks [script]*/ + +window.rivalryTerm = function(id) { + if (id.rivalry === 1) { + return `growing rival`; + } else if (id.rivalry === 2) { + return `rival`; + } else { + return `bitter rival`; + } +} +window.relationshipTerm = function(id) { + if (id.relationship === 1) { + return `friend`; + } else if (id.relationship === 2) { + return `best friend`; + } else if (id.relationship === 3) { + return `friend with benefits`; + } else if (id.relationship === 4) { + return `lover`; + } else { + return `slave wife`; + } +} +window.relationshipTermShort = function(id) { + if (id.relationship === 1) { + return `friend`; + } else if (id.relationship === 2) { + return `BFF`; + } else if (id.relationship === 3) { + return `FWB`; + } else if (id.relationship === 4) { + return `lover`; + } else { + return `wife`; + } +} + /*:: Extended Family Mode JS [script]*/ /* see documentation for details /devNotes/Extended Family Mode Explained.txt */ @@ -2517,7 +2555,7 @@ window.getSlaveCost = function(s) { cost -= foodCost; break; } - if(s.geneticQuirks.fertility == 2 && s.geneticQuirks.hyperFertility == 2) { + if(s.geneticQuirks.fertility == 2 && s.geneticQuirks.hyperFertility == 2 && s.preg == 0 && (s.ovaries == 1 || s.mpreg == 1)) { cost += foodCost * .5; } if(s.weight > 130) { @@ -4450,20 +4488,20 @@ window.originPronounReplace = function(slave) { case "She was the private slave of a con artist cult leader before he had to abandon her and flee.": case "You helped her give birth, leaving her deeply indebted to you.": case "You purchased her from a King after she expressed knowledge of the prince's affair with another servant.": - r = r.replace(/(?<=\s)herself(?=\s|,|\.|;|\?|!)/g, slave.objectReflexive); - r = r.replace(/(?<=\s|^)Herself(?=\s|,|\.|;|\?|!)/g, capFirstChar(slave.objectReflexive)); - r = r.replace(/(?<=\s)she(?=\s|,|\.|;|\?|!)/g, slave.pronoun); - r = r.replace(/(?<=\s|^)She(?=\s|,|\.|;|\?|!)/g, capFirstChar(slave.pronoun)); - r = r.replace(/(?<=\s)her(?=\s|,|\.|;|\?|!)/g, slave.object); - r = r.replace(/(?<=\s|^)Her(?=\s|,|\.|;|\?|!)/g, capFirstChar(slave.object)); + r = r.replace(/\bherself\b/g, slave.objectReflexive); + r = r.replace(/\bHerself\b/g, capFirstChar(slave.objectReflexive)); + r = r.replace(/\bshe\b/g, slave.pronoun); + r = r.replace(/\bShe\b/g, capFirstChar(slave.pronoun)); + r = r.replace(/\bher\b/g, slave.object); + r = r.replace(/\bHer\b/g, capFirstChar(slave.object)); return r; default: - r = r.replace(/(?<=\s)herself(?=\s|,|\.|;|\?|!)/g, slave.objectReflexive); - r = r.replace(/(?<=\s|^)Herself(?=\s|,|\.|;|\?|!)/g, capFirstChar(slave.objectReflexive)); - r = r.replace(/(?<=\s)she(?=\s|,|\.|;|\?|!)/g, slave.pronoun); - r = r.replace(/(?<=\s|^)She(?=\s|,|\.|;|\?|!)/g, capFirstChar(slave.pronoun)); - r = r.replace(/(?<=\s)her(?=\s|,|\.|;|\?|!)/g, slave.possessive); - r = r.replace(/(?<=\s|^)Her(?=\s|,|\.|;|\?|!)/g, capFirstChar(slave.possessive)); + r = r.replace(/\bherself\b/g, slave.objectReflexive); + r = r.replace(/\bHerself\b/g, capFirstChar(slave.objectReflexive)); + r = r.replace(/\bshe\b/g, slave.pronoun); + r = r.replace(/\bShe\b/g, capFirstChar(slave.pronoun)); + r = r.replace(/\bher\b/g, slave.possessive); + r = r.replace(/\bHer\b/g, capFirstChar(slave.possessive)); return r; } }; @@ -11497,7 +11535,7 @@ window.WombInit = function(actor) { } //backward compatibility setup. Fully accurate for normal pregnancy only. - if (actor.womb.length > 0 && actor.womb[0].genetics == undefined) { + if (actor.womb.length > 0 && actor.womb[0].genetics == undefined && actor.eggType == "human") { var i=0 actor.womb.forEach(function(ft){ ft.genetics = generateGenetics(actor, actor.pregSource, i); @@ -11538,10 +11576,14 @@ window.WombImpregnate = function(actor, fCount, fatherID, age, surrogate) { tf.splitted = 0; //marker for already splitted fetus. if (surrogate) { tf.motherID = surrogate.ID; //Initial biological mother ID setup. - tf.genetics = generateGenetics(surrogate, fatherID, i+1); //Stored genetic information. + if(actor.eggType == "human"){ + tf.genetics = generateGenetics(surrogate, fatherID, i+1); //Stored genetic information. + } } else { tf.motherID = actor.ID; //Initial biological mother ID setup. - tf.genetics = generateGenetics(actor, fatherID, i+1); //Stored genetic information. + if(actor.eggType == "human"){ + tf.genetics = generateGenetics(actor, fatherID, i+1); //Stored genetic information. + } } tf.ID = generateNewID(); @@ -15151,7 +15193,7 @@ window.DefaultRules = (function() { if ((rule.collar !== undefined) && (rule.collar != "no default setting")) { if ((slave.collar !== rule.collar)) { r += '<br>'; - if ((rule.collar == "preg biometrics" && slave.preg <= -1)) { + if (rule.collar == "preg biometrics" && slave.preg <= -1 && slave.ovaries === 0 && slave.mpreg === 0) { slave.collar = "none"; r += `${slave.slaveName} cannot utilize preg biometrics. `; } else if ((rule.collar == "massive dildo gag" && slave.oralSkill <= 50)) { @@ -18511,6 +18553,7 @@ window.rulesAssistantOptions = (function() { const hcollars = []; setup.harshCollars.forEach(item => { if (item.fs === "seeage" && V.seeAge === 0) return; + else if (item.fs === "seePreg" && V.seePreg === 0) return; else if (item.rs === "buyGag" && V.toysBoughtGags !== 1) return; else hcollars.push([item.name, item.value]); }); diff --git a/slave variables documentation - Pregmod.txt b/slave variables documentation - Pregmod.txt index 83e8b87d97fdd698c959ffbb6c45118b2cf48f81..925d2be308dd28977f2b65d2dcc9f4681513b2ef 100644 --- a/slave variables documentation - Pregmod.txt +++ b/slave variables documentation - Pregmod.txt @@ -1765,6 +1765,7 @@ pregSource: accepts ID See Pregnancy Control section for more. Who sired her pregnancy +-8 - an animal -7 - designer baby -2 - Citizen of your arcology -1 - You diff --git a/src/init/setupVars.tw b/src/init/setupVars.tw index c0129c3c92ad6c01e4f3793c9ac617c47012c600..82a4a5c10834bb64588e54df7f73e305c136c25d 100644 --- a/src/init/setupVars.tw +++ b/src/init/setupVars.tw @@ -21,6 +21,8 @@ canineL: {type: "canineL", normalOvaMin:2, normalOvaMax: 6, normalBirth: 9, minL pig: {type: "pig", normalOvaMin:8, normalOvaMax: 12, normalBirth: 16, minLiveBirth: 14, drugsEffect: 0.5, fetusWeek: [0, 3, 16, 16+28, 16+48, 99999], fetusSize: [0, 1, 1700, 94000, 170000, 170000], fetusRate: [4, 4, 4, 4, 4, 4], sizeType: 1}, +cow: {type: "cow", normalOvaMin:1, normalOvaMax: 1, normalBirth: 41, minLiveBirth: 38, drugsEffect: 0.05, fetusWeek: [0, 1*4, 2*4, 3*4, 4*4, 5*4, 6*4, 7*4, 8*4, 9*4, 9*4+90, 9*4+180, 99999], fetusSize: [0, 1, 20, 280, 1500, 3200, 6100, 15000, 23000, 50000, 350000, 500000, 500000], fetusRate: [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], sizeType: 1}, + equine: {type: "equine", normalOvaMin:1, normalOvaMax: 1, normalBirth: 48, minLiveBirth: 44, drugsEffect: 0.05, fetusWeek: [0, 5.7, 8.5, 11.4, 14.2, 21.4, 25.7, 34.2, 38.5, 45.7, 48, 192, 99999], fetusSize: [0, 14.1, 28.3, 56.7, 453, 2721, 11339, 20411, 34019, 54431, 57000, 600000, 600000], fetusRate: [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4], sizeType: 1} }>> /* Source data for canine include CTR (not head to toe size), so CTR do not apply anywhere, always 1.*/ @@ -2036,7 +2038,7 @@ Then pick _namePool.random(), or display those names as possible choices, or do {name: "Tight steel", value: "tight steel"}, {name: "Cruel retirement counter", value: "cruel retirement counter", fs: "seeage"}, {name: "Uncomfortable leather", value: "uncomfortable leather"}, - {name: "Pregnancy biometrics", value: "preg biometrics"}, + {name: "Pregnancy biometrics", value: "preg biometrics", fs: "seePreg"}, {name: "Shock punishment", value: "shock punishment"}, {name: "Dildo gag", value: "dildo gag"}, {name: "Massive dildo gag", value: "massive dildo gag", rs: "buyGag"}, diff --git a/src/js/DefaultRules.tw b/src/js/DefaultRules.tw index 3baf4a4b50e69a4af0df9df89f643ad1d805065e..af07393eebbf579a80216f577d9178842e6d427f 100644 --- a/src/js/DefaultRules.tw +++ b/src/js/DefaultRules.tw @@ -358,7 +358,7 @@ window.DefaultRules = (function() { if ((rule.collar !== undefined) && (rule.collar != "no default setting")) { if ((slave.collar !== rule.collar)) { r += '<br>'; - if ((rule.collar == "preg biometrics" && slave.preg <= -1)) { + if (rule.collar == "preg biometrics" && slave.preg <= -1 && slave.ovaries === 0 && slave.mpreg === 0) { slave.collar = "none"; r += `${slave.slaveName} cannot utilize preg biometrics. `; } else if ((rule.collar == "massive dildo gag" && slave.oralSkill <= 50)) { diff --git a/src/js/economyJS.tw b/src/js/economyJS.tw index f3b56f444f51115036ce174597706fe2917768d2..05a00db7cafe7dd9d824568968ba79da86c03898 100644 --- a/src/js/economyJS.tw +++ b/src/js/economyJS.tw @@ -452,7 +452,7 @@ window.getSlaveCost = function(s) { cost -= foodCost; break; } - if(s.geneticQuirks.fertility == 2 && s.geneticQuirks.hyperFertility == 2) { + if(s.geneticQuirks.fertility == 2 && s.geneticQuirks.hyperFertility == 2 && s.preg == 0 && (s.ovaries == 1 || s.mpreg == 1)) { cost += foodCost * .5; } if(s.weight > 130) { diff --git a/src/js/rulesAssistantOptions.tw b/src/js/rulesAssistantOptions.tw index cdac390187a1f2bc127b30a8dd963bed99f287eb..f47aba1563b6d3a640732a4ac469f0a4833368ed 100644 --- a/src/js/rulesAssistantOptions.tw +++ b/src/js/rulesAssistantOptions.tw @@ -1239,6 +1239,7 @@ window.rulesAssistantOptions = (function() { const hcollars = []; setup.harshCollars.forEach(item => { if (item.fs === "seeage" && V.seeAge === 0) return; + else if (item.fs === "seePreg" && V.seePreg === 0) return; else if (item.rs === "buyGag" && V.toysBoughtGags !== 1) return; else hcollars.push([item.name, item.value]); }); diff --git a/src/js/utilJS.tw b/src/js/utilJS.tw index 982e9bf3f96e157390e09ea2bb58b6ae0ae31ffa..e06e9ff130c6de307669d2e68d7dd52c0149729c 100644 --- a/src/js/utilJS.tw +++ b/src/js/utilJS.tw @@ -1219,20 +1219,20 @@ window.originPronounReplace = function(slave) { case "She was the private slave of a con artist cult leader before he had to abandon her and flee.": case "You helped her give birth, leaving her deeply indebted to you.": case "You purchased her from a King after she expressed knowledge of the prince's affair with another servant.": - r = r.replace(/(?<=\s)herself(?=\s|,|\.|;|\?|!)/g, slave.objectReflexive); - r = r.replace(/(?<=\s|^)Herself(?=\s|,|\.|;|\?|!)/g, capFirstChar(slave.objectReflexive)); - r = r.replace(/(?<=\s)she(?=\s|,|\.|;|\?|!)/g, slave.pronoun); - r = r.replace(/(?<=\s|^)She(?=\s|,|\.|;|\?|!)/g, capFirstChar(slave.pronoun)); - r = r.replace(/(?<=\s)her(?=\s|,|\.|;|\?|!)/g, slave.object); - r = r.replace(/(?<=\s|^)Her(?=\s|,|\.|;|\?|!)/g, capFirstChar(slave.object)); + r = r.replace(/\bherself\b/g, slave.objectReflexive); + r = r.replace(/\bHerself\b/g, capFirstChar(slave.objectReflexive)); + r = r.replace(/\bshe\b/g, slave.pronoun); + r = r.replace(/\bShe\b/g, capFirstChar(slave.pronoun)); + r = r.replace(/\bher\b/g, slave.object); + r = r.replace(/\bHer\b/g, capFirstChar(slave.object)); return r; default: - r = r.replace(/(?<=\s)herself(?=\s|,|\.|;|\?|!)/g, slave.objectReflexive); - r = r.replace(/(?<=\s|^)Herself(?=\s|,|\.|;|\?|!)/g, capFirstChar(slave.objectReflexive)); - r = r.replace(/(?<=\s)she(?=\s|,|\.|;|\?|!)/g, slave.pronoun); - r = r.replace(/(?<=\s|^)She(?=\s|,|\.|;|\?|!)/g, capFirstChar(slave.pronoun)); - r = r.replace(/(?<=\s)her(?=\s|,|\.|;|\?|!)/g, slave.possessive); - r = r.replace(/(?<=\s|^)Her(?=\s|,|\.|;|\?|!)/g, capFirstChar(slave.possessive)); + r = r.replace(/\bherself\b/g, slave.objectReflexive); + r = r.replace(/\bHerself\b/g, capFirstChar(slave.objectReflexive)); + r = r.replace(/\bshe\b/g, slave.pronoun); + r = r.replace(/\bShe\b/g, capFirstChar(slave.pronoun)); + r = r.replace(/\bher\b/g, slave.possessive); + r = r.replace(/\bHer\b/g, capFirstChar(slave.possessive)); return r; } }; diff --git a/src/js/wombJS.tw b/src/js/wombJS.tw index 8bc52b72cbe2d25ba01edaab2243a000559b436a..09caebe357c56e339915b76e90df5336563f7ef6 100644 --- a/src/js/wombJS.tw +++ b/src/js/wombJS.tw @@ -52,7 +52,7 @@ window.WombInit = function(actor) { } //backward compatibility setup. Fully accurate for normal pregnancy only. - if (actor.womb.length > 0 && actor.womb[0].genetics == undefined) { + if (actor.womb.length > 0 && actor.womb[0].genetics == undefined && actor.eggType == "human") { var i=0 actor.womb.forEach(function(ft){ ft.genetics = generateGenetics(actor, actor.pregSource, i); @@ -93,10 +93,14 @@ window.WombImpregnate = function(actor, fCount, fatherID, age, surrogate) { tf.splitted = 0; //marker for already splitted fetus. if (surrogate) { tf.motherID = surrogate.ID; //Initial biological mother ID setup. - tf.genetics = generateGenetics(surrogate, fatherID, i+1); //Stored genetic information. + if(actor.eggType == "human"){ + tf.genetics = generateGenetics(surrogate, fatherID, i+1); //Stored genetic information. + } } else { tf.motherID = actor.ID; //Initial biological mother ID setup. - tf.genetics = generateGenetics(actor, fatherID, i+1); //Stored genetic information. + if(actor.eggType == "human"){ + tf.genetics = generateGenetics(actor, fatherID, i+1); //Stored genetic information. + } } tf.ID = generateNewID(); diff --git a/src/pregmod/geneLab.tw b/src/pregmod/geneLab.tw index 603565ef09eae87888fb00aab3a659c3fc889d3f..b925fa3794b21b982a11b945a4f13e4231f1a395 100644 --- a/src/pregmod/geneLab.tw +++ b/src/pregmod/geneLab.tw @@ -14,7 +14,7 @@ Genetic Modification <hr> <<if $dispensaryUpgrade == 0>> - //The fabricator must upgraded before it can produce treatments to alter genes// + //The fabricator must be upgraded before it can produce treatments to alter genes// <br> <<else>> The fabricator is capable of producing treatments to alter a slave's genetic code. diff --git a/src/pregmod/seDeath.tw b/src/pregmod/seDeath.tw index 861e0dd7d4889a11322cb71458ead8dd8c96bafe..1d4d3e82cb37cd64444017d8c6b7799f5b51c67c 100644 --- a/src/pregmod/seDeath.tw +++ b/src/pregmod/seDeath.tw @@ -1,4 +1,4 @@ -:: SE Death [nobr] +:: SE Death [nobr] <<set $nextButton = "Continue", $nextLink = "Scheduled Event">> @@ -23,6 +23,11 @@ <<set _killedSlaves.push(_slave)>> <</switch>> <</foreach>> +<<if _killedSlaves.length == 0>> + /* if something beats this to the slaves, this should kick the player along instead of leaving them at a blank screen */ + <<set $slaveDeath = 0>> + <<goto "Scheduled Event">> +<</if>> <<foreach _slave of _killedSlaves>> <<set $activeSlave = _slave>> <<include "Remove activeSlave">> diff --git a/src/uncategorized/costsReport.tw b/src/uncategorized/costsReport.tw index a33f9ff6806af3c5d0bc388b825845643b0a182a..d1bd65c67cf02e14f6a7b04c9d4cb2c12d28d713 100644 --- a/src/uncategorized/costsReport.tw +++ b/src/uncategorized/costsReport.tw @@ -524,6 +524,15 @@ $nursery > 0 || $masterSuiteUpgradePregnancy > 0 || $incubator > 0 || <<set _individualCosts -= $foodCost>> <</if>> <</if>> + <<if ($slaves[$i].geneticQuirks.fertility == 2 && $slaves[$i].geneticQuirks.hyperFertility == 2 && $slaves[$i].preg == 0 && ($slaves[$i].ovaries == 1 || $slaves[$i].mpreg == 1))>> + <br> + <<if $geneticMappingUpgrade == 1>> + <i>Additional dietary supplements due to genetic hyper-fertility:</i> @@.yellowgreen;<<print cashFormat($foodCost/2)>>@@ + <<else>> + <i>Adjustment for unusual deitary deficiencies:</i> @@.yellowgreen;<<print cashFormat($foodCost/2)>>@@ + <</if>> + <<set _individualCosts += $foodCost/2>> + <</if>> <<if $slaves[$i].drugs == "appetite suppressors">> <br> <i>Food saved via suppressed appetite:</i> //reduced by// @@.yellowgreen;<<print cashFormat($foodCost)>>@@ <<set _individualCosts -= $foodCost>> diff --git a/src/uncategorized/peConcubineInterview.tw b/src/uncategorized/peConcubineInterview.tw index db7b5c3ecdf54a7a24f7ab28da7ea21fc86f6e55..050e73ef880fe02490887c005a6ee63ad8d2c194 100644 --- a/src/uncategorized/peConcubineInterview.tw +++ b/src/uncategorized/peConcubineInterview.tw @@ -414,7 +414,7 @@ You receive an official communication from a popular talk show e-hosted in one o <<else>> says jokingly, <</if>> - "My dear it's been a pleasure. If all Free Cities girls are like you I might have to look into immigrating. Ladies and gentlemen, good night!" + "My dear it's been a pleasure. If all Free Cities <<print $girl>>s are like you I might have to look into immigrating. Ladies and gentlemen, good night!" <</replace>> <</link>> </span> diff --git a/src/uncategorized/peHeadgirlConcubine.tw b/src/uncategorized/peHeadgirlConcubine.tw index 28a839e881936ce8febe48bfef88e8af9f349013..ce74e13d8c7708103138be91f6def0509f66d824 100644 --- a/src/uncategorized/peHeadgirlConcubine.tw +++ b/src/uncategorized/peHeadgirlConcubine.tw @@ -2,16 +2,20 @@ <<set $nextButton = "Continue", $nextLink = "RIE Eligibility Check", $returnTo = "RIE Eligibility Check">> -<<set $i = $slaveIndices[$HeadGirl.ID]>> -<<set $partner = $slaveIndices[$Concubine.ID]>> +<<set _headGirl = $slaveIndices[$HeadGirl.ID]>> +<<set _concubine = $slaveIndices[$Concubine.ID]>> <<setLocalPronouns $HeadGirl>> +<<set _belly = bellyAdjective($HeadGirl)>> <<setLocalPronouns $Concubine 2>> +<<set _bellyCon = bellyAdjective($Concubine)>> <<setAssistantPronouns>> You wake up one morning to find $HeadGirl.slaveName and $Concubine.slaveName waiting next to your bed. It's immediately obvious that they both have a minor item of business for you, since nothing was urgent enough to wake you early, and they evidently both came in to catch you at your normal hour of rising. They're kneeling side by side next to the -<<if $HeadGirl.boobs + $Concubine.boobs > 10000>> +<<if $HeadGirl.boobs >= 10000 && $Concubine.boobs >= 10000>> bed (a position that smashes their massive breasts together on one side), -<<elseif $HeadGirl.butt + $Concubine.butt > 10>> +<<elseif $HeadGirl.belly >= 45000 && $Concubine.belly >= 45000>> + bed (a position that forces their swollen middles to compete for space), +<<elseif $HeadGirl.butt > 5 && $Concubine.butt > 5>> bed (a position that smashes their massive asses together on one side), <<else>> bed, @@ -23,49 +27,57 @@ and it's also obvious that they've been filling the few minutes they've been wai <span id="result"> <<link "Get right to work">> <<replace "#result">> - You didn't get to where you are by lying around on the job. You spring out of bed and head straight towards your office and its desk to get some work done with your first rush of morning energy before your ablutions. Your Head Girl and Concubine follow along behind you; + You didn't get to where you are by lying around on the job. You <<if $PC.belly < 5000>>spring<<elseif $PC.belly < 10000>>pull yourself<<else>>slowly slip your gravid bulk<</if>> out of bed and head straight towards your office and its desk to get some work done with your first rush of morning energy before your ablutions. Your Head Girl and Concubine follow along behind you; $HeadGirl.slaveName does $his best to keep up, because the sight of your - <<if $HeadGirl.attrXX > 65>> - <<if $HeadGirl.attrXY > 65>> - <<if $PC.dick == 1>> - <<if $PC.vagina == 1>> - dangling penis and a hint of the pussy under it - <<elseif $PC.boobs == 1>> - naked breasts and dangling penis - <<else>> - bare dick - <</if>> - <<else>> - <<if $PC.boobs == 1>> - bare boobs - <<else>> - androgynous body - <</if>> - <</if>> + <<if $HeadGirl.fetish == "pregnancy" && $PC.belly >= 10000>> + increasingly large baby bump and motherly waddle + <<elseif $HeadGirl.fetish == "cumslut" && $PC.ballsImplant > 2>> + over-burdened scrotum in motion as you walk + <<elseif $HeadGirl.attrXX > 65 && $HeadGirl.attrXY > 65 && $PC.dick == 1 && ($PC.boobs == 1 || $PC.title == 0 || $PC.vagina == 1)>> + dangling penis + <<if $PC.boobs == 1>> + and bouncing boobs + <<elseif $PC.vagina == 1>> + and a hint of the pussy under it <<else>> - <<if $PC.boobs == 1>> - bare boobs - <<elseif $PC.dick == 0>> - bare pussy - <<else>> - beloved body nude - <</if>> + on such a feminine body <</if>> - <<else>> + in motion as you walk + <<elseif $HeadGirl.attrXY > 65>> <<if $PC.dick == 1>> - bare dick - <<elseif $PC.boobs == 0>> - bare chest + dangling penis + <<elseif $PC.title == 1>> + masculine body nude <<else>> beloved body nude <</if>> + in motion as you walk + <<elseif $HeadGirl.attrXX > 65>> + <<if $PC.boobs == 1>> + <<if $PC.boobsBonus >= 3>> + huge boobs from behind + <<else>> + bare boobs + <</if>> + <<elseif $PC.vagina == 1 && $PC.dick == 0>> + bare pussy + <<elseif $PC.vagina == 1 && $PC.dick == 1>> + bare pussy under your maleness + <<elseif $PC.title == 0>> + feminine body + <<else>> + beloved body nude + <</if>> + in motion as you walk + <<else>> + beloved body nude in motion as you walk <</if>> - in motion as you walk is something $he openly enjoys, while $Concubine.slaveName at least tries to be a little more modest. You sit down at your desk, taking in the situation in your domain at a glance as $assistantName + is something $he openly enjoys, while $Concubine.slaveName at least tries to be a little more modest. You sit down at your desk, taking in the situation in your domain at a glance as $assistantName <<switch $assistantAppearance>> <<case "monstergirl">> springs into monstrous life on the glass desktop, eyes flashing and hair writhing. <<case "shemale">> - pops up on the glass desktop, helicoptering _hisA dick while she waits for instructions. + pops up on the glass desktop, helicoptering _hisA dick while _heA waits for instructions. <<case "amazon">> appears to smash through the glass desktop, landing in a crouch to wait for orders. <<case "businesswoman">> @@ -75,13 +87,13 @@ and it's also obvious that they've been filling the few minutes they've been wai <<case "pregnant fairy">> appears on the glass desktop, gingerly pressing _hisA face and belly against the screen. <<case "goddess">> - gleams into existence on the glass desktop, reclining in a glow of maternal glory while she waits for direction. + gleams into existence on the glass desktop, reclining in a glow of maternal glory while _heA waits for direction. <<case "hypergoddess">> gleams into existence on the glass desktop, shifting _hisA gravid bulk so that it rests firmly on your desk. <<case "loli">> appears on the glass desktop, facing away from you. _HeA spins around with a start, a finger up _hisA nose, before quickly brushing _himselfA off and pretending _heA wasn't doing anything. <<case "preggololi">> - appears on the glass desktop, idly stroking _hisA pregnancy as she awaits your command. + appears on the glass desktop, idly stroking _hisA pregnancy as _heA awaits your command. <<case "schoolgirl">> appears on the glass desktop, sitting in _hisA own chair and waiting for instructions with _hisA legs spread a little wide for such a short skirt. <<case "angel">> @@ -100,7 +112,21 @@ and it's also obvious that they've been filling the few minutes they've been wai appears as a glowing icon on the glass desktop, awaiting instructions. <</switch>> <br><br> - You look at $HeadGirl.slaveName, standing across the desk from you, and $he takes the cue and goes first. $He asks your permission to make a couple of last-minute changes to slaves' assignments for the day, and you ask about a couple of minor efficiency issues before giving $him the go ahead. Meanwhile, $Concubine.slaveName kneels beside your chair, resting _his2 $Concubine.hColor head on your knee, _his2 <<if $Concubine.dick > 8>>limp, monstrous cock resting softly against one of your ankles<<elseif $Concubine.boobs > 5000>>titanic udders a nice cushion against your calves<<elseif $Concubine.weight > 10>>soft body cushioning nicely against your leg<<elseif $Concubine.boobs > 1000>>heavy breast resting against your calf on that side<<else>>chest warm against your calf on that side<</if>>. _He2 places a <<if $Concubine.muscles > 30>>strong<<else>>soft<</if>> hand on the inside of your shin and hugs your lower leg, sensual, but companionable rather than sexually insistent. + You look at $HeadGirl.slaveName, standing across the desk from you, and $he takes the cue and goes first. $He asks your permission to make a couple of last-minute changes to slaves' assignments for the day, and you ask about a couple of minor efficiency issues before giving $him the go ahead. Meanwhile, $Concubine.slaveName kneels beside your chair, resting _his2 <<if $Concubine.bald == 0 && $Concubine.hLength > 0>>$Concubine.hColor<<else>>smooth<</if>> head on your knee, _his2 + <<if $Concubine.dick > 8>> + limp, monstrous cock resting softly against one of your ankles. + <<elseif $Concubine.boobs > 10000>> + titanic udders a nice cushion against your calves. + <<elseif $Concubine.weight > 30>> + soft body cushioning nicely against your leg. + <<elseif $Concubine.belly >= 100000>> + _bellyCon belly resting warmly against your leg. + <<elseif $Concubine.boobs > 1000>> + heavy breast resting against your calf on that side. + <<else>> + chest warm against your calf on that side. + <</if>> + _He2 places a <<if $Concubine.muscles > 50>>strong<<else>>soft<</if>> hand on the inside of your shin and hugs your lower leg, sensual, but companionable rather than sexually insistent. <br><br> Your Head Girl exits, performing the proper formalities and then hurrying off to make sure the reassigned slaves get going. As $he withdraws $he <<if $HeadGirl.relationship <= -2>> @@ -124,15 +150,19 @@ and it's also obvious that they've been filling the few minutes they've been wai <<case "submissive">> catches $his lower lip behind $his teeth and gives you a blushing, sexually submissive look <<case "cumslut">> - looks you in the eye and licks $his lips lasciviously + <<if $PC.dick == 1>>focuses on your cock<<else>>looks you in the eye<</if>> and licks $his lips lasciviously <<case "humiliation">> flashes you and blushes artfully <<case "buttslut">> - cocks $his hips, pulls one buttock aside, and winks $his asshole in your direction + <<if canDoAnal($HeadGirl)>> + cocks $his hips, pulls one buttock aside, and winks $his asshole in your direction + <<else>> + looks you in the eye and gives $his booty a slap + <</if>> <<case "boobs">> looks you in the eye and gives $his boobs a little bounce <<case "pregnancy">> - looks you in the eye and traces a hand across $his belly + looks you in the eye and traces a hand across $his _belly belly <<case "dom">> gives you a cheerful, sexually challenging wink <<case "sadist">> @@ -142,124 +172,267 @@ and it's also obvious that they've been filling the few minutes they've been wai <<default>> looks at you and adds a bit of extra sway to $his hips <</switch>> - on $his way out the door. When $he's gone, your Concubine speaks up from _his2 adoring embrace of your leg. _He2 asks a little aesthetic question about one of your other bedslaves, _his2 <<if $Concubine.voice < 2>>deep voice rumbling against your knee<<elseif $Concubine.voice > 2>>high voice humming against your knee<<else>>feminine voice purring against your knee<</if>>. You chat with _him2 about how you'd like the _girl2 to look and act, ideally, and do other work while running your fingers through your Concubine's<<if $Concubine.hLength < 10>> short<</if>> hair. Your Head Girl's confident assistance managing your chattel and your Concubine's devoted comfort as you work allows you to @@.yellowgreen;be unusually productive@@ all morning. + on $his way out the door. When $he's gone, your Concubine speaks up from _his2 adoring embrace of your leg. _He2 asks a little aesthetic question about one of your other bedslaves, _his2 <<if $Concubine.voice < 2>>deep voice rumbling against your knee<<elseif $Concubine.voice > 2>>high voice humming against your knee<<else>>feminine voice purring against your knee<</if>>. You chat with _him2 about how you'd like the bedslave to look and act, ideally, and do other work while running your fingers + <<if $Concubine.bald == 0 && $Concubine.hLength > 0>> + through your Concubine's<<if $Concubine.hLength < 10>> short<</if>> hair. + <<else>> + along your Concubine's <<if $Concubine.bald == 1>>bald<<else>>shaved<</if>> head. + <</if>> + Your Head Girl's confident assistance managing your chattel and your Concubine's devoted comfort as you work allows you to @@.yellowgreen;be unusually productive@@ all morning. <<set $cash += 1000>> <</replace>> <</link>> <br><<link "Tease them while they meet with you">> <<replace "#result">> - You tell them to go ahead, $HeadGirl.slaveName first, but you flip the sheet back and pat the soft mattress on either side of you while you do. They laugh and clamber on up, $HeadGirl.slaveName first, and $he manages to drag a $HeadGirl.nipples nipple across your <<if $PC.boobs == 1>>own bare breasts<<else>>chest<</if>> as $he climbs over you. Once $he's situated under the crook of your arm, <<if $HeadGirl.boobs > 6000>>the huge weight of $his boobs pressing against your ribcage<<elseif $HeadGirl.dick > 5>>which presses $his absurd dick against your hip<<elseif $HeadGirl.energy > 95>>making the eager heat between the nympho's legs quite noticeable against your hip<<else>>$his body warm against you<</if>>, $he clears $his throat and asks your permission to make a couple of last-minute changes to slaves' assignments for the day. - <br><br> - As $he did so, you were encircling your girls in your <<if $PC.title == 1>>powerful arms<<else>>loving grip<</if>>. Cupping your Head Girl's butt in your left hand and your Concubine's in your right, you give them a good squeeze as $HeadGirl.slaveName finishes $his question. $His voice rises cutely as your marauding hand moves over the place between $his <<if $HeadGirl.butt > 6>>huge<<elseif $HeadGirl.butt > 3>>healthy<<else>>cute<</if>> buttocks and you slowly press a single malicious finger in against $his <<if $HeadGirl.anus > 2>>loose asspussy<<elseif $HeadGirl.butt > 0>>practiced asshole<<else>>virgin pucker<</if>>. $He manages to finish, but trails off into a groan, the warm, crinkled skin spasming against the teasing digit. + <<run Enunciate($HeadGirl)>> + You tell them to go ahead, $HeadGirl.slaveName first, but you flip the sheet back and pat the soft mattress on either side of you while you do. They laugh and clamber on up, $HeadGirl.slaveName first, and $he manages to drag a $HeadGirl.nipples nipple across your + <<if $PC.boobs == 1>> + own bare breasts + <<elseif $PC.title == 0>> + flat chest + <<else>> + chest + <</if>> + as $he <<if $PC.belly >= 10000 || $HeadGirl.boobs > 10000 || $HeadGirl.belly >= 5000 || $HeadGirl.dick > 20 || $HeadGirl.balls > 20>>struggles to get<<else>>climbs<</if>> over you. Once $he's situated under the crook of your arm, + <<if $HeadGirl.boobs > 25000>> + the huge weight of $his boobs pressing against your ribcage, + <<elseif $HeadGirl.belly >= 10000>> + the huge weight of $his _belly middle pressing against your body, + <<elseif $HeadGirl.dick > 4 && canAchieveErection($HeadGirl)>> + which presses $his absurd erection against your hip, + <<elseif $HeadGirl.dick > 5>> + which leaves $his absurd dick resting across your lap, + <<elseif $HeadGirl.energy > 95>> + making the eager heat between the nympho's legs quite noticeable against your hip, + <<else>> + $his body warm against you, + <</if>> + $he clears $his throat and asks your permission to make a couple of last-minute changes to slaves' assignments for the day. <br><br> - $Concubine.slaveName laughs at $him and asks _his2 own question, a little aesthetic question about one of your other bedslaves, but something you like to exercise artistic control over. _His2 giggling is cut off as _he2 has to concentrate on getting _his2 words out as you use two fingers to massage and tease the sensitive skin between _his2 ass and <<if $Concubine.vagina > -1>>the start of _his2 cunt<<elseif $Concubine.scrotum > 0>>_his2 ballsack<<else>>the base of _his2 dick<</if>>. It's $HeadGirl.slaveName's turn to laugh, which $he does throatily, $his warm breath gusting deliciously across your <<if $PC.boobs == 1>>hardening nipples<<else>>pecs<</if>>. - <<if SlaveStatsChecker.checkForLisp($HeadGirl)>> - "Thee, it'th not eathy," + As $he did so, you were encircling your girls in your <<if $arcologies[0].FSPhysicalIdealist != "unset">>powerful arms<<else>>dominant grip<<else>>loving grip<</if>>. Cupping your Head Girl's butt in your left hand and your Concubine's in your right, you give them a good squeeze as $HeadGirl.slaveName finishes $his question. $His voice rises cutely as your marauding hand moves over the + <<if $HeadGirl.butt > 10>> + endless expanse of $his backside. $He manages to finish, but trails off into a groan, the <<if Math.floor($HeadGirl.buttImplant/$HeadGirl.butt) > .60>>firm<<else>>soft<</if>> flesh quivering against your palm. <<else>> - "See, it's not easy," + place between $his <<if $HeadGirl.butt > 6>>huge<<elseif $HeadGirl.butt > 3>>healthy<<else>>cute<</if>> buttocks and you slowly + <<if canDoAnal($HeadGirl)>> + press a single malicious finger in against $his <<if $HeadGirl.anus > 2>>loose asspussy<<elseif $HeadGirl.butt > 0>>practiced asshole<<else>>virgin pucker<</if>>. $He manages to finish, but trails off into a groan, the warm, crinkled skin spasming against the teasing digit. + <<else>> + trace the perimeter of $his chastity. $He manages to finish, but trails off into a groan, $his rump tightening around the invading hand. + <</if>> <</if>> - $he breathes across you at your Concubine. <br><br> - They soon get their revenge as you give them their orders, though, moving their expert hands between your legs to give you a handjob. They do it cooperatively as you continue to play with them, letting you enjoy the delightful sensation of <<if $PC.dick == 1>>two hands working your shaft while another tickles your frenulum and a fourth massages your balls<<else>>a hand massaging your petals on either side while another delves two fingers inside you and a fourth pleasures your clit<</if>>. They crane their necks to rain kisses on your chin, neck, <<if $PC.boobs == 1>>breasts, and nipples,<<else>>and chest,<</if>> and on each other's mouths. You spring out of bed when you're satisfied, pulling your leadership with you towards the shower, and they @@.mediumaquamarine;trustingly bounce up to follow.@@ - <<set $slaves[$i].trust += 4, $slaves[$partner].trust += 4>> - <<set $slaves[$i].oralCount += 1, $slaves[$partner].oralCount += 1>> + $Concubine.slaveName laughs at $him and asks _his2 own question, a little aesthetic question about one of your other bedslaves, but something you like to exercise artistic control over. _His2 giggling is cut off as _he2 has to concentrate on getting _his2 words out as you use two fingers to massage and tease the sensitive skin between _his2 ass and <<if $Concubine.vagina > -1>>the start of _his2 cunt<<elseif $Concubine.scrotum > 0>>_his2 ballsack<<else>>the base of _his2 dick<</if>>. It's $HeadGirl.slaveName's turn to laugh, which $he does throatily, $his warm breath gusting deliciously across your <<if $PC.boobs == 1 || $PC.title == 0>>hardening nipples<<else>>pecs<</if>>. "<<S>>ee, it'<<s>> not ea<<s>>y," $he breathes across you at your Concubine. + <br><br> + They soon get their revenge as you give them their orders, though, moving their expert hands between your legs to give you a handjob. They do it cooperatively as you continue to play with them, letting you enjoy the delightful sensation of + <<if $PC.dick == 1>> + two hands working your shaft while + <<if $PC.vagina == 1>> + another massages your petals and a fourth delves two fingers inside you. + <<else>> + another tickles your frenulum and a fourth massages your balls. + <</if>> + <<else>> + a hand massaging your petals on either side while another delves two fingers inside you and a fourth pleasures your clit. + <</if>> + They crane their necks to rain kisses on your chin, neck, <<if $PC.boobs == 1>>breasts, and nipples,<<elseif $PC.title == 0>>and nipples,<<else>>and chest,<</if>> and on each other's mouths. You <<if $PC.belly < 5000>>spring<<elseif $PC.belly < 10000>>pull yourself<<else>>slowly tip your gravid bulk<</if>> out of bed when you're satisfied, pulling your leadership with you towards the shower, and they @@.mediumaquamarine;trustingly bounce up to follow.@@ + <<set $slaves[_headGirl].trust += 4, $slaves[_concubine].trust += 4>> + <<set $slaves[_headGirl].oralCount++, $slaves[_concubine].oralCount++>> <<set $oralTotal += 2>> <</replace>> <</link>> -<<if $HeadGirl.anus > 0>> - <<if $HeadGirl.vagina != 0>> - <<if $Concubine.anus > 0>> - <<if $Concubine.vagina != 0>> - <br><<link "Double penetrate them while they meet with you">> - <<replace "#result">> - You sit up and order $HeadGirl.slaveName up onto the bed, on $his back, and while $he's <<if $HeadGirl.energy > 95>>eagerly obeying<<else>>obediently getting situated<</if>>, you tell $Concubine.slaveName to ride $him, reverse cowgirl. $He straddles your Head Girl, <<if $Concubine.butt > 6>>using _his2 hands to situate _his2 huge buttocks<<elseif $Concubine.boobs > 4000>>making _his2 heavy boobs sway deliciously<<else>>carefully situating _his2 legs astride $HeadGirl.slaveName's hips.<</if>> You plant a hard kiss on $Concubine.slaveName's mouth, pressing _him2 backwards as you maneuver yourself into place<<if $PC.dick == 0>> and don a strap-on, since there isn't enough space for tribbing to work here<</if>>. - <<if $Concubine.vagina > -1>> - _He2 moans into you as _he2 feels you run <<if $PC.dick == 0>>the cool head of the phallus<<else>>your cockhead<</if>> along _his2<<if $Concubine.labia > 0>> generous<</if>> labia before plunging it inside _him2. Getting the idea, $HeadGirl.slaveName - <<if ($HeadGirl.dick > 0) && (canAchieveErection($HeadGirl))>> - <<if $HeadGirl.dick - $Concubine.anus > 2>> - gently pushes $his cock up $Concubine.slaveName's ass, since $he knows your Concubine's anus will be a little tight around $his imposing dick. - <<elseif $HeadGirl.dick - $Concubine.anus > 0>> - pushes $his cock up $Concubine.slaveName's ass, since $he knows your Concubine can take $his dick without too much trouble. - <<else>> - shoves $his cock up $Concubine.slaveName's ass, since $he knows your Concubine can take $his dick with ease. - <</if>> - <<else>> - slides a hand down and - <<if $Concubine.anus > 3>> - fists $Concubine.slaveName's loose ass, since that's what it takes to fill your Concubine's gaping asspussy. - <<elseif $Concubine.anus == 3>> - starts to fuck $Concubine.slaveName's soft anus with three fingers. - <<elseif $Concubine.anus == 2>> - starts to fuck $Concubine.slaveName's asspussy with two fingers. - <<else>> - starts to fuck $Concubine.slaveName's tight little backdoor with a finger. - <</if>> - <</if>> - <<if $PC.dick == 1>>You feel the penetration through $Concubine.slaveName's vaginal walls, an incredible sensation.<</if>> +<<if ((canDoAnal($HeadGirl) && $HeadGirl.anus > 0) || (canDoVaginal($HeadGirl) && $HeadGirl.vagina > 0)) && ((canDoAnal($Concubine) && $Concubine.anus > 0) || (canDoVaginal($Concubine) && $Concubine.vagina > 0)) && $PC.belly+$Concubine.belly < 50000 && $PC.belly+$HeadGirl.belly < 50000>> + <br><<link "Double penetrate them while they meet with you">> + <<replace "#result">> + You sit up and order $HeadGirl.slaveName up onto the bed, on $his back, and while $he's <<if $HeadGirl.energy > 95>>eagerly obeying<<else>>obediently getting situated<</if>>, you tell $Concubine.slaveName to ride $him, reverse cowgirl. $He straddles your Head Girl, + <<if $Concubine.butt > 6>> + using _his2 hands to situate _his2 huge buttocks. + <<elseif $Concubine.belly >= 10000>> + making sure _his2 _bellyCon belly is comfortably positioned. + <<elseif $Concubine.boobs > 4000>> + making _his2 heavy boobs sway deliciously. + <<else>> + carefully situating _his2 legs astride $HeadGirl.slaveName's hips. + <</if>> + You plant a hard kiss on $Concubine.slaveName's mouth, pressing _him2 backwards <<if $HeadGirl.belly >= 10000>>into $HeadGirl.slaveName's taut belly <</if>>as you maneuver yourself into place<<if $PC.dick == 0>> and don a strap-on, since there isn't enough space for tribbing to work here<</if>>. + <<if (canDoVaginal($Concubine) && $Concubine.vagina > 0)>> + /* this is up here to give the PC priority on pregnancy */ + <<if canImpreg($slaves[_concubine], $PC)>> + <<= knockMeUp($slaves[_concubine], 10, 0, -1, 1)>> + <</if>> + <<set $slaves[_concubine].vaginalCount++, $vaginalTotal++>> + _He2 moans into you as _he2 feels you run <<if $PC.dick == 0>>the cool head of the phallus<<else>>your cockhead<</if>> along _his2<<if $Concubine.labia > 0>> generous<</if>> labia before plunging it inside _him2. Getting the idea, $HeadGirl.slaveName + <<if (canPenetrate($HeadGirl))>> + <<if (canDoAnal($Concubine) && $Concubine.anus > 0)>> + <<if $HeadGirl.dick - $Concubine.anus > 2>> + gently pushes $his cock up $Concubine.slaveName's ass, since $he knows your Concubine's anus will be a little tight around $his imposing dick. + <<elseif $HeadGirl.dick - $Concubine.anus > 0>> + pushes $his cock up $Concubine.slaveName's ass, since $he knows your Concubine can take $his dick without too much trouble. <<else>> - Getting the idea, $HeadGirl.slaveName - <<if ($HeadGirl.dick > 0) && (canAchieveErection($HeadGirl))>> - <<if $HeadGirl.dick - $Concubine.anus > 2>> - gently pushes $his cock up $Concubine.slaveName's ass, since $he knows your Concubine's anus will be a little tight around $his imposing dick. - <<elseif $HeadGirl.dick - $Concubine.anus > 0>> - pushes $his cock up $Concubine.slaveName's ass, since $he knows your Concubine can take $his dick without too much trouble. - <<else>> - shoves $his cock up $Concubine.slaveName's ass, since $he knows your Concubine can take $his dick with ease. - <</if>> - Then $he grabs $Concubine.slaveName behind the knees and spreads _his2 legs as far as they'll go, rotating _his2 hips to position _him2 for another phallus up the butt. - <<else>> - slides a hand down and - <<if $Concubine.anus > 3>> - fists $Concubine.slaveName's loose ass, since that's what it takes to fill your Concubine's gaping asspussy. - <<elseif $Concubine.anus == 3>> - starts to fuck $Concubine.slaveName's soft anus with three fingers. - <<elseif $Concubine.anus == 2>> - starts to fuck $Concubine.slaveName's asspussy with two fingers. - <<else>> - starts to fuck $Concubine.slaveName's tight little backdoor with a finger. - <</if>> - Then $he grabs $Concubine.slaveName behind a knee with $his other hand and rotates _his2 hips to position _him2 for additional anal penetration. - <</if>> - Your Concubine shivers and moans as _his2 sphincter accommodates <<if $PC.dick == 1>>your cock<<else>>the strap-on<</if>>, too. + shoves $his cock up $Concubine.slaveName's ass, since $he knows your Concubine can take $his dick with ease. <</if>> - <br><br> - You start to fuck _him2, and then ask _him2 what _he2 needed from you. The poor girl has to concentrate hard to remember why _he2's here through the waterfall of sensations, but _he2 manages it eventually, gasping out a little aesthetic question about one of your other bedslaves. You give _him2 _his2 answer and make _him2 repeat it back. When you're satisfied, you grab _his2 ankles and pull them up, sliding _him2 off your <<if $PC.dick == 1>>pole<<else>>strap-on<</if>> and $HeadGirl.slaveName's <<if ($HeadGirl.dick > 0) && (canAchieveErection($HeadGirl))>>dick<<else>>penetrating fingers<</if>> with a lovely lewd noise. After appreciating the sight of _his2 well-fucked <<if $Concubine.vagina > -1>>holes<<else>>hole<</if>>, you swing _his2 ass over and deposit it on the bed, producing a grunt as the drop forces the wind out of _him2. Grabbing your Head Girl in turn, you yank $him towards you, give the giggling slave a kiss, seize $his <<if $HeadGirl.weight > 10>>plush<<elseif $HeadGirl.hips > 0>>broad<<else>>trim<</if>> hips and lift $him onto $Concubine.slaveName's lap. $He takes - <<if $Concubine.vagina > -1>> - <<if $HeadGirl.vagina > -1>> - $his own double pounding, pussy and ass, - <<else>> - double anal instead, since unlike your Concubine $he only has the one lower fuckhole, - <</if>> - <<else>> - <<if $HeadGirl.vagina > -1>> - double penetration instead, since unlike your Concubine $he has two lower fuckholes, - <<else>> - $his own double anal pounding, - <</if>> + <<if $PC.dick == 1>>You feel the penetration through $Concubine.slaveName's vaginal walls, an incredible sensation.<</if>> + <<if canImpreg($slaves[_concubine], $slaves[_headGirl])>> + <<= knockMeUp($slaves[_concubine], 10, 1, $slaves[_headGirl].ID, 1)>> <</if>> - while taking $his turn getting instructions. $He manages to ask your permission to make a couple of last-minute changes to slaves' assignments for the day. Having thus given your leadership guidance, you jump up for a shower, crooking a finger to indicate that they should follow. They @@.hotpink;trail obediently after you,@@ a bit sore, their holes dripping - <<if ($HeadGirl.vagina > -1) || ($HeadGirl.vagina > -1)>> - <<if ($PC.dick == 1) || ($HeadGirl.balls > 0) || ($Concubine.balls > 0)>> - cum, pussyjuice, and lube. - <<else>> - cum and lube. - <</if>> + <<set $slaves[_concubine].analCount++, $analTotal++>> + <<else>> + gently eases $his cock in beside you.<<if $PC.dick == 1>> The added friction against you in $Concubine.slaveName's vagina feels incredible.<</if>> + <<set $slaves[_concubine].vaginalCount++, $vaginalTotal++>> + <<if canImpreg($slaves[_concubine], $slaves[_headGirl])>> + <<= knockMeUp($slaves[_concubine], 10, 0, $slaves[_headGirl].ID, 1)>> + <</if>> + <</if>> + <<set $slaves[_headGirl].penetrativeCount++, $penetrativeTotal++>> + <<else>> + slides a hand down and + <<if (canDoAnal($Concubine) && $Concubine.anus > 0)>> + <<if $Concubine.anus > 3>> + fists $Concubine.slaveName's loose ass, since that's what it takes to fill your Concubine's gaping asspussy. + <<elseif $Concubine.anus == 3>> + starts to fuck $Concubine.slaveName's soft anus with three fingers. + <<elseif $Concubine.anus == 2>> + starts to fuck $Concubine.slaveName's asspussy with two fingers. <<else>> - <<if ($PC.dick == 1) || ($HeadGirl.balls > 0) || ($Concubine.balls > 0)>> - cum and lube. - <<else>> - lube. - <</if>> + starts to fuck $Concubine.slaveName's tight little backdoor with a finger. + <</if>> + <<if $PC.dick == 1>>You feel the penetration through $Concubine.slaveName's vaginal walls, an incredible sensation.<</if>> + <<set $slaves[_concubine].analCount++, $analTotal++>> + <<else>> + gently eases a few fingers in beside you.<<if $PC.dick == 1>> The added sensation in $Concubine.slaveName's vagina feels incredible.<</if>> + <<set $slaves[_concubine].vaginalCount++, $vaginalTotal++>> + <</if>> + <</if>> + <<else>> + /* this is up here to give the PC priority on pregnancy */ + <<if canImpreg($slaves[_concubine], $PC)>> + <<= knockMeUp($slaves[_concubine], 10, 1, -1, 1)>> + <</if>> + <<set $slaves[_concubine].analCount += 2, $analTotal += 2>> + Getting the idea, $HeadGirl.slaveName + <<if (canPenetrate($HeadGirl))>> + <<if $HeadGirl.dick - $Concubine.anus > 2>> + gently pushes $his cock up $Concubine.slaveName's ass, since $he knows your Concubine's anus will be a little tight around $his imposing dick. + <<elseif $HeadGirl.dick - $Concubine.anus > 0>> + pushes $his cock up $Concubine.slaveName's ass, since $he knows your Concubine can take $his dick without too much trouble. + <<else>> + shoves $his cock up $Concubine.slaveName's ass, since $he knows your Concubine can take $his dick with ease. + <</if>> + Then $he grabs $Concubine.slaveName behind the knees and spreads _his2 legs as far as they'll go, rotating _his2 hips to position _him2 for another phallus up the butt. + <<set $slaves[_headGirl].penetrativeCount++, $penetrativeTotal++>> + <<if canImpreg($slaves[_concubine], $slaves[_headGirl])>> + <<= knockMeUp($slaves[_concubine], 10, 1, $slaves[_headGirl].ID, 1)>> + <</if>> + <<else>> + slides a hand down and + <<if $Concubine.anus > 3>> + fists $Concubine.slaveName's loose ass, since that's what it takes to fill your Concubine's gaping asspussy. + <<elseif $Concubine.anus == 3>> + starts to fuck $Concubine.slaveName's soft anus with three fingers. + <<elseif $Concubine.anus == 2>> + starts to fuck $Concubine.slaveName's asspussy with two fingers. + <<else>> + starts to fuck $Concubine.slaveName's tight little backdoor with a finger. + <</if>> + Then $he grabs $Concubine.slaveName behind a knee with $his other hand and rotates _his2 hips to position _him2 for additional anal penetration. + <</if>> + Your Concubine shivers and moans as _his2 sphincter accommodates <<if $PC.dick == 1>>your cock<<else>>the strap-on<</if>>, too. + <</if>> + <br><br> + You start to fuck _him2, and then ask _him2 what _he2 needed from you. The poor _girl2 has to concentrate hard to remember why _he2's here through the waterfall of sensations, but _he2 manages it eventually, gasping out a little aesthetic question about one of your other bedslaves. You give _him2 _his2 answer and make _him2 repeat it back. When you're satisfied, you grab _his2 ankles and pull them up, sliding _him2 off your <<if $PC.dick == 1>>pole<<else>>strap-on<</if>> and $HeadGirl.slaveName's <<if (canPenetrate($HeadGirl))>>dick<<else>>penetrating fingers<</if>> with a lovely lewd noise. After appreciating the sight of _his2 well-fucked <<if ((canDoAnal($Concubine) && $Concubine.anus > 0) && (canDoVaginal($Concubine) && $Concubine.vagina > 0))>>holes<<else>>hole<</if>>, you swing _his2 ass over and deposit it on the bed, producing a grunt as the drop forces the wind out of _him2. Grabbing your Head Girl in turn, you yank $him towards you, give the giggling slave a kiss, seize $his + <<if $HeadGirl.hips > 2>> + breeding + <<elseif $HeadGirl.weight > 95>> + padded + <<elseif $HeadGirl.weight > 10>> + plush + <<elseif $HeadGirl.hips > 1>> + broad + <<elseif $HeadGirl.hips >= 0>> + curvy + <<else>> + trim + <</if>> + hips and lift $him onto $Concubine.slaveName's lap. $He takes + <<if (canDoVaginal($HeadGirl) && $HeadGirl.vagina > 0)>> + <<if (canDoVaginal($Concubine) && $Concubine.vagina > 0)>> + <<if (canDoAnal($HeadGirl) && $HeadGirl.anus > 0)>> + $his own double pounding, pussy and ass, + <<else>> + $his own double pounding, + <</if>> + <<else>> + <<if (canDoAnal($HeadGirl) && $HeadGirl.anus > 0)>> + double penetration instead, since unlike your Concubine $he has two lower fuckholes, + <<else>> + $his own double pounding, + <</if>> + <</if>> + <<else>> + <<if (canDoVaginal($Concubine) && $Concubine.vagina > 0)>> + double anal instead, since unlike your Concubine + <<if $HeadGirl.vagina == -1>> + $he only has the one lower fuckhole, + <<else>> + $his pussy is off limits, + <</if>> + <<else>> + $his own double anal pounding, + <</if>> + <</if>> + while taking $his turn getting instructions. $He manages to ask your permission to make a couple of last-minute changes to slaves' assignments for the day. Having thus given your leadership guidance, you jump up for a shower, crooking a finger to indicate that they should follow. They @@.hotpink;trail obediently after you,@@ a bit sore, their holes dripping + <<if ($HeadGirl.vagina > -1) || ($HeadGirl.vagina > -1)>> + <<if ($PC.dick == 1) || ($HeadGirl.balls > 0) || ($Concubine.balls > 0)>> + cum, pussyjuice, and lube. + <<else>> + pussyjuice and lube. + <</if>> + <<else>> + <<if ($PC.dick == 1) || ($HeadGirl.balls > 0) || ($Concubine.balls > 0)>> + cum and lube. + <<else>> + lube. + <</if>> + <</if>> + <<set $slaves[_headGirl].devotion += 4, $slaves[_concubine].devotion += 4>> + /* sex count cleanup for $headGirl since the above block is not pretty */ + <<if (canDoVaginal($HeadGirl) && $HeadGirl.vagina > 0)>> + <<if canImpreg($slaves[_headGirl], $PC)>> + <<= knockMeUp($slaves[_headGirl], 10, 0, -1, 1)>> + <</if>> + <<set $slaves[_headGirl].vaginalCount++, $vaginalTotal++>> + <<if (canPenetrate($Concubine))>> + <<if (canDoAnal($HeadGirl) && $HeadGirl.anus > 0)>> + <<if canImpreg($slaves[_headGirl], $slaves[_concubine])>> + <<= knockMeUp($slaves[_headGirl], 10, 1, $slaves[_concubine].ID, 1)>> + <</if>> + <<set $slaves[_headGirl].analCount++, $analTotal++>> + <<else>> + <<set $slaves[_headGirl].vaginalCount++, $vaginalTotal++>> + <<if canImpreg($slaves[_headGirl], $slaves[_concubine])>> + <<= knockMeUp($slaves[_headGirl], 10, 0, $slaves[_concubine].ID, 1)>> <</if>> - <<set $slaves[$i].devotion += 4, $slaves[$partner].devotion += 4>> - <<set $activeSlave = $slaves[$i]>> - <<= BothVCheck(2, 1)>> - <<set $slaves[$i] = $activeSlave>> - <<= PartnerVCheck(2,1)>> - <</replace>> - <</link>> + <</if>> + <<set $slaves[_concubine].penetrativeCount++, $penetrativeTotal++>> + <<else>> + <<if (canDoAnal($HeadGirl) && $HeadGirl.anus > 0)>> + <<set $slaves[_headGirl].analCount++, $analTotal++>> + <<else>> + <<set $slaves[_headGirl].vaginalCount++, $vaginalTotal++>> + <</if>> + <</if>> + <<else>> + <<if canImpreg($slaves[_headGirl], $PC)>> + <<= knockMeUp($slaves[_headGirl], 10, 1, -1, 1)>> + <</if>> + <<set $slaves[_headGirl].analCount += 2, $analTotal += 2>> + <<if (canPenetrate($Concubine))>> + <<set $slaves[_headGirl].penetrativeCount++, $penetrativeTotal++>> + <<if canImpreg($slaves[_headGirl], $slaves[_concubine])>> + <<= knockMeUp($slaves[_headGirl], 10, 1, $slaves[_concubine].ID, 1)>> + <</if>> <</if>> <</if>> - <</if>> + <</replace>> + <</link>> <</if>> </span> diff --git a/src/uncategorized/randomNonindividualEvent.tw b/src/uncategorized/randomNonindividualEvent.tw index d7ef0a2ec988e644ff1bd2b5cba2a5aa73d09b1d..795540c57673efe5297cb676c0c9d9b2e3872d25 100644 --- a/src/uncategorized/randomNonindividualEvent.tw +++ b/src/uncategorized/randomNonindividualEvent.tw @@ -384,12 +384,8 @@ <<if ($Concubine != 0)>> <<if $fuckSlaves > 1>> - <<if canTalk($Concubine)>> - <<if canSee($Concubine)>> - <<if canWalk($Concubine)>> - <<set $events.push("PE headgirl concubine")>> - <</if>> - <</if>> + <<if canTalk($Concubine) && canSee($Concubine) && canHear($Concubine) && $Concubine.fetish != "mindbroken" && $Concubine.amp != 1>> + <<set $events.push("PE headgirl concubine")>> <</if>> <</if>> <</if>> diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw index dfbb6af83bf4cb5d5d7c682e674e9bb235dfaa11..b34f0a06bc6b3e8d42db0721149211e5beb58026 100644 --- a/src/uncategorized/slaveInteract.tw +++ b/src/uncategorized/slaveInteract.tw @@ -954,7 +954,7 @@ | <<link "Cruel retirement counter">><<set $activeSlave.collar = "cruel retirement counter">><<replace "#collar">>$activeSlave.collar<</replace>><</link>> <</if>> | <<link "Uncomfortable leather">><<set $activeSlave.collar = "uncomfortable leather">><<replace "#collar">>$activeSlave.collar<</replace>><</link>> - <<if $activeSlave.preg > -1 && $seePreg != 0>> + <<if $activeSlave.preg > -1 && ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1) && $seePreg != 0>> | <<link "Pregnancy biometrics">><<set $activeSlave.collar = "preg biometrics">><<replace "#collar">>$activeSlave.collar<</replace>><</link>> <</if>> | <<link "Shock punishment">><<set $activeSlave.collar = "shock punishment">><<replace "#collar">>$activeSlave.collar<</replace>><</link>> diff --git a/src/uncategorized/wardrobeUse.tw b/src/uncategorized/wardrobeUse.tw index dbc25bd77563bd71cec9aa4a9106df655bfb8abf..93cc0311d09dd7889dd09e1ee4eecd254504da87 100644 --- a/src/uncategorized/wardrobeUse.tw +++ b/src/uncategorized/wardrobeUse.tw @@ -847,7 +847,7 @@ Clothes: ''<span id="clothes">$activeSlave.clothes</span>.'' <<replace "#collar">>$activeSlave.collar<</replace>> <<replace "#collarDescription">><br>//<<collarDescription>>//<</replace>> <</link>> -<<if $activeSlave.preg > -1>> +<<if $activeSlave.preg > -1 && ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1) && $seePreg != 0>> | <<link "Pregnancy biometrics">> <<set $activeSlave.collar = "preg biometrics">> <<replace "#collar">>$activeSlave.collar<</replace>> diff --git a/src/utility/descriptionWidgets.tw b/src/utility/descriptionWidgets.tw index 11a3715090e12f4f9b076783e96849977987648d..11dd3d0419c8886f90e6a0140dacb4dfa3ac900d 100644 --- a/src/utility/descriptionWidgets.tw +++ b/src/utility/descriptionWidgets.tw @@ -255,6 +255,34 @@ <</widget>> +<<widget "geneticQuirkAssessment">> + +<<if $geneticMappingUpgrade == 1>> + <<if $activeSlave.geneticQuirks.fertility == 2 && $activeSlave.geneticQuirks.hyperFertility == 2>> + $He has a unique genetic condition resulting in inhumanly high + <<if $activeSlave.ovaries == 1 || $activeSlave.mpreg == 1>> + fertility; risky intercourse will result in multiple pregnancy. + <<else>> + fertility. + <</if>> + <<elseif $activeSlave.geneticQuirks.hyperFertility == 2>> + $He prone to extreme + <<if $activeSlave.ovaries == 1 || $activeSlave.mpreg == 1>> + fertility and will likely undergo multiple pregnancy. + <<else>> + fertility. + <</if>> + <<elseif $activeSlave.geneticQuirks.fertility == 2>> + $He is naturally + <<if $activeSlave.ovaries == 1 || $activeSlave.mpreg == 1>> + fertile and prone to having twins. + <<else>> + fertile. + <</if>> + <</if>> +<</if>> + +<</widget>> <<widget "brandDescription">>