diff --git a/src/005-passages/eventsPassages.js b/src/005-passages/eventsPassages.js index 040a03f06145fc905a8652d27498aaf173ad8ea5..79d8fd7a63c297b7213855ab2ddf769749d1b125 100644 --- a/src/005-passages/eventsPassages.js +++ b/src/005-passages/eventsPassages.js @@ -86,3 +86,13 @@ new App.DomPassage("JS Random Event", return d; } ); + +/* ### Player Events ### */ + +new App.DomPassage("P rivalry hostage", + () => { + V.nextButton = "Continue"; + V.nextLink = "Nonrandom Event"; + return App.Events.pRivalryHostage(); + } +); diff --git a/src/events/PE/pRivalryHostage.js b/src/events/PE/pRivalryHostage.js new file mode 100644 index 0000000000000000000000000000000000000000..3f0bb873181fa4f81f407a62418660efde6da6b4 --- /dev/null +++ b/src/events/PE/pRivalryHostage.js @@ -0,0 +1,659 @@ +App.Events.pRivalryHostage = function() { + V.hostageAnnounced = 1; + V.hostage = createHostage(); + const el = new DocumentFragment(); + App.Events.drawEventArt(el, V.hostage); + + switch (V.rivalryFS) { + case "Maturity Preferentialism": + case "Petite Admiration": + case "Statuesque Glorification": + case "Youth Preferentialism": + V.hostageWife = GenerateNewSlave("XX"); + } + + const { + He, His, + he, him, himself, his, girl, woman + } = getPronouns(V.hostage); + const { + HeR, + heR, hisR + } = getPronouns({pronoun: (V.rivalGender === 2) ? 1 : 0}).appendSuffix("R"); + const {girlU} = getNonlocalPronouns(V.seeDicks).appendSuffix("U"); + const {womanP} = getPronouns(V.PC).appendSuffix("P"); + const {woman2, girl2, he2, his2} = getPronouns(V.hostageWife || {pronoun : 0}).appendSuffix("2"); + let r = []; + + let _closer = 0; + r.push(`Only a few days into your inter-arcology war, you receive a video message from your rival. Once ${V.assistant.name} is satisfied that the file is clean, you clear your office and pull it up. To your surprise, there are two faces on your desk, not one. One of them is your rival, and after a moment, you remember who the other is. You recognize ${him} from your`); + if (V.PC.career === "wealth" || V.PC.career === "trust fund" || V.PC.career === "rich kid") { + if (V.PC.career === "wealth" || V.PC.career === "trust fund" || V.PC.actualAge > 16) { + r.push(`time as a wealthy ${womanP} of leisure. ${He} was a pretty little party ${girl} who ran in those circles. You were never particularly close,`); + } else if (V.PC.career === "rich kid") { + r.push(`time as a child with way too much money on hand. ${He} was a pretty little party ${girl},`); + if (V.hostage.actualAge >= V.PC.actualAge+6) { + r.push(`only a handful of years your senior, that showed you what it meant to really let loose.`); + } else { + r.push(`around your age, that you spent a lot of time with.`); + } + r.push(`You can't say that you've kept in touch,`); + _closer = 1; + } + } else if (V.PC.career === "escort") { + r.push(`time as a ${womanP} of sexual promiscuity. ${He} was a pretty little slut who ran in the same sex circles. You were never particularly close,`); + } else if (V.PC.career === "servant") { + r.push(`time as a ${womanP} of servitude. ${He} was a`); + if (V.PC.title === 1) { + r.push(`maid`); + } else { + r.push(`fellow maid`); + } + r.push(`under your late Master.`); + if (V.PC.title === 0) { + r.push(`You may have delivered several of ${his} children, but you`); + } else { + r.push(`You`); + } + r.push(`were never particularly close,`); + } else if (V.PC.career === "gang") { + r.push(`time as a gang leader. ${He} was one of your best, yet you never got close enough,`); + } else if (V.PC.career === "BlackHat") { + r.push(`time as a hacker for hire. ${He} supported you on jobs, even sent some choice pictures of ${himself}, but you were never really close,`); + } else if (V.PC.career === "capitalist") { + r.push(`career in venture capital. ${He} was a rising manager, young, attractive, and bright. You never worked particularly closely with ${him},`); + } else if (V.PC.career === "mercenary") { + r.push(`career as a mercenary. ${He} was in logistical support, and was clever and pretty, but without the essential hardness. You were never that close,`); + } else if (V.PC.career === "engineer") { + r.push(`career as an arcology engineer. ${He} was a glorified sales${woman}, with the gorgeous looks and extreme intelligence necessary to sell entire arcologies. You were never close,`); + } else if (V.PC.career === "medicine") { + r.push(`career in medicine. ${He} was a surgical nurse, one of the best. ${He} was smart, pretty, and ${he} had sure hands. You were never that close,`); + } else if (V.PC.career === "slaver") { + r.push(`career as a slaver. ${He} was a guard in one of the slave receiving pens, and a notorious one, at that. Nobody was quite as eager to break in new slaves as ${he} was. You were never that close,`); + } else if (V.PC.career === "celebrity") { + r.push(`time as a minor celebrity. ${He} was a pretty little groupie who flitted from entourage to entourage. You were never particularly close,`); + } else if (V.PC.career === "arcology owner") { + r.push(`time owning another arcology. ${He} was a prominent citizen who supported your government. You were never particularly close,`); + } + if (_closer !== 1) { + r.push(`but you do remember ${him}, and your rival knows it. This is obviously the best ${heR} could come up with to provoke an emotional reaction.`); + } else { + r.push(`but you were close to ${him}, and your rival knows it.${HeR} clearly did ${hisR} research when coming up with a way to provoke an emotional reaction.`); + } + + App.Events.addParagraph(el, r); + r = []; + + r.push(`"Hello, ${PlayerName()}," your rival sneers. "Sorry to pull you away from`); + switch (V.rivalryFS) { + case "Racial Subjugationism": + r.push(`whipping some poor ${V.arcologies[0].FSSubjugationistRace} ${girlU}'s back bloody,`); + break; + case "Racial Supremacism": + r.push(`blowing your ${V.arcologies[0].FSSubjugationistRace} girls, or whatever it is you do with your spare time,`); + break; + case "Gender Radicalism": + r.push(`buttfucking your catamites, or whatever it is you do with your spare time,`); + break; + case "Gender Fundamentalism": + r.push(`teatime with your slave wives,`); + break; + case "Repopulation Focus": + r.push(`rolling around in the afterbirth, or whatever it is you do with your spare time,`); + break; + case "Eugenics": + r.push(`circle jerking with your "elites", or whatever it is you do with your spare time,`); + break; + case "Paternalism": + r.push(`handholding time with your slaves,`); + break; + case "Degradationism": + r.push(`stitching your name into some poor ${girlU}'s taint, or whatever it is you do with your spare time,`); + break; + case "Body Purism": + r.push(`playing house with your perfect pure little angels, or whatever it is you do with your spare time,`); + break; + case "Transformation Fetishism": + r.push(`stuffing silicone up some poor ${girlU}'s nostrils,`); + break; + case "Youth Preferentialism": + r.push(`your horrible schoolgirl fantasy playtime,`); + break; + case "Maturity Preferentialism": + r.push(`the world's leading collection of saggy tits,`); + break; + case "Slimness Enthusiasm": + r.push(`your pathological collection of flat chested bitches,`); + break; + case "Asset Expansionism": + r.push(`your disgusting breast monsters,`); + break; + case "Pastoralism": + r.push(`your most flatulent cowgirls,`); + break; + case "Physical Idealism": + r.push(`your sweaty, spandexed throwback collection,`); + break; + case "Hedonistic Decadence": + r.push(`your greasy, flatulent mounds of fat,`); + break; + case "Chattel Religionism": + r.push(`your afternoon prayer meeting,`); + break; + case "Multiculturalism": + r.push(`whatever it is you do to liven up your boring arcology,`); + break; + case "Roman Revivalism": + r.push(`feeding slaves to the lions, or whatever it is you do with your spare time,`); + break; + case "Aztec Revivalism": + r.push(`sacrificing slaves to the gods, or whatever it is you do with your spare time,`); + break; + case "Egyptian Revivalism": + r.push(`your latest experiment in exactly how disgusting incest can possibly be,`); + break; + case "Edo Revivalism": + r.push(`your katana polishing, or whatever it is you do with your spare time,`); + break; + case "Arabian Revivalism": + r.push(`your hookah sucking,`); + break; + case "Chinese Revivalism": + r.push(`your footbinding,`); + break; + case "Intellectual Dependency": + r.push(`tard wrangling, or whatever it is you do with your spare time,`); + break; + case "Slave Professionalism": + r.push(`being talked down to by your own slaves, or whatever it is you do with your spare time,`); + break; + case "Petite Admiration": + r.push(`tripping over all those midgets you're obsessed with,`); + break; + case "Statuesque Glorification": + r.push(`those face high crotches you love,`); + break; + default: + r.push(`whatever it is you do with your spare time,`); + } + r.push(`but look what I have here! I just acquired ${him} recently. Lovely, isn't ${he}? I know ${he} wasn't important to you, but ${he} <em>is</em> a reminder of who you were. I think ${he} must have been your type." Your rival turns to the slave and continues. "While we have our little war,`); + switch (V.rivalryFS) { + case "Racial Subjugationism": + r.push(`I'm going to treat ${him} well. Train ${him}. ${He}'s a fine Head Girl prospect, don't you think? ${He}'ll have lots of nice ${V.arcologies[0].FSSubjugationistRace} girls to make love to whenever ${he} wants. Isn't that right, ${SlaveFullName(V.hostage)}?" The slave nods uncertainly.`); + break; + case "Racial Supremacism": + r.push(`I'm going to destroy ${him}. ${He}'s got a whipping post with ${his} name on it, right between a couple of ${V.arcologies[0].FSSupremacist} bitches. Isn't that right, ${SlaveFullName(V.hostage)}?" The slave begins to scream, and the noise goes on and on as the slave is tied up and scourged.`); + break; + case "Gender Radicalism": + r.push(`I'm going to treat ${him} well. Train ${him}. Teach ${him} ${his} proper role in society, and make ${him} happy here. Isn't that right, ${V.hostage.slaveName}?" The slave nods uncertainly.`); + break; + case "Gender Fundamentalism": + r.push(`${He}'s going to be my special pet. ${He}'ll have everything ${he} could ever want, as long as ${he} has a dick up ${his} ass. Isn't that right, ${SlaveFullName(V.hostage)}?" The slave nods hesitantly, but with evident arousal.`); + break; + case "Paternalism": + r.push(`I'm going to destroy ${him}. Holes first, of course. I'll have to get more inventive after that, and I'll leave ${his} vocal cords for last. That way, ${he}'ll be able to beg. Isn't that right, ${SlaveFullName(V.hostage)}?" The slave begins to scream, and the noise goes on and on. And on.`); + break; + case "Repopulation Focus": + r.push(`I'm going to ruin ${his} womb, making sure ${he} can never have children again. I bet you spent lots of nights fantasizing about ${him} with a huge belly didn't you?`); + break; + case "Eugenics": + if (V.seeHyperPreg === 1) { + r.push(`I'm going to have ${him} knocked up; not with my seed, of course, but the seed of the lowest of the low. I'm also going to fill ${him} with the most powerful experimental fertility drugs out there. ${He}'ll have so many children shoved into ${his} poor womb ${he}'ll be bursting at the seams. But ${he}'ll enjoy that, won't you ${SlaveFullName(V.hostage)}?" The slave nods hesitantly, but with evident arousal.`); + } else { + r.push(`I'm going to have ${him} knocked up; not with my seed, of course, but the seed of the lowest of the low. I'm also going to fill ${him} with the most powerful fertility drugs I can get. ${His} poor little womb will be stretched to the limit with society's worst. But ${he}'ll enjoy that, won't you ${SlaveFullName(V.hostage)}?" The slave nods hesitantly, but with evident arousal.`); + } + break; + case "Degradationism": + r.push(`${He}'s going to be my lover. ${He}'ll have everything ${he} could ever want, and I'll be sure to let ${him} know all about what you do to your slaves. Isn't that right, ${SlaveFullName(V.hostage)}?" The slave nods uncertainly.`); + break; + case "Body Purism": + r.push(`I'm going to give ${him} a nice pair of fake tits. No reason to be excessively clever when I can just make ${his} tits so huge ${he} won't be able to walk. Isn't that right, ${SlaveFullName(V.hostage)}?" The slave begins to sob.`); + break; + case "Transformation Fetishism": + r.push(`${He}'s going to be my lover. I'll be sure to let ${him} know all about what you do to your slaves, and rest assured, I'll never treat ${him} that way. Isn't that right, ${SlaveFullName(V.hostage)}?" The slave nods uncertainly.`); + break; + case "Youth Preferentialism": + r.push(`I've set ${him} up with a nice motherly ${woman2} already. I believe they'll be a perfect match. Isn't that right, ${SlaveFullName(V.hostage)}?" The slave nods uncertainly.`); + break; + case "Maturity Preferentialism": + r.push(`I've set ${him} up with a nice young ${girl2} already. I believe they'll be a perfect match. Isn't that right, ${SlaveFullName(V.hostage)}?" The slave nods uncertainly.`); + break; + case "Slimness Enthusiasm": + r.push(`I think I'll make ${his} IV line permanent. After all, ${he}'s never going off breast growth hormones. I'd estimate ${he} shouldn't be able to walk within a month. Isn't that right, ${SlaveFullName(V.hostage)}?" The slave begins to sob.`); + break; + case "Asset Expansionism": + r.push(`${He}'s going to be my lover. I'll be sure to let ${him} know all about what you do to your slaves, and rest assured, I'll never give ${him} growth hormones, not one single dose. Isn't that right, ${SlaveFullName(V.hostage)}?" The slave nods uncertainly.`); + break; + case "Pastoralism": + r.push(`${He}'s going to be my spotter. Girls should be strong, smoking hot ladies, not disgusting cows. Isn't that right, ${SlaveFullName(V.hostage)}?" The slave nods uncertainly.`); + break; + case "Cummunism": + r.push(`${He}'s going to be my personal milk dispenser. I shouldn't have to chain ${him} to my desk after the first month, since ${his} udders will pin ${him} in place. Isn't that right, ${SlaveFullName(V.hostage)}?" The slave begins to sob.`); + break; + case "Physical Idealism": + r.push(`${He}'s going to learn to enjoy yourself. I'm going to force ${his} face full of food, ${his} cunt full of dicks and discover ${his} deepest, darkest desires. Wouldn't you like that, ${SlaveFullName(V.hostage)}?" The slave begins to sob. "To start, how about a weigh in? Sixty three and a half kilograms, such a pity, but don't worry, I'll have ${him} nice and plump soon enough."`); + break; + case "Hedonistic Decadence": + r.push(`${He}'s going to be my spotter. Girls should be strong, smoking hot ladies, not disgusting obese slobs. Isn't that right, ${SlaveFullName(V.hostage)}?" The slave nods uncertainly.`); + break; + case "Chattel Religionism": + r.push(`${He}'s going to be the perfect courtesan. No preaching, no praying, just good, clean sex for money. Isn't that right, ${SlaveFullName(V.hostage)}?" The slave nods uncertainly.`); + break; + case "Multiculturalism": + r.push(`${He}'s going to be the ideal holy whore. Thousands of citizens are going to find rapture inside ${him}. Isn't that right, ${SlaveFullName(V.hostage)}?" The slave nods uncertainly.`); + break; + case "Intellectual Dependency": + r.push(`${He}'s going to be a skilled courtesan. ${He}'ll know how to best please ${his} partners, and most importantly, ${he}'ll perfectly understand ${his} place in society.`); + if (V.hostage.intelligence < 0) { + r.push(`Shame ${he}'s an idiot though. But ${he} can learn and improve still, I'll see to that.`); + } + r.push(`Isn't that right, ${SlaveFullName(V.hostage)}?" The slave nods begrudgingly.`); + break; + case "Slave Professionalism": + r.push(`${He}'s going to become a moron${(V.hostage.intelligence < 0) ? `, though ${he} isn't exactly smart to begin with`:``}. No time for higher thought when all ${his} brain power is caught up with how to satisfy ${his} raging libido. Isn't that right, ${SlaveFullName(V.hostage)}?" The slave begins to sob.`); + break; + case "Petite Admiration": + r.push(`I've set ${him} up with a particularly lovely giant. I believe they'll be a perfect match, even though ${he}'s half ${his2} size. Isn't that right, ${SlaveFullName(V.hostage)}?" The slave nods uncertainly.`); + break; + case "Statuesque Glorification": + r.push(`I've set ${him} up with a lovely little dwarf already. I believe they'll be a perfect match, even though ${he2}'s half ${his} size. Isn't that right, ${SlaveFullName(V.hostage)}?" The slave nods uncertainly.`); + break; + default: + r.push(`${He}'s shaping up to be a good slave. I'm keeping ${him} informed of your`); + if (V.rivalryFS !== 0) { + r.push(`revisionist`); + } + r.push(`nonsense, and what your slaves suffer because of it. Isn't that right, ${SlaveFullName(V.hostage)}?" The slave nods uncertainly.`); + } + + r.push(`Your rival smiles icily. "I'll keep you informed of ${his} progress. I wouldn't want you to miss a moment of it."`); + App.Events.addParagraph(el, r); + + App.UI.DOM.appendNewElement("p", el, `You're forging a new frontier in warfare here. This, then, is the new frontier in psychological warfare.`); + return el; + + function createHostage() { + const slave = GenerateNewSlave("XX", {race: "nonslave", disableDisability: 1}); + slave.origin = "You were acquainted with $him before you were an arcology owner; your rival tried to use $him to manipulate you, but you rescued $him."; + slave.boobs = 400; + if (slave.butt > 3) { + slave.butt = 3; + } + slave.muscles = 0; + slave.behavioralFlaw = "none"; + slave.sexualFlaw = "none"; + slave.behavioralQuirk = "none"; + slave.sexualQuirk = "none"; + slave.waist = Math.clamp(slave.waist, -55, 15); + slave.lactation = 0; + slave.lactationDuration = 0; + slave.hips = 0; + slave.shoulders = -1; + if (slave.vagina <= 0) { + slave.vagina = 1; + } + if (slave.anus === 0) { + slave.anus = 1; + } + slave.energy = 50; + slave.canRecruit = 0; + if (slave.voice < 2) { + slave.voice = 2; + } + if (slave.faceShape === "masculine") { + slave.faceShape = "cute"; + } + slave.geneMods.NCS = 0; + slave.geneMods.rapidCellGrowth = 0; + slave.NCSyouthening = 0; + slave.slaveName = slave.birthName; + slave.slaveSurname = slave.birthSurname; + + slave.actualAge = Number(slave.actualAge) || 18; + slave.devotion = Number(slave.devotion) || 0; + slave.trust = Number(slave.trust) || 0; + slave.boobs = Number(slave.boobs) || 400; + + WombFlush(slave); + + if (V.PC.career === "wealth" || V.PC.career === "trust fund" || V.PC.career === "rich kid") { + slave.career = "a party girl"; + if (V.PC.career === "wealth" || V.PC.actualAge > 24) { + slave.actualAge = random(18, 24); + } else if (V.PC.career === "trust fund" || V.PC.actualAge > 16) { + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = random(V.minimumSlaveAge, V.PC.actualAge); + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge+1)); + } + } else { + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = V.minimumSlaveAge; + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge)); + } + } + slave.face = 100; + slave.intelligence = random(51, 95); + slave.intelligenceImplant = 0; + slave.skill.oral = 100; + slave.skill.entertainment = 100; + } else if (V.PC.career === "escort" || V.PC.career === "prostitute" || V.PC.career === "child prostitute") { + if (V.PC.career === "escort" || V.PC.actualAge > 24) { + slave.career = "an escort"; + slave.actualAge = random(18, 20); + App.Medicine.Modification.addScar(slave, "belly", "c-section"); + slave.counter.birthsTotal = 1; + } else if (V.PC.career === "prostitute" || V.PC.actualAge > 16) { + slave.career = "a prostitute"; + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = random(V.minimumSlaveAge, V.PC.actualAge); + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge+1)); + } + } else { + slave.career = "child prostitute"; + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = V.minimumSlaveAge; + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge)); + } + slave.custom.tattoo = "${He} has ${his} ID number tattooed on ${his} left breast."; + } + slave.face = 100; + slave.intelligence = random(-15, 15); + slave.intelligenceImplant = 0; + slave.skill.oral = 100; + slave.skill.entertainment = 100; + slave.skill.anal = 100; + slave.skill.vaginal = 100; + slave.skill.whoring = 100; + slave.counter.oral = random(300, 500); + slave.counter.vaginal = random(100, 300); + slave.counter.vaginal = random(50, 200); + slave.counter.mammary = random(200, 400); + } else if (V.PC.career === "servant" || V.PC.career === "handmaiden" || V.PC.career === "child servant") { + slave.career = "a maid"; + if (V.PC.career === "servant" || V.PC.actualAge > 24) { + slave.actualAge = random(18, 20); + slave.counter.birthsTotal = 3; + } else if (V.PC.career === "handmaiden" || V.PC.actualAge > 16) { + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = random(V.minimumSlaveAge, V.PC.actualAge); + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge+1)); + } + slave.counter.birthsTotal = 1; + } else { + slave.career = "child servant"; + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = V.minimumSlaveAge; + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge)); + } + } + if (V.pedo_mode === 1 && slave.actualAge > 18) { + slave.actualAge = random(12, 18); + } + slave.face = 25; + slave.intelligence = random(-50, -16); + slave.intelligenceImplant = 0; + slave.skill.oral = 15; + slave.skill.entertainment = 0; + slave.skill.anal = 15; + slave.skill.vaginal = 15; + slave.skill.whoring = 0; + slave.custom.tattoo = "${He} has your Master's brand on ${his} left breast."; + } else if (V.PC.career === "gang" || V.PC.career === "hoodlum" || V.PC.career === "street urchin") { + if (V.PC.career === "gang" || V.PC.actualAge > 24) { + slave.actualAge = random(20, 24); + slave.custom.tattoo = "${He} has your former gang's sign tattooed on ${his} neck."; + slave.career = "a gang member"; + } else if (V.PC.career === "hoodlum" || V.PC.actualAge > 16) { + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = random(V.minimumSlaveAge, V.PC.actualAge); + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge+1)); + } + slave.custom.tattoo = "${He} has the gang's sign that you rolled with tattooed on ${his} neck."; + slave.career = "a gang member"; + } else { + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = V.minimumSlaveAge; + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge)); + } + slave.custom.tattoo = "${He} has the gang's sign that you associated with tattooed on ${his} neck."; + slave.career = "street urchin"; + slave.weight = -80; + } + slave.muscles = 40; + setHealth(slave, 100, 0, 0, 0, jsRandom(10, 30)); + slave.skill.combat = 1; + } else if (V.PC.career === "BlackHat" || V.PC.career === "hacker" || V.PC.career === "script kiddy") { + slave.career = "a shut-in"; + if (V.PC.career === "BlackHat" || V.PC.actualAge > 24) { + slave.actualAge = random(18, 21); + slave.intelligenceImplant = 30; + } else if (V.PC.career === "hacker" || V.PC.actualAge > 16) { + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = random(V.minimumSlaveAge, V.PC.actualAge); + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge+1)); + } + slave.intelligenceImplant = 15; + } else { + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = V.minimumSlaveAge; + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge)); + } + slave.intelligenceImplant = 15; + } + if (V.pedo_mode === 1 && slave.actualAge > 18) { + slave.actualAge = random(13, 18); + } + slave.face = 75; + slave.intelligence = 100; + } else if (V.PC.career === "capitalist" || V.PC.career === "entrepreneur" || V.PC.career === "business kid") { + if (V.PC.career === "capitalist" || V.PC.actualAge > 24) { + slave.actualAge = random(18, 24); + slave.career = "a manager"; + slave.intelligenceImplant = 30; + } else if (V.PC.career === "entrepreneur" || V.PC.actualAge > 16) { + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = random(V.minimumSlaveAge, V.PC.actualAge); + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge+1)); + } + slave.career = "an intern"; + slave.intelligenceImplant = 15; + } else { + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = V.minimumSlaveAge; + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge)); + } + slave.career = "a student from a private school"; + slave.intelligenceImplant = 15; + } + slave.face = 55; + slave.intelligence = 100; + } else if (V.PC.career === "mercenary" || V.PC.career === "recruit" || V.PC.career === "child soldier") { + if (V.PC.career === "mercenary" || V.PC.actualAge > 24) { + slave.actualAge = random(20, 24); + slave.career = "a soldier"; + slave.intelligenceImplant = 15; + } else if (V.PC.career === "recruit" || V.PC.actualAge > 16) { + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = random(V.minimumSlaveAge, V.PC.actualAge); + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge+1)); + } + slave.career = "a soldier"; + slave.intelligenceImplant = 15; + } else { + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = V.minimumSlaveAge; + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge)); + } + slave.career = "a child soldier"; + slave.intelligenceImplant = 0; + } + slave.face = 55; + slave.intelligence = 100; + } else if (V.PC.career === "engineer" || V.PC.career === "construction" || V.PC.career === "worksite helper") { + if (V.PC.career === "engineer" || V.PC.actualAge > 24) { + slave.actualAge = random(18, 24); + slave.career = "a saleswoman"; + slave.intelligenceImplant = 30; + } else if (V.PC.career === "construction" || V.PC.actualAge > 16) { + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = random(V.minimumSlaveAge, V.PC.actualAge); + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge+1)); + } + slave.career = "a saleswoman"; + slave.intelligenceImplant = 15; + } else { + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = V.minimumSlaveAge; + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge)); + } + slave.career = "a child prodigy"; + slave.intelligenceImplant = 0; + } + slave.face = 100; + slave.intelligence = 100; + } else if (V.PC.career === "medicine" || V.PC.career === "medical assistant" || V.PC.career === "nurse") { + slave.career = "a nurse"; + if (V.PC.career === "medicine" || V.PC.actualAge > 24) { + slave.actualAge = random(16, 24); + slave.intelligenceImplant = 30; + } else if (V.PC.career === "medical assistant" || V.PC.actualAge > 16) { + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = random(V.minimumSlaveAge, V.PC.actualAge); + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge+1)); + } + slave.intelligenceImplant = 30; + } else { + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = V.minimumSlaveAge; + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge)); + } + slave.intelligenceImplant = 15; + } + slave.face = 55; + slave.intelligence = 100; + } else if (V.PC.career === "slaver" || V.PC.career === "slave overseer" || V.PC.career === "slave tender") { + slave.career = "a prison guard"; + if (V.PC.career === "slaver" || V.PC.actualAge > 24) { + slave.actualAge = random(20, 24); + } else if (V.PC.career === "slave overseer" || V.PC.actualAge > 16) { + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = random(V.minimumSlaveAge, V.PC.actualAge); + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge+1)); + } + } else { + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = V.minimumSlaveAge; + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge)); + } + } + slave.face = 55; + slave.intelligence = random(51, 95); + slave.intelligenceImplant = 0; + slave.muscles = 20; + slave.fetish = "sadist"; + slave.fetishStrength = 100; + slave.fetishKnown = 1; + } else if (V.PC.career === "celebrity" || V.PC.career === "rising star" || V.PC.career === "child star") { + if (V.PC.career === "celebrity" || V.PC.actualAge > 24) { + slave.actualAge = random(18, 24); + slave.career = "a party girl"; + } else if (V.PC.career === "rising star" || V.PC.actualAge > 16) { + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = random(V.minimumSlaveAge, V.PC.actualAge); + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge+1)); + } + slave.career = "a party girl"; + } else { + if (V.PC.actualAge < V.minimumSlaveAge) { + slave.actualAge = V.minimumSlaveAge; + } else { + slave.actualAge = Math.max(V.minimumSlaveAge, random(V.PC.actualAge-1, V.PC.actualAge)); + } + slave.career = "a child actress"; + } + slave.face = 100; + slave.intelligence = random(51, 95); + slave.intelligenceImplant = 0; + slave.skill.oral = 100; + slave.skill.entertainment = 100; + } else if (V.PC.career === "arcology owner") { + slave.career = "a leading arcology citizen"; + if (V.pedo_mode === 1) { + slave.actualAge = random(16, 18); + } else { + slave.actualAge = random(36, 39); + } + slave.face = 100; + slave.faceImplant = 15; + slave.intelligence = 100; + slave.intelligenceImplant = 30; + slave.skill.whoring = 100; + slave.skill.entertainment = 100; + } + + slave.trust = 0; + slave.devotion = 0; + if (V.pedo_mode === 1 && slave.actualAge > 18) { + slave.actualAge = random(16, 18); + } + slave.visualAge = slave.actualAge; + slave.physicalAge = slave.actualAge; + slave.ovaryAge = slave.actualAge; + slave.pubertyXX = 1; + resyncSlaveHight(slave); + + switch (V.rivalryFS) { + case "Repopulation Focus": + slave.preg = -3; + break; + case "Body Purism": + slave.boobs = 300; + break; + case "Slimness Enthusiasm": + slave.weight = -20; + slave.boobs = 800; + break; + case "Pastoralism": + slave.weight = 100; + slave.muscles = 0; + slave.boobs = 1200; + break; + case "Cummunism": + slave.boobs = 800; + slave.weight = -20; + break; + case "Physical Idealism": + slave.boobs = 200; + slave.butt = 1; + slave.weight = -20; + break; + case "Hedonistic Decadence": + slave.weight = 100; + slave.muscles = 0; + slave.boobs = 1200; + break; + } + return slave; + } +}; diff --git a/src/uncategorized/pRivalryHostage.tw b/src/uncategorized/pRivalryHostage.tw deleted file mode 100644 index ecaded26ed661a7f27423d10cb260208936dbde1..0000000000000000000000000000000000000000 --- a/src/uncategorized/pRivalryHostage.tw +++ /dev/null @@ -1,571 +0,0 @@ -:: P rivalry hostage [nobr] - -<<set $nextButton = "Continue", $nextLink = "Nonrandom Event">> - -<<set $hostageAnnounced = 1>> - -<<set _slave = GenerateNewSlave("XX", {race: "nonslave", disableDisability: 1})>> -<<set _slave.origin = "You were acquainted with $him before you were an arcology owner; your rival tried to use $him to manipulate you, but you rescued $him.">> -<<set _slave.boobs = 400>> -<<if _slave.butt > 3>> - <<set _slave.butt = 3>> -<</if>> -<<set _slave.muscles = 0>> -<<set _slave.behavioralFlaw = "none">> -<<set _slave.sexualFlaw = "none">> -<<set _slave.behavioralQuirk = "none">> -<<set _slave.sexualQuirk = "none">> -<<set _slave.waist = Math.clamp(_slave.waist,-55,15)>> -<<set _slave.lactation = 0>> -<<set _slave.lactationDuration = 0>> -<<set _slave.hips = 0>> -<<set _slave.shoulders = -1>> -<<if _slave.vagina <= 0>><<set _slave.vagina = 1>><</if>> -<<if _slave.anus == 0>><<set _slave.anus = 1>><</if>> -<<set _slave.energy = 50>> -<<set _slave.canRecruit = 0>> -<<if _slave.voice < 2>><<set _slave.voice = 2>><</if>> -<<if _slave.faceShape == "masculine">><<set _slave.faceShape = "cute">><</if>> -<<set _slave.geneMods.NCS = 0, _slave.geneMods.rapidCellGrowth = 0>> -<<set _slave.NCSyouthening = 0>> -<<set _slave.slaveName = _slave.birthName>> -<<set _slave.slaveSurname = _slave.birthSurname>> - -<<set _slave.actualAge = Number(_slave.actualAge) || 18>> -<<set _slave.devotion = Number(_slave.devotion) || 0>> -<<set _slave.trust = Number(_slave.trust) || 0>> -<<set _slave.boobs = Number(_slave.boobs) || 400>> - -<<set WombFlush(_slave)>> - -<<if $PC.career == "wealth" || $PC.career == "trust fund" || $PC.career == "rich kid">> - <<set _slave.career = "a party girl">> - <<if $PC.career == "wealth" || $PC.actualAge > 24>> - <<set _slave.actualAge = random(18,24)>> - <<elseif $PC.career == "trust fund" || $PC.actualAge > 16>> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = random($minimumSlaveAge,$PC.actualAge)>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge+1))>> - <</if>> - <<else>> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = $minimumSlaveAge>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge))>> - <</if>> - <</if>> - <<set _slave.face = 100>> - <<set _slave.intelligence = random(51,95)>> - <<set _slave.intelligenceImplant = 0>> - <<set _slave.skill.oral = 100>> - <<set _slave.skill.entertainment = 100>> -<<elseif $PC.career == "escort" || $PC.career == "prostitute" || $PC.career == "child prostitute">> - <<if $PC.career == "escort" || $PC.actualAge > 24>> - <<set _slave.career = "an escort">> - <<set _slave.actualAge = random(18,20)>> - <<run App.Medicine.Modification.addScar(_slave, "belly", "c-section")>> - <<set _slave.counter.birthsTotal = 1>> - <<elseif $PC.career == "prostitute" || $PC.actualAge > 16>> - <<set _slave.career = "a prostitute">> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = random($minimumSlaveAge,$PC.actualAge)>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge+1))>> - <</if>> - <<else>> - <<set _slave.career = "child prostitute">> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = $minimumSlaveAge>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge))>> - <</if>> - <<set _slave.custom.tattoo = "$He has $his ID number tattooed on $his left breast.">> - <</if>> - <<set _slave.face = 100>> - <<set _slave.intelligence = random(-15,15)>> - <<set _slave.intelligenceImplant = 0>> - <<set _slave.skill.oral = 100>> - <<set _slave.skill.entertainment = 100>> - <<set _slave.skill.anal = 100>> - <<set _slave.skill.vaginal = 100>> - <<set _slave.skill.whoring = 100>> - <<set _slave.counter.oral = random(300,500)>> - <<set _slave.counter.vaginal = random(100,300)>> - <<set _slave.counter.vaginal = random(50,200)>> - <<set _slave.counter.mammary = random(200,400)>> -<<elseif $PC.career == "servant" || $PC.career == "handmaiden" || $PC.career == "child servant">> - <<set _slave.career = "a maid">> - <<if $PC.career == "servant" || $PC.actualAge > 24>> - <<set _slave.actualAge = random(18,20)>> - <<set _slave.counter.birthsTotal = 3>> - <<elseif $PC.career == "handmaiden" || $PC.actualAge > 16>> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = random($minimumSlaveAge,$PC.actualAge)>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge+1))>> - <</if>> - <<set _slave.counter.birthsTotal = 1>> - <<else>> - <<set _slave.career = "child servant">> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = $minimumSlaveAge>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge))>> - <</if>> - <</if>> - <<if $pedo_mode == 1 && _slave.actualAge > 18>> - <<set _slave.actualAge = random(12,18)>> - <</if>> - <<set _slave.face = 25>> - <<set _slave.intelligence = random(-50,-16)>> - <<set _slave.intelligenceImplant = 0>> - <<set _slave.skill.oral = 15>> - <<set _slave.skill.entertainment = 0>> - <<set _slave.skill.anal = 15>> - <<set _slave.skill.vaginal = 15>> - <<set _slave.skill.whoring = 0>> - <<set _slave.custom.tattoo = "$He has your Master's brand on $his left breast.">> -<<elseif $PC.career == "gang" || $PC.career == "hoodlum" || $PC.career == "street urchin">> - <<if $PC.career == "gang" || $PC.actualAge > 24>> - <<set _slave.actualAge = random(20,24)>> - <<set _slave.custom.tattoo = "$He has your former gang's sign tattooed on $his neck.">> - <<set _slave.career = "a gang member">> - <<elseif $PC.career == "hoodlum" || $PC.actualAge > 16>> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = random($minimumSlaveAge,$PC.actualAge)>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge+1))>> - <</if>> - <<set _slave.custom.tattoo = "$He has the gang's sign that you rolled with tattooed on $his neck.">> - <<set _slave.career = "a gang member">> - <<else>> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = $minimumSlaveAge>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge))>> - <</if>> - <<set _slave.custom.tattoo = "$He has the gang's sign that you associated with tattooed on $his neck.">> - <<set _slave.career = "street urchin">> - <<set _slave.weight = -80>> - <</if>> - <<set _slave.muscles = 40>> - <<run setHealth(_slave, 100, 0, 0, 0, jsRandom(10, 30))>> - <<set _slave.skill.combat = 1>> -<<elseif $PC.career == "BlackHat" || $PC.career == "hacker" || $PC.career == "script kiddy">> - <<set _slave.career = "a shut-in">> - <<if $PC.career == "BlackHat" || $PC.actualAge > 24>> - <<set _slave.actualAge = random(18,21)>> - <<set _slave.intelligenceImplant = 30>> - <<elseif $PC.career == "hacker" || $PC.actualAge > 16>> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = random($minimumSlaveAge,$PC.actualAge)>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge+1))>> - <</if>> - <<set _slave.intelligenceImplant = 15>> - <<else>> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = $minimumSlaveAge>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge))>> - <</if>> - <<set _slave.intelligenceImplant = 15>> - <</if>> - <<if $pedo_mode == 1 && _slave.actualAge > 18>> - <<set _slave.actualAge = random(13,18)>> - <</if>> - <<set _slave.face = 75>> - <<set _slave.intelligence = 100>> -<<elseif $PC.career == "capitalist" || $PC.career == "entrepreneur" || $PC.career == "business kid">> - <<if $PC.career == "capitalist" || $PC.actualAge > 24>> - <<set _slave.actualAge = random(18,24)>> - <<set _slave.career = "a manager">> - <<set _slave.intelligenceImplant = 30>> - <<elseif $PC.career == "entrepreneur" || $PC.actualAge > 16>> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = random($minimumSlaveAge,$PC.actualAge)>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge+1))>> - <</if>> - <<set _slave.career = "an intern">> - <<set _slave.intelligenceImplant = 15>> - <<else>> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = $minimumSlaveAge>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge))>> - <</if>> - <<set _slave.career = "a student from a private school">> - <<set _slave.intelligenceImplant = 15>> - <</if>> - <<set _slave.face = 55>> - <<set _slave.intelligence = 100>> -<<elseif $PC.career == "mercenary" || $PC.career == "recruit" || $PC.career == "child soldier">> - <<if $PC.career == "mercenary" || $PC.actualAge > 24>> - <<set _slave.actualAge = random(20,24)>> - <<set _slave.career = "a soldier">> - <<set _slave.intelligenceImplant = 15>> - <<elseif $PC.career == "recruit" || $PC.actualAge > 16>> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = random($minimumSlaveAge,$PC.actualAge)>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge+1))>> - <</if>> - <<set _slave.career = "a soldier">> - <<set _slave.intelligenceImplant = 15>> - <<else>> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = $minimumSlaveAge>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge))>> - <</if>> - <<set _slave.career = "a child soldier">> - <<set _slave.intelligenceImplant = 0>> - <</if>> - <<set _slave.face = 55>> - <<set _slave.intelligence = 100>> -<<elseif $PC.career == "engineer" || $PC.career == "construction" || $PC.career == "worksite helper">> - <<if $PC.career == "engineer" || $PC.actualAge > 24>> - <<set _slave.actualAge = random(18,24)>> - <<set _slave.career = "a saleswoman">> - <<set _slave.intelligenceImplant = 30>> - <<elseif $PC.career == "construction" || $PC.actualAge > 16>> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = random($minimumSlaveAge,$PC.actualAge)>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge+1))>> - <</if>> - <<set _slave.career = "a saleswoman">> - <<set _slave.intelligenceImplant = 15>> - <<else>> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = $minimumSlaveAge>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge))>> - <</if>> - <<set _slave.career = "a child prodigy">> - <<set _slave.intelligenceImplant = 0>> - <</if>> - <<set _slave.face = 100>> - <<set _slave.intelligence = 100>> -<<elseif $PC.career == "medicine" || $PC.career == "medical assistant" || $PC.career == "nurse">> - <<set _slave.career = "a nurse">> - <<if $PC.career == "medicine" || $PC.actualAge > 24>> - <<set _slave.actualAge = random(16,24)>> - <<set _slave.intelligenceImplant = 30>> - <<elseif $PC.career == "medical assistant" || $PC.actualAge > 16>> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = random($minimumSlaveAge,$PC.actualAge)>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge+1))>> - <</if>> - <<set _slave.intelligenceImplant = 30>> - <<else>> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = $minimumSlaveAge>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge))>> - <</if>> - <<set _slave.intelligenceImplant = 15>> - <</if>> - <<set _slave.face = 55>> - <<set _slave.intelligence = 100>> -<<elseif $PC.career == "slaver" || $PC.career == "slave overseer" || $PC.career == "slave tender">> - <<set _slave.career = "a prison guard">> - <<if $PC.career == "slaver" || $PC.actualAge > 24>> - <<set _slave.actualAge = random(20,24)>> - <<elseif $PC.career == "slave overseer" || $PC.actualAge > 16>> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = random($minimumSlaveAge,$PC.actualAge)>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge+1))>> - <</if>> - <<else>> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = $minimumSlaveAge>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge))>> - <</if>> - <</if>> - <<set _slave.face = 55>> - <<set _slave.intelligence = random(51,95)>> - <<set _slave.intelligenceImplant = 0>> - <<set _slave.muscles = 20>> - <<set _slave.fetish = "sadist">> - <<set _slave.fetishStrength = 100>> - <<set _slave.fetishKnown = 1>> -<<elseif $PC.career == "celebrity" || $PC.career == "rising star" || $PC.career == "child star">> - <<if $PC.career == "celebrity" || $PC.actualAge > 24>> - <<set _slave.actualAge = random(18,24)>> - <<set _slave.career = "a party girl">> - <<elseif $PC.career == "rising star" || $PC.actualAge > 16>> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = random($minimumSlaveAge,$PC.actualAge)>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge+1))>> - <</if>> - <<set _slave.career = "a party girl">> - <<else>> - <<if $PC.actualAge < $minimumSlaveAge>> - <<set _slave.actualAge = $minimumSlaveAge>> - <<else>> - <<set _slave.actualAge = Math.max($minimumSlaveAge,random($PC.actualAge-1,$PC.actualAge))>> - <</if>> - <<set _slave.career = "a child actress">> - <</if>> - <<set _slave.face = 100>> - <<set _slave.intelligence = random(51,95)>> - <<set _slave.intelligenceImplant = 0>> - <<set _slave.skill.oral = 100>> - <<set _slave.skill.entertainment = 100>> -<<elseif $PC.career == "arcology owner">> - <<set _slave.career = "a leading arcology citizen">> - <<if $pedo_mode == 1>> - <<set _slave.actualAge = random(16,18)>> - <<else>> - <<set _slave.actualAge = random(36,39)>> - <</if>> - <<set _slave.face = 100, _slave.faceImplant = 15>> - <<set _slave.intelligence = 100, _slave.intelligenceImplant = 30>> - <<set _slave.skill.whoring = 100, _slave.skill.entertainment = 100>> -<</if>> - -<<set _slave.trust = 0>> -<<set _slave.devotion = 0>> -<<if $pedo_mode == 1 && _slave.actualAge > 18>> - <<set _slave.actualAge = random(16,18)>> -<</if>> -<<set _slave.visualAge = _slave.actualAge>> -<<set _slave.physicalAge = _slave.actualAge>> -<<set _slave.ovaryAge = _slave.actualAge>> -<<set _slave.pubertyXX = 1>> -<<run resyncSlaveHight(_slave)>> - -<<switch $rivalryFS>> -<<case "Repopulation Focus">> - <<set _slave.preg = -3>> -<<case "Body Purism">> - <<set _slave.boobs = 300>> -<<case "Slimness Enthusiasm">> - <<set _slave.weight = -20>> - <<set _slave.boobs = 800>> -<<case "Pastoralism">> - <<set _slave.weight = 100>> - <<set _slave.muscles = 0>> - <<set _slave.boobs = 1200>> -<<case "Cummunism">> - <<set _slave.boobs = 800>> - <<set _slave.weight = -20>> -<<case "Physical Idealism">> - <<set _slave.boobs = 200>> - <<set _slave.butt = 1>> - <<set _slave.weight = -20>> -<<case "Hedonistic Decadence">> - <<set _slave.weight = 100>> - <<set _slave.muscles = 0>> - <<set _slave.boobs = 1200>> -<</switch>> - -<<switch $rivalryFS>> -<<case "Maturity Preferentialism" "Petite Admiration" "Statuesque Glorification" "Youth Preferentialism">> - <<set $hostageWife = GenerateNewSlave("XX")>> - <<setLocalPronouns $hostageWife 2>> -<</switch>> - -<span id="art-frame"> - /* 000-250-006 */ - <<if $seeImages == 1>> - <<if $imageChoice == 1>> - <div class="imageRef lrgVector"><div class="mask"> </div><<SlaveArt _slave 3 0>></div> - <<else>> - <div class="imageRef lrgRender"><div class="mask"> </div><<SlaveArt _slave 3 0>></div> - <</if>> - <</if>> - /* 000-250-006 */ -</span> - -<<if $rivalGender == 2>> - <<set _heR = "he", _HeR = "He", _hisR = "his">> -<<else>> - <<set _heR = "she", _HeR = "She", _hisR = "her">> -<</if>> -<<setNonlocalPronouns $seeDicks>> -<<run App.Utils.setLocalPronouns(_slave)>> -<<setPlayerPronouns>> - -<<set _closer = 0>> -Only a few days into your inter-arcology war, you receive a video message from your rival. Once $assistant.name is satisfied that the file is clean, you clear your office and pull it up. To your surprise, there are two faces on your desk, not one. One of them is your rival, and after a moment, you remember who the other is. You recognize $him from your -<<if $PC.career == "wealth" || $PC.career == "trust fund" || $PC.career == "rich kid">> - <<if $PC.career == "wealth" || $PC.career == "trust fund" || $PC.actualAge > 16>> - time as a wealthy _womanP of leisure. $He was a pretty little party $girl who ran in those circles. You were never particularly close, - <<elseif $PC.career == "rich kid">> - time as a child with way too much money on hand. $He was a pretty little party $girl, - <<if _slave.actualAge >= $PC.actualAge+6>> - only a handful of years your senior, that showed you what it meant to really let loose. - <<else>> - around your age, that you spent a lot of time with. - <</if>> - You can't say that you've kept in touch, - <<set _closer = 1>> - <</if>> -<<elseif $PC.career == "escort">> - time as a _womanP of sexual promiscuity. $He was a pretty little slut who ran in the same sex circles. You were never particularly close, -<<elseif $PC.career == "servant">> - time as a _womanP of servitude. $He was a <<if $PC.title == 1>>maid<<else>>fellow maid<</if>> under your late Master. <<if $PC.title == 0>>You may have delivered several of $his children, but you<<else>>You<</if>> were never particularly close, -<<elseif $PC.career == "gang">> - time as a gang leader. $He was one of your best, yet you never got close enough, -<<elseif $PC.career == "BlackHat">> - time as a hacker for hire. $He supported you on jobs, even sent some choice pictures of $himself, but you were never really close, -<<elseif $PC.career == "capitalist">> - career in venture capital. $He was a rising manager, young, attractive, and bright. You never worked particularly closely with $him, -<<elseif $PC.career == "mercenary">> - career as a mercenary. $He was in logistical support, and was clever and pretty, but without the essential hardness. You were never that close, -<<elseif $PC.career == "engineer">> - career as an arcology engineer. $He was a glorified sales<<= $woman>>, with the gorgeous looks and extreme intelligence necessary to sell entire arcologies. You were never close, -<<elseif $PC.career == "medicine">> - career in medicine. $He was a surgical nurse, one of the best. $He was smart, pretty, and $he had sure hands. You were never that close, -<<elseif $PC.career == "slaver">> - career as a slaver. $He was a guard in one of the slave receiving pens, and a notorious one, at that. Nobody was quite as eager to break in new slaves as $he was. You were never that close, -<<elseif $PC.career == "celebrity">> - time as a minor celebrity. $He was a pretty little groupie who flitted from entourage to entourage. You were never particularly close, -<<elseif $PC.career == "arcology owner">> - time owning another arcology. $He was a prominent citizen who supported your government. You were never particularly close, -<</if>> -<<if _closer != 1>> - but you do remember $him, and your rival knows it. This is obviously the best _heR could come up with to provoke an emotional reaction. -<<else>> - but you were close to $him, and your rival knows it. _HeR clearly did _hisR research when coming up with a way to provoke an emotional reaction. -<</if>> - -<br><br> -"Hello, <<= PlayerName()>>," your rival sneers. "Sorry to pull you away from -<<switch $rivalryFS>> -<<case "Racial Subjugationism">> - whipping some poor $arcologies[0].FSSubjugationistRace _girlU's back bloody, -<<case "Racial Supremacism">> - blowing your $arcologies[0].FSSubjugationistRace girls, or whatever it is you do with your spare time, -<<case "Gender Radicalism">> - buttfucking your catamites, or whatever it is you do with your spare time, -<<case "Gender Fundamentalism">> - teatime with your slave wives, -<<case "Repopulation Focus">> - rolling around in the afterbirth, or whatever it is you do with your spare time, -<<case "Eugenics">> - circle jerking with your "elites", or whatever it is you do with your spare time, -<<case "Paternalism">> - handholding time with your slaves, -<<case "Degradationism">> - stitching your name into some poor _girlU's taint, or whatever it is you do with your spare time, -<<case "Body Purism">> - playing house with your perfect pure little angels, or whatever it is you do with your spare time, -<<case "Transformation Fetishism">> - stuffing silicone up some poor _girlU's nostrils, -<<case "Youth Preferentialism">> - your horrible schoolgirl fantasy playtime, -<<case "Maturity Preferentialism">> - the world's leading collection of saggy tits, -<<case "Slimness Enthusiasm">> - your pathological collection of flat chested bitches, -<<case "Asset Expansionism">> - your disgusting breast monsters, -<<case "Pastoralism">> - your most flatulent cowgirls, -<<case "Physical Idealism">> - your sweaty, spandexed throwback collection, -<<case "Hedonistic Decadence">> - your greasy, flatulent mounds of fat, -<<case "Chattel Religionism">> - your afternoon prayer meeting, -<<case "Multiculturalism">> - whatever it is you do to liven up your boring arcology, -<<case "Roman Revivalism">> - feeding slaves to the lions, or whatever it is you do with your spare time, -<<case "Aztec Revivalism">> - sacrificing slaves to the gods, or whatever it is you do with your spare time, -<<case "Egyptian Revivalism">> - your latest experiment in exactly how disgusting incest can possibly be, -<<case "Edo Revivalism">> - your katana polishing, or whatever it is you do with your spare time, -<<case "Arabian Revivalism">> - your hookah sucking, -<<case "Chinese Revivalism">> - your footbinding, -<<case "Intellectual Dependency">> - tard wrangling, or whatever it is you do with your spare time, -<<case "Slave Professionalism">> - being talked down to by your own slaves, or whatever it is you do with your spare time, -<<case "Petite Admiration">> - tripping over all those midgets you're obsessed with, -<<case "Statuesque Glorification">> - those face high crotches you love, -<<default>> - whatever it is you do with your spare time, -<</switch>> -but look what I have here! I just acquired $him recently. Lovely, isn't $he? I know $he wasn't important to you, but $he //is// a reminder of who you were. I think $he must have been your type." Your rival turns to the slave and continues. "While we have our little war, -<<switch $rivalryFS>> -<<case "Racial Subjugationism">> - I'm going to treat $him well. Train $him. $He's a fine Head Girl prospect, don't you think? $He'll have lots of nice $arcologies[0].FSSubjugationistRace girls to make love to whenever $he wants. Isn't that right, <<= SlaveFullName(_slave)>>?" The slave nods uncertainly. -<<case "Racial Supremacism">> - I'm going to destroy $him. $He's got a whipping post with $his name on it, right between a couple of $arcologies[0].FSSupremacist bitches. Isn't that right, <<= SlaveFullName(_slave)>>?" The slave begins to scream, and the noise goes on and on as the slave is tied up and scourged. -<<case "Gender Radicalism">> - I'm going to treat $him well. Train $him. Teach $him $his proper role in society, and make $him happy here. Isn't that right, _slave.slaveName?" The slave nods uncertainly. -<<case "Gender Fundamentalism">> - $He's going to be my special pet. $He'll have everything $he could ever want, as long as $he has a dick up $his ass. Isn't that right, <<= SlaveFullName(_slave)>>?" The slave nods hesitantly, but with evident arousal. -<<case "Paternalism">> - I'm going to destroy $him. Holes first, of course. I'll have to get more inventive after that, and I'll leave $his vocal cords for last. That way, $he'll be able to beg. Isn't that right, <<= SlaveFullName(_slave)>>?" The slave begins to scream, and the noise goes on and on. And on. -<<case "Repopulation Focus">> - I'm going to ruin $his womb, making sure $he can never have children again. I bet you spent lots of nights fantasizing about $him with a huge belly didn't you? -<<case "Eugenics">> - <<if $seeHyperPreg == 1>> - I'm going to have $him knocked up; not with my seed, of course, but the seed of the lowest of the low. I'm also going to fill $him with the most powerful experimental fertility drugs out there. $He'll have so many children shoved into $his poor womb $he'll be bursting at the seams. But $he'll enjoy that, won't you <<= SlaveFullName(_slave)>>?" The slave nods hesitantly, but with evident arousal. - <<else>> - I'm going to have $him knocked up; not with my seed, of course, but the seed of the lowest of the low. I'm also going to fill $him with the most powerful fertility drugs I can get. $His poor little womb will be stretched to the limit with society's worst. But $he'll enjoy that, won't you <<= SlaveFullName(_slave)>>?" The slave nods hesitantly, but with evident arousal. - <</if>> -<<case "Degradationism">> - $He's going to be my lover. $He'll have everything $he could ever want, and I'll be sure to let $him know all about what you do to your slaves. Isn't that right, <<= SlaveFullName(_slave)>>?" The slave nods uncertainly. -<<case "Body Purism">> - I'm going to give $him a nice pair of fake tits. No reason to be excessively clever when I can just make $his tits so huge $he won't be able to walk. Isn't that right, <<= SlaveFullName(_slave)>>?" The slave begins to sob. -<<case "Transformation Fetishism">> - $He's going to be my lover. I'll be sure to let $him know all about what you do to your slaves, and rest assured, I'll never treat $him that way. Isn't that right, <<= SlaveFullName(_slave)>>?" The slave nods uncertainly. -<<case "Youth Preferentialism">> - I've set $him up with a nice motherly _woman2 already. I believe they'll be a perfect match. Isn't that right, <<= SlaveFullName(_slave)>>?" The slave nods uncertainly. -<<case "Maturity Preferentialism">> - I've set $him up with a nice young _girl2 already. I believe they'll be a perfect match. Isn't that right, <<= SlaveFullName(_slave)>>?" The slave nods uncertainly. -<<case "Slimness Enthusiasm">> - I think I'll make $his IV line permanent. After all, $he's never going off breast growth hormones. I'd estimate $he shouldn't be able to walk within a month. Isn't that right, <<= SlaveFullName(_slave)>>?" The slave begins to sob. -<<case "Asset Expansionism">> - $He's going to be my lover. I'll be sure to let $him know all about what you do to your slaves, and rest assured, I'll never give $him growth hormones, not one single dose. Isn't that right, <<= SlaveFullName(_slave)>>?" The slave nods uncertainly. -<<case "Pastoralism">> - $He's going to be my spotter. Girls should be strong, smoking hot ladies, not disgusting cows. Isn't that right, <<= SlaveFullName(_slave)>>?" The slave nods uncertainly. -<<case "Cummunism">> - $He's going to be my personal milk dispenser. I shouldn't have to chain $him to my desk after the first month, since $his udders will pin $him in place. Isn't that right, <<= SlaveFullName(_slave)>>?" The slave begins to sob. -<<case "Physical Idealism">> - $He's going to learn to enjoy yourself. I'm going to force $his face full of food, $his cunt full of dicks and discover $his deepest, darkest desires. Wouldn't you like that, <<= SlaveFullName(_slave)>>?" The slave begins to sob. "To start, how about a weigh in? Sixty three and a half kilograms, such a pity, but don't worry, I'll have $him nice and plump soon enough." -<<case "Hedonistic Decadence">> - $He's going to be my spotter. Girls should be strong, smoking hot ladies, not disgusting obese slobs. Isn't that right, <<= SlaveFullName(_slave)>>?" The slave nods uncertainly. -<<case "Chattel Religionism">> - $He's going to be the perfect courtesan. No preaching, no praying, just good, clean sex for money. Isn't that right, <<= SlaveFullName(_slave)>>?" The slave nods uncertainly. -<<case "Multiculturalism">> - $He's going to be the ideal holy whore. Thousands of citizens are going to find rapture inside $him. Isn't that right, <<= SlaveFullName(_slave)>>?" The slave nods uncertainly. -<<case "Intellectual Dependency">> - $He's going to be a skilled courtesan. $He'll know how to best please $his partners, and most importantly, $he'll perfectly understand $his place in society. - <<if _slave.intelligence < 0>> - Shame $he's an idiot though. But $he can learn and improve still, I'll see to that. - <</if>> - Isn't that right, <<= SlaveFullName(_slave)>>?" The slave nods begrudgingly. -<<case "Slave Professionalism">> - $He's going to become a moron<<if _slave.intelligence < 0>>, though $he isn't exactly smart to begin with<</if>>. No time for higher thought when all $his brain power is caught up with how to satisfy $his raging libido. Isn't that right, <<= SlaveFullName(_slave)>>?" The slave begins to sob. -<<case "Petite Admiration">> - I've set $him up with a particularly lovely giant. I believe they'll be a perfect match, even though $he's half _his2 size. Isn't that right, <<= SlaveFullName(_slave)>>?" The slave nods uncertainly. -<<case "Statuesque Glorification">> - I've set $him up with a lovely little dwarf already. I believe they'll be a perfect match, even though _he2's half $his size. Isn't that right, <<= SlaveFullName(_slave)>>?" The slave nods uncertainly. -<<default>> - $He's shaping up to be a good slave. I'm keeping $him informed of your <<if $rivalryFS != 0>>revisionist <</if>>nonsense, and what your slaves suffer because of it. Isn't that right, <<= SlaveFullName(_slave)>>?" The slave nods uncertainly. -<</switch>> - -Your rival smiles icily. "I'll keep you informed of $his progress. I wouldn't want you to miss a moment of it." -<br><br> -You're forging a new frontier in warfare here. This, then, is the new frontier in psychological warfare. - -<<set $hostage = _slave>>