From 44bbdbcdad0eabe169559b34dd6e6d03e7c9259b Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Sun, 6 Jun 2021 00:51:44 -0400 Subject: [PATCH] reviv --- src/events/randomEvent.js | 6 + src/events/recFS/recfsArabianRevivalist.js | 81 ++++++++++ src/events/recFS/recfsAztecRevivalist.js | 83 ++++++++++ src/events/recFS/recfsChineseRevivalist.js | 78 ++++++++++ src/events/recFS/recfsEdoRevivalist.js | 79 ++++++++++ src/events/recFS/recfsNeoImperialist.js | 81 ++++++++++ src/events/recFS/recfsRomanRevivalist.js | 86 +++++++++++ src/uncategorized/reFSAcquisition.tw | 169 +-------------------- 8 files changed, 495 insertions(+), 168 deletions(-) create mode 100644 src/events/recFS/recfsArabianRevivalist.js create mode 100644 src/events/recFS/recfsAztecRevivalist.js create mode 100644 src/events/recFS/recfsChineseRevivalist.js create mode 100644 src/events/recFS/recfsEdoRevivalist.js create mode 100644 src/events/recFS/recfsNeoImperialist.js create mode 100644 src/events/recFS/recfsRomanRevivalist.js diff --git a/src/events/randomEvent.js b/src/events/randomEvent.js index dcb19c4c13c..e4ebf95d5c5 100644 --- a/src/events/randomEvent.js +++ b/src/events/randomEvent.js @@ -130,14 +130,18 @@ App.Events.getNonindividualEvents = function() { new App.Events.RESMove(), // recFS + new App.Events.recFSArabianRevivalist(), new App.Events.recFSAssetExpansionist(), new App.Events.recFSAssetExpansionistTwo(), + new App.Events.recFSAztecRevivalist(), new App.Events.recFSBodyPurist(), new App.Events.recFSBodyPuristTwo(), new App.Events.recFSChattelReligionist(), new App.Events.recFSChattelReligionistTwo(), + new App.Events.recFSChineseRevivalist(), new App.Events.recFSDegradationist(), new App.Events.recFSDegradationistTwo(), + new App.Events.recFSEdoRevivalist(), new App.Events.recFSGenderFundamentalist(), new App.Events.recFSGenderFundamentalistTwo(), new App.Events.recFSGenderRadicalist(), @@ -148,6 +152,7 @@ App.Events.getNonindividualEvents = function() { new App.Events.recFSIntellectualDependencyTwo(), new App.Events.recFSMaturityPreferentialist(), new App.Events.recFSMaturityPreferentialistTwo(), + new App.Events.recFSNeoImperialist(), new App.Events.recFSPastoralist(), new App.Events.recFSPastoralistTwo(), new App.Events.recFSPaternalist(), @@ -160,6 +165,7 @@ App.Events.getNonindividualEvents = function() { new App.Events.recFSRepopulationEffortsTwo(), new App.Events.recFSRestart(), new App.Events.recFSRestartTwo(), + new App.Events.recFSRomanRevivalist(), new App.Events.recFSSlaveProfessionalism(), new App.Events.recFSSlaveProfessionalismTwo(), new App.Events.recFSSlimnessEnthusiast(), diff --git a/src/events/recFS/recfsArabianRevivalist.js b/src/events/recFS/recfsArabianRevivalist.js new file mode 100644 index 00000000000..e87faa7cfb7 --- /dev/null +++ b/src/events/recFS/recfsArabianRevivalist.js @@ -0,0 +1,81 @@ +App.Events.recFSArabianRevivalist = class recFSArabianRevivalist extends App.Events.BaseEvent { + eventPrerequisites() { + return [ + () => V.FSAnnounced === 1, + ]; + } + + actorPrerequisites() { + return []; + } + + get weight() { + return V.arcologies[0].FSArabianRevivalist > random(1, 100) ? 1 : 0; + } + + execute(node) { + let r = []; + const slave = GenerateNewSlave(null, { + minAge: 25, maxAge: Math.max(25, V.retirementAge-5), ageOverridesPedoMode: 1, disableDisability: 1 + }); + slave.origin = "${He} offered ${himself} to you for enslavement because ${he} thought your harem ${his} best hope for good treatment."; + slave.devotion = random(30, 35); + slave.trust = random(30, 35); + slave.career = "a professor"; + generateSalonModifications(slave); + setHealth(slave, jsRandom(10, 30), undefined, undefined, 0, 0); + slave.face = random(15, 100); + slave.skill.oral = 35; + slave.skill.anal = 15; + slave.skill.whoring = 0; + slave.skill.entertainment = 100; + slave.intelligence = random(51, 95); + slave.intelligenceImplant = 15; + slave.teeth = "normal"; + slave.sexualFlaw = either("idealistic"); + + const { + He, + his, he, him, girl, woman + } = getPronouns(slave); + const {HeA} = getPronouns(assistant.pronouns().main).appendSuffix("A"); + const contractCost = 1000; + const cost = slaveCost(slave) - contractCost; + r.push(`You receive so many messages, as a noted titan of the new Free Cities world, that ${V.assistant.name} has to be quite draconian in culling them. ${HeA} lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were.`); + App.Events.addParagraph(node, r); + r = []; + r.push(`The call comes in from an old world university. The caller, surprisingly, is a beautiful ${woman} in ${his} thirties who speaks with a richly lilting accent and a literary vocabulary.`); + r.push(Spoken(slave, `"I'm afraid,"`)); + r.push(`${he} says sadly,`); + r.push(Spoken(slave, `"it's come to slavery, for me. I am no longer a ${girl}, but I can make some claim to beauty. I know many stories and can tell them cleverly; I can sing and dance well. I know you are not looking for a Scheherazade, but I could play her part. Nor am I naïve; I know the Sultan enjoyed her body as well as her wit, and I am not unskilled in those respects, either."`)); + r.push(`${He} looks you straight in the eye.`); + r.push(Spoken(slave, `"May I come into your harem? I will do my best to brighten it."`)); + + App.Events.addParagraph(node, r); + + const choices = []; + + if (V.cash >= contractCost) { + choices.push(new App.Events.Result(`Enslave ${him}`, enslave, `This will cost in ${contractCost}`)); + choices.push(new App.Events.Result(`Sell ${him} immediately`, sell, `This will bring in ${cost}`)); + } else { + choices.push(new App.Events.Result(null, null, `You lack the necessary funds to enslave $${him}.`)); + } + App.Events.addResponses(node, choices); + + function enslave() { + const frag = new DocumentFragment(); + r = []; + r.push(`Your estimation of ${him} rises through the enslavement process: ${he} doffs and discards ${his} conservative business wear without complaint, and stands nude before you, obeying instructions without fuss. There is an indecipherable glint in ${his} ${App.Desc.eyesColor(slave)}: nerves? Excitement? Challenge, even? Perhaps ${he} even feels this is an adventure. And that, it will certainly be.`); + + r.push(App.UI.newSlaveIntro(slave)); + App.Events.addParagraph(frag, r); + return frag; + } + + function sell() { + cashX(cost, "slaveTransfer"); + return `${He} arrives and works ${his} way through the enslavement process without fuss. When a buyer's agent arrives, ${he} immediately understands that ${he} has been sold. ${He} looks rueful for a moment, obviously realizing that you made no commitment not to do this, and that such a commitment would have been worthless in any case. ${He} flawlessly performs the only successful insult available to ${him}, ignoring you utterly from that moment on, but obeying the agent faultlessly.`; + } + } +}; diff --git a/src/events/recFS/recfsAztecRevivalist.js b/src/events/recFS/recfsAztecRevivalist.js new file mode 100644 index 00000000000..d38bf91ae8d --- /dev/null +++ b/src/events/recFS/recfsAztecRevivalist.js @@ -0,0 +1,83 @@ +App.Events.recFSAztecRevivalist = class recFSAztecRevivalist extends App.Events.BaseEvent { + eventPrerequisites() { + return [ + () => V.FSAnnounced === 1, + ]; + } + + actorPrerequisites() { + return []; + } + + get weight() { + return V.arcologies[0].FSAztecRevivalist > random(1, 100) ? 1 : 0; + } + + execute(node) { + let r = []; + const slave = GenerateNewSlave("XX", {minAge: 22, maxAge: 28, disableDisability: 1}); + slave.origin = "$He offered $himself to you for enslavement because $he needs to feel a higher call."; + slave.devotion = random(25, 50); + slave.trust = random(25, 50); + slave.career = "a merchant"; + setHealth(slave, jsRandom(-20, 20), undefined, undefined, 0, 0); + slave.face = random(-20, 0); + slave.anus = 0; + if (slave.vagina !== -1) { + slave.vagina = 0; + } + slave.skill.vaginal = 1; + slave.skill.anal = 1; + slave.skill.oral = 1; + slave.skill.whoring = 0; + slave.skill.entertainment = 0; + slave.intelligence = random(16, 95); + slave.intelligenceImplant = 15; + slave.teeth = "normal"; + + const { + His, He, + his, he, him, himself, woman + } = getPronouns(slave); + const {HeA} = getPronouns(assistant.pronouns().main).appendSuffix("A"); + const contractCost = 1000; + const cost = slaveCost(slave) - contractCost; + r.push(`You receive so many messages, as a noted titan of the new Free Cities world, that ${V.assistant.name} has to be quite draconian in culling them. ${HeA} lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were.`); + App.Events.addParagraph(node, r); + r = []; + r.push(`The call comes in from an old world trading colony. The caller is a ${woman} who humbly explains how tired ${he} is from all the godless people and terrible conditions, and expresses interest to join the old empires. ${He} probably knows only of the incredible architecture and the military accomplishments that are advertised in vids. Though the sacrifice and collaring of slaves is no secret, most people never find out the real truth to what you do. Nevertheless ${he}'s incredibly willing, so much so that ${he} almost signs ${himself} off to you by accident. ${His} file is displayed in front if you, pending your reaction.`); + + App.Events.addParagraph(node, r); + + const choices = []; + + if (V.cash >= contractCost) { + choices.push(new App.Events.Result(`Enslave ${him}`, enslave, `This will cost in ${contractCost}`)); + choices.push(new App.Events.Result(`Sell ${him} immediately`, sell, `This will bring in ${cost}`)); + } else { + choices.push(new App.Events.Result(null, null, `You lack the necessary funds to enslave $${him}.`)); + } + App.Events.addResponses(node, choices); + + function enslave() { + const frag = new DocumentFragment(); + r = []; + r.push(`${He} arrives awestruck by`); + if (canSee(slave)) { + r.push(`all the sights`); + } else { + r.push(`everything`); + } + r.push(`${he} passed through to get to your abode. ${He} probably didn't see anything too extreme, but ${he} will soon. Feeling your gaze on ${his} body, ${he} quickly abandons all fears from ${his} past life, strips off ${his} clothes, and submits to you fully. Only time will tell if ${he} made a mistake.`); + + r.push(App.UI.newSlaveIntro(slave)); + App.Events.addParagraph(frag, r); + return frag; + } + + function sell() { + cashX(cost, "slaveTransfer"); + return `${He} arrives so terrified, ${he} can't stop shaking and won't acknowledge most of your commands. It seems ${he} realized what really goes on in this arcology. The blood and gruesome mutilation is very far from ${he} envisioned for ${his} future; V.arcologies[0].name is a close reproduction of the miasma of death that accompanied the Aztecs. ${He}'s currently too shaken to realize what awaits ${him}. Whether good or bad, ${he} can't back out. ${He}'s yours.`; + } + } +}; diff --git a/src/events/recFS/recfsChineseRevivalist.js b/src/events/recFS/recfsChineseRevivalist.js new file mode 100644 index 00000000000..ac2bcd2f8b9 --- /dev/null +++ b/src/events/recFS/recfsChineseRevivalist.js @@ -0,0 +1,78 @@ +App.Events.recFSChineseRevivalist = class recFSChineseRevivalist extends App.Events.BaseEvent { + eventPrerequisites() { + return [ + () => V.FSAnnounced === 1, + ]; + } + + actorPrerequisites() { + return []; + } + + get weight() { + return V.arcologies[0].FSChineseRevivalist > random(1, 100) ? 1 : 0; + } + + execute(node) { + let r = []; + const slave = GenerateNewSlave(null, { + minAge: 26, maxAge: 42, disableDisability: 1, ageOverridesPedoMode: 1 + }); + slave.origin = "$He offered $himself to you for enslavement because $he thought $he would have prospects of advancement among your slaves."; + slave.devotion = random(30, 35); + slave.trust = random(30, 35); + slave.career = "a businesswoman"; + setHealth(slave, jsRandom(10, 30), undefined, undefined, 0, 0); + slave.face = 15; + slave.skill.oral = random(15, 40); + slave.skill.anal = random(15, 40); + slave.skill.whoring = random(15, 40); + slave.skill.entertainment = random(15, 40); + slave.intelligence = random(51, 95); + slave.intelligenceImplant = 15; + slave.teeth = "normal"; + slave.behavioralFlaw = either("arrogant"); + const { + He, + his, he, him, himself, woman + } = getPronouns(slave); + const {HeA} = getPronouns(assistant.pronouns().main).appendSuffix("A"); + const contractCost = 1000; + const cost = slaveCost(slave) - contractCost; + r.push(`You receive so many messages, as a noted titan of the new Free Cities world, that ${V.assistant.name} has to be quite draconian in culling them. ${HeA} lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were.`); + App.Events.addParagraph(node, r); + r = []; + r.push(`The call comes in from an office, and you suppress the urge to check whether ${V.assistant.name} has misidentified a business communication. The caller is a middle-aged ${woman}, not unattractive, whose face is lined with stress and worry. ${He} draws ${himself} up and says,`); + r.push(Spoken(slave, `"I would like to apply to be your slave."`)); + r.push(`There is a flash of bitter amusement at the absurd statement, but ${he} continues,`); + r.push(Spoken(slave, `"Business circumstances make it inevitable. I have considerable skills and experience, and it is my understanding that you value such things."`)); + r.push(`${He} forwards ${his} qualifications: they are comprehensive and open, including ${his} sexual skills as if they were merely another business asset. Which, in a way, they are.`); + + App.Events.addParagraph(node, r); + + const choices = []; + + if (V.cash >= contractCost) { + choices.push(new App.Events.Result(`Enslave ${him}`, enslave, `This will cost in ${contractCost}`)); + choices.push(new App.Events.Result(`Sell ${him} immediately`, sell, `This will bring in ${cost}`)); + } else { + choices.push(new App.Events.Result(null, null, `You lack the necessary funds to enslave $${him}.`)); + } + App.Events.addResponses(node, choices); + + function enslave() { + const frag = new DocumentFragment(); + r = []; + r.push(`${He} arrives in a simple, sturdy suit, which ${he} obviously wore in the correct anticipation of immediately removing and never seeing again. ${He} cooperates with the enslavement process as best ${he} can, ${his} glance confident and watchful. ${He}'s obviously calculating how to get ahead within this new place, and ${he} pays particularly close attention as the ebb and flow of business through your office brings your various slaves into ${his} view for the first time.`); + + r.push(App.UI.newSlaveIntro(slave)); + App.Events.addParagraph(frag, r); + return frag; + } + + function sell() { + cashX(cost, "slaveTransfer"); + return `${He} arrives and works ${his} way through the enslavement process, doing ${his} best to ingratiate ${himself}. When a buyer's agent arrives, ${he} immediately understands that ${he} has been sold. ${He} looks rueful for a moment, obviously realizing that you made no commitment not to do this, and that such a commitment would have been worthless in any case. ${He} transfers ${his} focus to the agent without hesitation, doing ${his} best to improve ${his} rapidly changing position.`; + } + } +}; diff --git a/src/events/recFS/recfsEdoRevivalist.js b/src/events/recFS/recfsEdoRevivalist.js new file mode 100644 index 00000000000..4c9cfa5017e --- /dev/null +++ b/src/events/recFS/recfsEdoRevivalist.js @@ -0,0 +1,79 @@ +App.Events.recFSEdoRevivalist = class recFSEdoRevivalist extends App.Events.BaseEvent { + eventPrerequisites() { + return [ + () => V.FSAnnounced === 1, + ]; + } + + actorPrerequisites() { + return []; + } + + get weight() { + return V.arcologies[0].FSEdoRevivalist > random(1, 100) ? 1 : 0; + } + + execute(node) { + let r = []; + const slave = GenerateNewSlave(null, {maxAge: 24, disableDisability: 1, race: "nonslave"}); + slave.origin = "$He offered $himself to you for enslavement because $he had a disgustingly naïve view of medieval Japanese culture."; + slave.devotion = random(-15, -5); + slave.trust = random(5, 15); + slave.career = "a student"; + generateSalonModifications(slave); + setHealth(slave, jsRandom(-20, 0), undefined, undefined, 0, 0); + slave.face = random(-60, 10); + slave.weight = random(20, 100); + slave.vagina = 0; + slave.trueVirgin = 1; + slave.skill.vaginal = 0; + slave.skill.whoring = 0; + slave.skill.entertainment = 0; + slave.intelligence = random(-50, 50); + slave.intelligenceImplant = 15; + if (slave.physicalAge >= 12) { + slave.teeth = "normal"; + } + slave.behavioralFlaw = either("gluttonous", "liberated"); + slave.sexualFlaw = either("apathetic", "idealistic", "none", "none", "shamefast"); + + const { + He, + his, he, him, himself, woman + } = getPronouns(slave); + const {HeA} = getPronouns(assistant.pronouns().main).appendSuffix("A"); + const contractCost = 1000; + const cost = slaveCost(slave) - contractCost; + r.push(`You receive so many messages, as a noted titan of the new Free Cities world, that ${V.assistant.name} has to be quite draconian in culling them. ${HeA} lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were.`); + App.Events.addParagraph(node, r); + r = []; + r.push(`The caller is a young ${woman} who struggles to stop ${himself} from peppering ${his} socially awkward babble with poorly pronounced Japanese colloquialisms. Insofar as you can parse ${his} nonsense, ${he} seems to have gotten a hilariously romanticized version of feudal Japan from somewhere, and is willing to submit to enslavement in order to join your revivalist arcology. Whoever's out there spreading this rubbish, you owe them one; this serf is in for an extremely rude awakening.`); + + App.Events.addParagraph(node, r); + + const choices = []; + + if (V.cash >= contractCost) { + choices.push(new App.Events.Result(`Enslave ${him}`, enslave, `This will cost in ${contractCost}`)); + choices.push(new App.Events.Result(`Sell ${him} immediately`, sell, `This will bring in ${cost}`)); + } else { + choices.push(new App.Events.Result(null, null, `You lack the necessary funds to enslave $${him}.`)); + } + App.Events.addResponses(node, choices); + + function enslave() { + const frag = new DocumentFragment(); + r = []; + r.push(`${He} arrives with doubt already clouding ${his} eyes. It seems ${he} passed one of the arcology's seedier bars on ${his} way up to your penthouse; the sight of roaring patrons swilling cheap sake and manhandling whores in loose kimonos does not seem to have been part of ${his} expectations. As the enslavement process winds on, ${he} reflexively begins to look around for a means of escape, and slowly collapses into ${himself} as ${he} realizes there is none.`); + + r.push(App.UI.newSlaveIntro(slave)); + App.Events.addParagraph(frag, r); + return frag; + } + + function sell() { + cashX(cost, "slaveTransfer"); + return `${He} arrives with doubt already clouding ${his} eyes. It seems ${he} passed one of the arcology's seedier bars on ${his} way up to your penthouse; the sight of roaring patrons swilling cheap sake and manhandling whores in loose kimonos does not seem to have been part of ${his} expectations. When a buyer's agent arrives to take charge of ${his} low-value body, ${he} manages to spit out a last bit of bad Japanese (a childish insult) before he bags ${him}. The body in the bag struggles spastically until he knuckles it hard in the kidney, slings it over his shoulder, and carries the package out, grinning at you in commiseration.`; + } + } +}; diff --git a/src/events/recFS/recfsNeoImperialist.js b/src/events/recFS/recfsNeoImperialist.js new file mode 100644 index 00000000000..9d717d96908 --- /dev/null +++ b/src/events/recFS/recfsNeoImperialist.js @@ -0,0 +1,81 @@ +App.Events.recFSNeoImperialist = class recFSNeoImperialist extends App.Events.BaseEvent { + eventPrerequisites() { + return [ + () => V.FSAnnounced === 1, + ]; + } + + actorPrerequisites() { + return []; + } + + get weight() { + return V.arcologies[0].FSNeoImperialist > random(1, 100) ? 1 : 0; + } + + execute(node) { + let r = []; + const slave = GenerateNewSlave(null, {minAge: 22, maxAge: 28, disableDisability: 1}); + slave.origin = "A former old world soldier dishonorably discharged for reasons ${he} refuses to discuss, ${he} offered ${himself} to you after romanticizing your martial, Imperial society."; + slave.devotion = random(5, 20); + slave.trust = random(0, 5); + slave.career = "a soldier"; + generateSalonModifications(slave); + setHealth(slave, jsRandom(-10, 10), undefined, undefined, 0, 0); + slave.muscles = 60; + slave.face = random(15, 50); + slave.skill.whoring = 0; + slave.skill.entertainment = 0; + slave.skill.combat = 1; + slave.intelligence = random(-50, 50); + slave.intelligenceImplant = 0; + slave.teeth = "normal"; + + const { + He, + his, he, him, woman + } = getPronouns(slave); + const {HeA} = getPronouns(assistant.pronouns().main).appendSuffix("A"); + const contractCost = 1000; + const cost = slaveCost(slave) - contractCost; + r.push(`You receive so many messages, as a noted titan of the new Free Cities world, that ${V.assistant.name} has to be quite draconian in culling them. ${HeA} lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were.`); + App.Events.addParagraph(node, r); + r = []; + r.push(`The call comes in from a private old world apartment. The caller is a ${woman} who speaks in a gruff and serious tone, explaining that ${he} was a soldier in an Old World military who served with distinction for years before being dishonorably discharged due to some incident that ${he} refuses to talk about when you ask. ${He} says that there's no room left for tired dogs in the crumbling economy of the old world for those without money, and ${his} only real options are to submit to menial servitude or open slavery. ${He} says that ${he}'s heard that your Imperial society values warriors and honor, and that ${he}'d prefer living somewhere where ${his} skills are worth something - even as a slave. At your request, ${he} sends over a dossier containing ${his} personal data.`); + + App.Events.addParagraph(node, r); + + const choices = []; + + if (V.cash >= contractCost) { + choices.push(new App.Events.Result(`Enslave ${him}`, enslave, `This will cost in ${contractCost}`)); + choices.push(new App.Events.Result(`Sell ${him} immediately`, sell, `This will bring in ${cost}`)); + } else { + choices.push(new App.Events.Result(null, null, `You lack the necessary funds to enslave $${him}.`)); + } + App.Events.addResponses(node, choices); + + function enslave() { + const frag = new DocumentFragment(); + r = []; + r.push(`${He} arrives gruff and unfazed, or at least well-trained enough to pretend to be gruff and unfazed, at the`); + if (canSee(slave)) { + r.push(`bright lights`); + } else if (canHear(slave)) { + r.push(`blaring sounds`); + } else { + r.push(`strange sensations`); + } + r.push(`of your arcology, and the combinations of ultra-high technology and feudal social structure that maintains them. When you tell ${him} to strip, ${his} stoic visage flickers for a moment, but then returns, and ${he} drops ${his} pants to show ${his} muscular body without a further word of protest.`); + + r.push(App.UI.newSlaveIntro(slave)); + App.Events.addParagraph(frag, r); + return frag; + } + + function sell() { + cashX(cost, "slaveTransfer"); + return `${He} arrives stoic and gruff, refusing to allow the strange new smells and sounds of the arcology to have any apparent effect on ${his} psyche. It seems as though ${he}'s already made up ${his} mind about the decision to become your slave, and doesn't allow even the slightest trace of doubt to enter - until you order ${him} to hang a price placard over ${his} chest. ${He} stares at you for a moment with cold eyes that communicate a deeply-felt betrayal, then silently leaves, accompanied by one of your slaves. Whether ${his} submission was to deny you the pleasure of a reaction or simple stoicism, you can't tell.`; + } + } +}; diff --git a/src/events/recFS/recfsRomanRevivalist.js b/src/events/recFS/recfsRomanRevivalist.js new file mode 100644 index 00000000000..3be6e6ddce5 --- /dev/null +++ b/src/events/recFS/recfsRomanRevivalist.js @@ -0,0 +1,86 @@ +App.Events.recFSRomanRevivalist = class recFSRomanRevivalist extends App.Events.BaseEvent { + eventPrerequisites() { + return [ + () => V.FSAnnounced === 1, + ]; + } + + actorPrerequisites() { + return []; + } + + get weight() { + return V.arcologies[0].FSRomanRevivalist > random(1, 100) ? 1 : 0; + } + + execute(node) { + let r = []; + const slave = GenerateNewSlave("XX", {minAge: 22, maxAge: 28, disableDisability: 1}); + slave.origin = "$He offered $himself to you for enslavement because $he was swept up in the romanticism of a revival of Rome."; + slave.devotion = random(-15, -5); + slave.trust = random(5, 15); + slave.career = "a student"; + generateSalonModifications(slave); + setHealth(slave, jsRandom(-10, 10), undefined, undefined, 0, 0); + slave.face = random(-20, 0); + slave.anus = 0; + if (slave.vagina !== -1) { + slave.vagina = 0; + } + slave.skill.vaginal = 0; + slave.skill.anal = 0; + slave.skill.oral = 0; + slave.skill.whoring = 0; + slave.skill.entertainment = 0; + slave.intelligence = random(16, 95); + slave.intelligenceImplant = 15; + slave.teeth = "normal"; + + const { + He, + his, he, him, himself, woman + } = getPronouns(slave); + const {HeA} = getPronouns(assistant.pronouns().main).appendSuffix("A"); + const contractCost = 1000; + const cost = slaveCost(slave) - contractCost; + r.push(`You receive so many messages, as a noted titan of the new Free Cities world, that ${V.assistant.name} has to be quite draconian in culling them. ${HeA} lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were.`); + App.Events.addParagraph(node, r); + r = []; + r.push(`The call comes in from an old world university. The caller is a young ${woman} who explains that ${he}'s struggling with extreme student debt, and has recently graduated with a history degree that ${he} can't seem to turn into gainful employment. ${He} gushes at length about how much ${he} enjoyed ancient history, and how ${he}'s heard all about your ideas about reviving ancient culture in the Free Cities. ${He} sees joining your household as a romantic way out of ${his} difficult situation. Apparently ${he} read all the idyllic parts of history and somehow missed out on learning about the salt mines and slave galleys. ${He}'s not terribly pretty and seems socially awkward, but that's likely to have its side benefits. ${He} nervously sends you a complete dossier on ${himself}.`); + + App.Events.addParagraph(node, r); + + const choices = []; + + if (V.cash >= contractCost) { + choices.push(new App.Events.Result(`Enslave ${him}`, enslave, `This will cost in ${contractCost}`)); + choices.push(new App.Events.Result(`Sell ${him} immediately`, sell, `This will bring in ${cost}`)); + } else { + choices.push(new App.Events.Result(null, null, `You lack the necessary funds to enslave $${him}.`)); + } + App.Events.addResponses(node, choices); + + function enslave() { + const frag = new DocumentFragment(); + r = []; + r.push(`${He} arrives wide-eyed and enthusiastic about the historical style ${he} `); + if (canSee(slave)) { + r.push(`saw`); + } else if (canHear(slave)) { + r.push(`heard`); + } else { + r.push(`felt`); + } + r.push(`on the way in. ${He} swallows nervously throughout the enslavement process and even cries a little at the end. ${He}'s slow to undress, and when ${he}'s finished, ${he} covers ${his} modest breasts with one arm and ${his} mons with the other. It seems that ${he}'s about to have a rude awakening about the realities of being a house slave.`); + + r.push(App.UI.newSlaveIntro(slave)); + App.Events.addParagraph(frag, r); + return frag; + } + + function sell() { + cashX(cost, "slaveTransfer"); + return `${He} arrives with doubt already clouding ${his} eyes. It seems ${he} got an introduction to the reality of Roman Revivalism on ${his} way up the arcology to your villa. The violence it did to ${his} vision of Rome is deeply ironic; V.arcologies[0].name is a fair reproduction of the decadence and vigor of imperial Rome. If ${he}'s shocked by the screams of a slave dying in gladiatorial combat or the spectacle of prisoners from the provinces being sold at auction, that's ${his} ignorance. When you cause a price placard to be affixed to ${his} chest so ${he} can be sold at auction, the reality of ${his} future finally comes home to ${him}.`; + } + } +}; diff --git a/src/uncategorized/reFSAcquisition.tw b/src/uncategorized/reFSAcquisition.tw index 9e793fb6c13..f539d8c19d8 100644 --- a/src/uncategorized/reFSAcquisition.tw +++ b/src/uncategorized/reFSAcquisition.tw @@ -20,131 +20,9 @@ <<switch $FSAcquisitionEvents>> -<<case "Roman Revivalist">> - <<set _ContractCost = 1000>> - <<set _slave = GenerateNewSlave("XX", {minAge: 22, maxAge: 28, disableDisability: 1})>> - <<set _slave.origin = "$He offered $himself to you for enslavement because $he was swept up in the romanticism of a revival of Rome.">> - <<set _slave.devotion = random(-15,-5)>> - <<set _slave.trust = random(5,15)>> - <<set _slave.career = "a student">> - <<run generateSalonModifications(_slave)>> - <<run setHealth(_slave, jsRandom(-10, 10), undefined, undefined, 0, 0)>> - <<set _slave.face = random(-20,0)>> - <<set _slave.anus = 0>> - <<if _slave.vagina != -1>><<set _slave.vagina = 0>><</if>> - <<set _slave.skill.vaginal = 0>> - <<set _slave.skill.anal = 0>> - <<set _slave.skill.oral = 0>> - <<set _slave.skill.whoring = 0>> - <<set _slave.skill.entertainment = 0>> - <<set _slave.intelligence = random(16,95)>> - <<set _slave.intelligenceImplant = 15>> - <<set _slave.teeth = "normal">> - <<set _slaveCost = slaveCost(_slave)>> - <<set _slaveCost -= 1000>> -<<case "Neo Imperialist">> - <<set _ContractCost = 1000>> - <<set _slave = GenerateNewSlave(null, {minAge: 22, maxAge: 28, disableDisability: 1})>> - <<set _slave.origin = "A former old world soldier dishonorably discharged for reasons $he refuses to discuss, $he offered $himself to you after romanticizing your martial, Imperial society.">> - <<set _slave.devotion = random(5,20)>> - <<set _slave.trust = random(0,5)>> - <<set _slave.career = "a soldier">> - <<run generateSalonModifications(_slave)>> - <<run setHealth(_slave, jsRandom(-10, 10), undefined, undefined, 0, 0)>> - <<set _slave.muscles = 60>> - <<set _slave.face = random(15,50)>> - <<set _slave.skill.whoring = 0>> - <<set _slave.skill.entertainment = 0>> - <<set _slave.skill.combat = 1>> - <<set _slave.intelligence = random(-50,50)>> - <<set _slave.intelligenceImplant = 0>> - <<set _slave.teeth = "normal">> - <<set _slaveCost = slaveCost(_slave)>> - <<set _slaveCost -= 1000>> -<<case "Aztec Revivalist">> - <<set _ContractCost = 1000>> - <<set _slave = GenerateNewSlave("XX", {minAge: 22, maxAge: 28, disableDisability: 1})>> - <<set _slave.origin = "$He offered $himself to you for enslavement because $he needs to feel a higher call.">> - <<set _slave.devotion = random(25,50)>> - <<set _slave.trust = random(25,50)>> - <<set _slave.career = "a merchant">> - <<run setHealth(_slave, jsRandom(-20, 20), undefined, undefined, 0, 0)>> - <<set _slave.face = random(-20,0)>> - <<set _slave.anus = 0>> - <<if _slave.vagina != -1>><<set _slave.vagina = 0>><</if>> - <<set _slave.skill.vaginal = 1>> - <<set _slave.skill.anal = 1>> - <<set _slave.skill.oral = 1>> - <<set _slave.skill.whoring = 0>> - <<set _slave.skill.entertainment = 0>> - <<set _slave.intelligence = random(16,95)>> - <<set _slave.intelligenceImplant = 15>> - <<set _slave.teeth = "normal">> - <<set _slaveCost = slaveCost(_slave)>> - <<set _slaveCost -= 1000>> -<<case "Edo Revivalist">> - <<set _ContractCost = 1000>> - <<set _pram = {maxAge: 24, disableDisability: 1}>> - <<set _slave = GenerateNewSlave(null, {maxAge: 24, disableDisability: 1, race: "nonslave"})>> - <<set _slave.origin = "$He offered $himself to you for enslavement because $he had a disgustingly naïve view of medieval Japanese culture.">> - <<set _slave.devotion = random(-15,-5)>> - <<set _slave.trust = random(5,15)>> - <<set _slave.career = "a student">> - <<run generateSalonModifications(_slave)>> - <<run setHealth(_slave, jsRandom(-20, 0), undefined, undefined, 0, 0)>> - <<set _slave.face = random(-60,10)>> - <<set _slave.weight = random(20,100)>> - <<set _slave.vagina = 0>> - <<set _slave.trueVirgin = 1>> - <<set _slave.skill.vaginal = 0>> - <<set _slave.skill.whoring = 0>> - <<set _slave.skill.entertainment = 0>> - <<set _slave.intelligence = random(-50,50)>> - <<set _slave.intelligenceImplant = 15>> - <<if _slave.physicalAge >= 12>> - <<set _slave.teeth = "normal">> - <</if>> - <<set _slave.behavioralFlaw = either("gluttonous", "liberated")>> - <<set _slave.sexualFlaw = either("apathetic", "idealistic", "none", "none", "shamefast")>> - <<set _slaveCost = slaveCost(_slave)>> - <<set _slaveCost -= 1000>> -<<case "Arabian Revivalist">> - <<set _ContractCost = 1000>> - <<set _slave = GenerateNewSlave(null, {minAge: 25, maxAge: Math.max(25,$retirementAge-5), ageOverridesPedoMode: 1, disableDisability: 1})>> - <<set _slave.origin = "$He offered $himself to you for enslavement because $he thought your harem $his best hope for good treatment.">> - <<set _slave.devotion = random(30,35)>> - <<set _slave.trust = random(30,35)>> - <<set _slave.career = "a professor">> - <<run generateSalonModifications(_slave)>> - <<run setHealth(_slave, jsRandom(10, 30), undefined, undefined, 0, 0)>> - <<set _slave.face = random(15,100)>> - <<set _slave.skill.oral = 35>> - <<set _slave.skill.anal = 15>> - <<set _slave.skill.whoring = 0>> - <<set _slave.skill.entertainment = 100>> - <<set _slave.intelligence = random(51,95)>> - <<set _slave.intelligenceImplant = 15>> - <<set _slave.teeth = "normal">> - <<set _slave.sexualFlaw = either("idealistic")>> - <<set _slaveCost = slaveCost(_slave)>> - <<set _slaveCost -= 1000>> <<case "Chinese Revivalist">> <<set _ContractCost = 1000>> - <<set _slave = GenerateNewSlave(null, {minAge: 26, maxAge: 42, disableDisability: 1, ageOverridesPedoMode: 1})>> - <<set _slave.origin = "$He offered $himself to you for enslavement because $he thought $he would have prospects of advancement among your slaves.">> - <<set _slave.devotion = random(30,35)>> - <<set _slave.trust = random(30,35)>> - <<set _slave.career = "a businesswoman">> - <<run setHealth(_slave, jsRandom(10, 30), undefined, undefined, 0, 0)>> - <<set _slave.face = 15>> - <<set _slave.skill.oral = random(15,40)>> - <<set _slave.skill.anal = random(15,40)>> - <<set _slave.skill.whoring = random(15,40)>> - <<set _slave.skill.entertainment = random(15,40)>> - <<set _slave.intelligence = random(51,95)>> - <<set _slave.intelligenceImplant = 15>> - <<set _slave.teeth = "normal">> - <<set _slave.behavioralFlaw = either("arrogant")>> + <<set _slaveCost = slaveCost(_slave)>> <<set _slaveCost -= 1000>> <</switch>> @@ -155,30 +33,7 @@ <<setAssistantPronouns>> <<switch $FSAcquisitionEvents>> -<<case "Roman Revivalist">> - You receive so many messages, as a noted titan of the new Free Cities world, that $assistant.name has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. - <br><br> - The call comes in from an old world university. The caller is a young $woman who explains that $he's struggling with extreme student debt, and has recently graduated with a history degree that $he can't seem to turn into gainful employment. $He gushes at length about how much $he enjoyed ancient history, and how $he's heard all about your ideas about reviving ancient culture in the Free Cities. $He sees joining your household as a romantic way out of $his difficult situation. Apparently $he read all the idyllic parts of history and somehow missed out on learning about the salt mines and slave galleys. $He's not terribly pretty and seems socially awkward, but that's likely to have its side benefits. $He nervously sends you a complete dossier on $himself. -<<case "Neo Imperialist">> - You receive so many messages, as a noted titan of the new Free Cities world, that $assistant.name has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. - <br><br> - The call comes in from a private old world apartment. The caller is a $woman who speaks in a gruff and serious tone, explaining that $he was a soldier in an Old World military who served with distinction for years before being dishonorably discharged due to some incident that $he refuses to talk about when you ask. $He says that there's no room left for tired dogs in the crumbling economy of the old world for those without money, and $his only real options are to submit to menial servitude or open slavery. $He says that $he's heard that your Imperial society values warriors and honor, and that $he'd prefer living somewhere where $his skills are worth something - even as a slave. At your request, $he sends over a dossier containing $his personal data. -<<case "Aztec Revivalist">> - You receive so many messages, as a noted titan of the new Free Cities world, that $assistant.name has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. - <br><br> - The call comes in from an old world trading colony. The caller is a $woman who humbly explains how tired $he is from all the godless people and terrible conditions, and expresses interest to join the old empires. $He probably knows only of the incredible architecture and the military accomplishments that are advertised in vids. Though the sacrifice and collaring of slaves is no secret, most people never find out the real truth to what you do. Nevertheless $he's incredibly willing, so much so that $he almost signs $himself off to you by accident. $His file is displayed in front if you, pending your reaction. -<<case "Edo Revivalist">> - You receive so many messages, as a noted titan of the new Free Cities world, that $assistant.name has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. - <br><br> - The caller is a young $woman who struggles to stop $himself from peppering $his socially awkward babble with poorly pronounced Japanese colloquialisms. Insofar as you can parse $his nonsense, $he seems to have gotten a hilariously romanticized version of feudal Japan from somewhere, and is willing to submit to enslavement in order to join your revivalist arcology. Whoever's out there spreading this rubbish, you owe them one; this serf is in for an extremely rude awakening. -<<case "Arabian Revivalist">> - You receive so many messages, as a noted titan of the new Free Cities world, that $assistant.name has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. - <br><br> - The call comes in from an old world university. The caller, surprisingly, is a beautiful $woman in $his thirties who speaks with a richly lilting accent and a literary vocabulary. "I'm afraid," $he says sadly, "it'<<s>> come to <<s>>lavery, for me. I am no longer a $girl, but I can make <<s>>ome claim to beauty. I know many <<s>>torie<<s>> and can tell them cleverly; I can <<s>>ing and dan<<c>>e well. I know you are not looking for a <<Sch>>ehera<<z>>ade, but I could play her part. Nor am I naïve; I know the <<S>>ultan enjoyed her body a<<s>> well a<<s>> her wit, and I am not un<<s>>killed in tho<<s>>e re<<s>>pect<<s>>, either." $He looks you straight in the eye. "May I come into your harem? I will do my be<<s>>t to brighten it." <<case "Chinese Revivalist">> - You receive so many messages, as a noted titan of the new Free Cities world, that $assistant.name has to be quite draconian in culling them. _HeA lets only the most important through to you. One category of message that always gets through regardless of content, though, is requests for voluntary enslavement. As the new world takes shape, they've become less rare than they once were. - <br><br> - The call comes in from an office, and you suppress the urge to check whether $assistant.name has misidentified a business communication. The caller is a middle-aged $woman, not unattractive, whose face is lined with stress and worry. $He draws $himself up and says, "I would like to apply to be your <<s>>lave." There is a flash of bitter amusement at the absurd statement, but $he continues, "Bu<<s>>ine<<ss>> <<c>>ircum<<s>>tan<<c>>e<<s>> make it inevitable. I have con<<s>>iderable <<s>>kill<<s>> and e<<x>>perien<<c>>e, and it is my under<<s>>tanding that you value <<s>>uch thing<<s>>." $He forwards $his qualifications: they are comprehensive and open, including $his sexual skills as if they were merely another business asset. Which, in a way, they are. <</switch>> <br><br> @@ -193,18 +48,7 @@ <<run cashX(forceNeg(_ContractCost), "slaveTransfer", _slave)>> <<replace "#result">> <<switch $FSAcquisitionEvents>> - <<case "Roman Revivalist">> - $He arrives wide-eyed and enthusiastic about the historical style $he <<if canSee(_slave)>>saw<<elseif canHear(_slave)>>heard<<else>>felt<</if>> on the way in. $He swallows nervously throughout the enslavement process and even cries a little at the end. $He's slow to undress, and when $he's finished, $he covers $his modest breasts with one arm and $his mons with the other. It seems that $he's about to have a rude awakening about the realities of being a house slave. - <<case "Neo Imperialist">> - $He arrives gruff and unfazed, or at least well-trained enough to pretend to be gruff and unfazed, at the <<if canSee(_slave)>>bright lights<<elseif canHear(_slave)>>blaring sounds<<else>>strange sensations<</if>> of your arcology, and the combinations of ultra-high technology and feudal social structure that maintains them. When you tell $him to strip, $his stoic visage flickers for a moment, but then returns, and $he drops $his pants to show $his muscular body without a further word of protest. - <<case "Aztec Revivalist">> - $He arrives awestruck by <<if canSee(_slave)>>all the sights<<else>>everything<</if>> $he passed through to get to your abode. $He probably didn't see anything too extreme, but $he will soon. Feeling your gaze on $his body, $he quickly abandons all fears from $his past life, strips off $his clothes, and submits to you fully. Only time will tell if $he made a mistake. - <<case "Edo Revivalist">> - $He arrives with doubt already clouding $his eyes. It seems $he passed one of the arcology's seedier bars on $his way up to your penthouse; the sight of roaring patrons swilling cheap sake and manhandling whores in loose kimonos does not seem to have been part of $his expectations. As the enslavement process winds on, $he reflexively begins to look around for a means of escape, and slowly collapses into $himself as $he realizes there is none. - <<case "Arabian Revivalist">> - Your estimation of $him rises through the enslavement process: $he doffs and discards $his conservative business wear without complaint, and stands nude before you, obeying instructions without fuss. There is an indecipherable glint in $his <<print App.Desc.eyesColor(_slave)>>: nerves? Excitement? Challenge, even? Perhaps $he even feels this is an adventure. And that, it will certainly be. <<case "Chinese Revivalist">> - $He arrives in a simple, sturdy suit, which $he obviously wore in the correct anticipation of immediately removing and never seeing again. $He cooperates with the enslavement process as best $he can, $his glance confident and watchful. $He's obviously calculating how to get ahead within this new place, and $he pays particularly close attention as the ebb and flow of business through your office brings your various slaves into $his view for the first time. <</switch>> <<includeDOM App.UI.newSlaveIntro(_slave)>> <</replace>> @@ -213,18 +57,7 @@ <<run cashX(_slaveCost, "slaveTransfer")>> <<replace "#result">> <<switch $FSAcquisitionEvents>> - <<case "Roman Revivalist">> - $He arrives with doubt already clouding $his eyes. It seems $he got an introduction to the reality of Roman Revivalism on $his way up the arcology to your villa. The violence it did to $his vision of Rome is deeply ironic; $arcologies[0].name is a fair reproduction of the decadence and vigor of imperial Rome. If $he's shocked by the screams of a slave dying in gladiatorial combat or the spectacle of prisoners from the provinces being sold at auction, that's $his ignorance. When you cause a price placard to be affixed to $his chest so $he can be sold at auction, the reality of $his future finally comes home to $him. - <<case "Neo Imperialist">> - $He arrives stoic and gruff, refusing to allow the strange new smells and sounds of the arcology to have any apparent effect on $his psyche. It seems as though $he's already made up $his mind about the decision to become your slave, and doesn't allow even the slightest trace of doubt to enter - until you order $him to hang a price placard over $his chest. $He stares at you for a moment with cold eyes that communicate a deeply-felt betrayal, then silently leaves, accompanied by one of your slaves. Whether $his submission was to deny you the pleasure of a reaction or simple stoicism, you can't tell. - <<case "Aztec Revivalist">> - $He arrives so terrified, $he can't stop shaking and won't acknowledge most of your commands. It seems $he realized what really goes on in this arcology. The blood and gruesome mutilation is very far from $he envisioned for $his future; $arcologies[0].name is a close reproduction of the miasma of death that accompanied the Aztecs. $He's currently too shaken to realize what awaits $him. Whether good or bad, $he can't back out. $He's yours. - <<case "Edo Revivalist">> - $He arrives with doubt already clouding $his eyes. It seems $he passed one of the arcology's seedier bars on $his way up to your penthouse; the sight of roaring patrons swilling cheap sake and manhandling whores in loose kimonos does not seem to have been part of $his expectations. When a buyer's agent arrives to take charge of $his low-value body, $he manages to spit out a last bit of bad Japanese (a childish insult) before he bags $him. The body in the bag struggles spastically until he knuckles it hard in the kidney, slings it over his shoulder, and carries the package out, grinning at you in commiseration. - <<case "Arabian Revivalist">> - $He arrives and works $his way through the enslavement process without fuss. When a buyer's agent arrives, $he immediately understands that $he has been sold. $He looks rueful for a moment, obviously realizing that you made no commitment not to do this, and that such a commitment would have been worthless in any case. $He flawlessly performs the only successful insult available to $him, ignoring you utterly from that moment on, but obeying the agent faultlessly. <<case "Chinese Revivalist">> - $He arrives and works $his way through the enslavement process, doing $his best to ingratiate $himself. When a buyer's agent arrives, $he immediately understands that $he has been sold. $He looks rueful for a moment, obviously realizing that you made no commitment not to do this, and that such a commitment would have been worthless in any case. $He transfers $his focus to the agent without hesitation, doing $his best to improve $his rapidly changing position. <</switch>> <</replace>> <</link>> //This will bring in <<print cashFormat(_slaveCost)>>// -- GitLab